-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathassociates.gemspec
26 lines (21 loc) · 963 Bytes
/
associates.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
# encoding: utf-8
$:.unshift File.expand_path('../lib', __FILE__)
require 'associates/version'
Gem::Specification.new do |s|
s.name = "associates"
s.version = Associates::VERSION
s.authors = ["Philippe Dionne"]
s.homepage = "https://github.com/phildionne/associates"
s.licenses = ['MIT']
s.summary = "Associate multiple models together and make them behave as one."
s.description = "Associate multiple models together and make them behave as one."
s.cert_chain = ['certs/pdionne-gem-public_cert.pem']
s.signing_key = File.expand_path("~/.gem/pdionne-gem-private_key.pem") if $0 =~ /gem\z/
s.files = `git ls-files lib`.split("\n")
s.platform = Gem::Platform::RUBY
s.require_paths = ['lib']
s.test_files = s.files.grep(%r{^(spec)/})
s.add_dependency 'activerecord', '>= 3.2.14'
s.add_dependency 'activesupport', '>= 3.2.14'
end