forked from mauricio/master_slave_adapter
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmaster_slave_adapter.gemspec
25 lines (21 loc) · 1.1 KB
/
master_slave_adapter.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = 'master_slave_adapter_soundcloud'
s.version = File.read('VERSION').to_s
s.date = '2011-06-21'
s.platform = Gem::Platform::RUBY
s.authors = [ 'Mauricio Linhares', 'Torsten Curdt', 'Kim Altintop', 'Omid Aladini', 'SoundCloud' ]
s.email = %q{kim@soundcloud.com tcurdt@soundcloud.com omid@soundcloud.com}
s.homepage = 'http://github.com/soundcloud/master_slave_adapter'
s.summary = %q{Replication Aware Master/Slave Database Adapter for Rails/ActiveRecord}
s.description = %q{(MySQL) Replication Aware Master/Slave Database Adapter for Rails/ActiveRecord}
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_path = 'lib'
s.required_ruby_version = '>= 1.9.2'
s.required_rubygems_version = '>= 1.3.7'
s.add_development_dependency 'rspec'
s.add_dependency 'activerecord', '= 2.3.9'
end