-
Notifications
You must be signed in to change notification settings - Fork 4
/
mysql_cache_manager.gemspec
27 lines (26 loc) · 1.11 KB
/
mysql_cache_manager.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require "mysql_cache_manager/version"
Gem::Specification.new do |s|
s.name = 'mysql_cache_manager'
s.version = MysqlCacheManager::VERSION
s.date = Time.now.strftime("%Y-%m-%d")
s.summary = 'MySQL Cache Manager'
s.description = 'A tool for saving and restoring the InnoDB buffer pool using the information_schema.buffer_page table and engine_control(InnoDB, prefetch_pages, ...) function.'
s.authors = [ 'Jeremy Cole', 'Will Gunty', 'Anton Kuraev' ]
s.homepage = 'http://jcole.us/'
s.files = [
'lib/mysql_cache_manager.rb',
'lib/mysql_cache_manager/cache_manager.rb',
'lib/mysql_cache_manager/cache_image.rb',
'lib/mysql_cache_manager/cache_image/sqlite3.rb',
'lib/mysql_cache_manager/cache_image/pstore.rb',
'lib/mysql_cache_manager/innodb_buffer_pool.rb',
'lib/mysql_cache_manager/version.rb',
]
s.executables = [
'mysql_cache_manager',
]
s.add_dependency('inifile', '>=2.0.2')
end