-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathtry_api.gemspec
More file actions
22 lines (18 loc) · 789 Bytes
/
Copy pathtry_api.gemspec
File metadata and controls
22 lines (18 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "try_api/version"
require "try_api/exceptions"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "try_api"
s.version = TryApi::VERSION
s.authors = ["Michael Skubenych"]
s.email = ["michael.skubenych@gmail.com"]
s.homepage = "https://github.com/mskubenich/try_api"
s.summary = %q{Generates API UI from simple .yml manifest.}
s.description = %q{Generates UI for rails apps with APIs. You can easily test, share and play with you'r APIs. Enjoy ) }
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["spec/**/*"]
s.add_dependency "rails"
end