forked from thiagopradi/octopus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ar-octopus.gemspec
39 lines (32 loc) · 1.75 KB
/
ar-octopus.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
28
29
30
31
32
33
34
35
36
37
38
39
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'octopus/version'
Gem::Specification.new do |s|
s.name = 'ar-octopus'
s.version = Octopus::VERSION
s.authors = ['Thiago Pradi', 'Mike Perham', 'Gabriel Sobrinho']
s.homepage = 'https://github.com/tchandy/octopus'
s.summary = 'Easy Database Sharding for ActiveRecord'
s.description = 'This gem allows you to use sharded databases with ActiveRecord. This also provides a interface for replication and for running migrations with multiples shards.'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.require_paths = ['lib']
s.post_install_message = "Important: If you are upgrading from < Octopus 0.5.0 you need to run:\n" \
"$ rake octopus:copy_schema_versions\n\n" \
'Octopus now stores schema version information in each shard and migrations will not ' \
'work properly unless this task is invoked.'
s.required_ruby_version = '>= 2.1.0'
s.add_dependency 'activerecord', '>= 4.0.0'
s.add_dependency 'activesupport', '>= 4.0.0'
s.add_development_dependency 'appraisal', '>= 0.3.8'
s.add_development_dependency 'mysql2', '~> 0.3.18'
s.add_development_dependency 'pg', '>= 0.11.0'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '>= 3'
s.add_development_dependency 'rubocop'
s.add_development_dependency 'sqlite3', '>= 1.3.4'
s.add_development_dependency 'pry-byebug'
s.license = 'MIT'
end