forked from stephencelis/acts_as_singleton
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathacts_as_singleton.gemspec
20 lines (16 loc) · 1004 Bytes
/
acts_as_singleton.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Gem::Specification.new do |s|
s.name = "acts_as_singleton"
s.version = "0.0.10"
s.summary = "A lightweight singleton library for your Active Record models."
s.description = "It just makes sense to store mutable, site-wide, admin-level settings in the database. Right? A key-value table may be more flexible, but maybe we don't want to be flexible! If you truly want that flexibility: http://github.com/stephencelis/kvc"
s.files = ["History.rdoc", "Manifest.txt", "README.rdoc", "Rakefile", "init.rb", "lib/acts_as_singleton.rb", "test/acts_as_singleton_test.rb"]
s.add_dependency "activerecord", ">= 3.1.0", "< 6.0"
s.add_development_dependency "rake"
s.add_development_dependency "sqlite3-ruby"
s.add_development_dependency "test-unit"
s.extra_rdoc_files = %w(History.rdoc Manifest.txt README.rdoc)
s.rdoc_options = %w(--main README.rdoc)
s.author = "Stephen Celis"
s.email = "[email protected]"
s.homepage = "http://github.com/stephencelis/acts_as_singleton"
end