-
Notifications
You must be signed in to change notification settings - Fork 2
/
apic.gemspec
24 lines (18 loc) · 882 Bytes
/
apic.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "apic/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "apic"
s.version = Apic::VERSION
s.authors = ["Randy Morgan"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/randym/apic/"
s.summary = "Apic is a mountable rails engine that enables a web based console for testing api endpoints."
s.description = "APIc is a bolt on API console for Rails 3+ applications. It rounds up your endpoints and makes it dead easy to configure, send, review and replay any request."
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.require_paths = ['lib']
s.add_dependency "rails", ">= 3.2.0"
s.add_dependency "coffee-rails"
end