forked from composite-primary-keys/composite_primary_keys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composite_primary_keys.gemspec
29 lines (27 loc) · 1.07 KB
/
composite_primary_keys.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
# Read the current version
require File.join(File.dirname(__FILE__), 'lib', 'composite_primary_keys', 'version')
Gem::Specification.new do |s|
s.name = 'composite_primary_keys'
s.version = CompositePrimaryKeys::VERSION::STRING
s.platform = Gem::Platform::RUBY
s.authors = ["Dr Nic Williams", "Charlie Savage"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/cfis/composite_primary_keys"
s.summary = "Composite key support for ActiveRecord"
s.description = "Composite key support for ActiveRecord 3"
s.date = Time.new
s.files = Dir['Rakefile',
'*.txt',
'*.rb',
'lib/**/*',
'local/**/*',
'scripts/**/*',
'tasks/**/*',
'test/**/*']
s.require_path = 'lib'
s.test_files = Dir.glob("test/**")
s.rubyforge_project = 'compositekeys'
# Dependencies
s.required_ruby_version = '>= 1.8.7'
s.add_dependency('activerecord', '=3.1.0.rc1')
end