forked from xtoddx/maturate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
maturate.gemspec
19 lines (15 loc) · 912 Bytes
/
maturate.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
$:.push File.expand_path("../lib", __FILE__)
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "maturate"
s.version = "0.0.2"
s.authors = ["Todd Willey <[email protected]>"]
s.homepage = "https://github.com/xtoddx/maturate"
s.summary = "Mature your rails API through sane versioning."
s.description = "Update your API endpoints with minimal duplication. Uses variants for view enhancements, helper methods make the api_version easily accessable, offers a \"current\" named version, and defaults unknown versions to current. Tries very hard to support a array of clients and make sure everything works."
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["test/**/*"]
s.add_dependency "rails", "~> 4.2"
s.add_development_dependency "sqlite3"
end