-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathe_api_server.gemspec
More file actions
30 lines (24 loc) · 1.04 KB
/
Copy pathe_api_server.gemspec
File metadata and controls
30 lines (24 loc) · 1.04 KB
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
27
28
29
30
#Copyright 2015 Kyoto Kopz kopz9999@gmail.com
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "e_api_server/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "e_api_server"
s.version = EApiServer::VERSION
s.authors = ["Kyoto Kopz"]
s.email = ["kopz9999@gmail.com"]
s.homepage = "https://github.com/kopz9999"
s.summary = "Simplifies the creation of a REST API Server."
s.description = "Provides module to simplify the creation of an API Server."
s.license = "Apache-2.0"
s.files = Dir["{app,config,db,lib}/**/*", "LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.add_dependency "rails", '~> 4.1', '>= 4.1.0'
s.add_dependency 'kaminari', '~> 0.16', '>= 0.16.2'
s.add_dependency 'jbuilder', '~> 2.0'
s.add_runtime_dependency 'responders', '2.1.0'
s.add_development_dependency "sqlite3", "1.3.10"
s.add_development_dependency "pry", "0.10.1"
s.add_development_dependency "pry-nav", "0.2.4"
end