forked from rails-api/rails-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rails-api.gemspec
32 lines (25 loc) · 1.2 KB
/
rails-api.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
25
26
27
28
29
30
31
32
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'rails-api/version'
Gem::Specification.new do |gem|
gem.name = "rails-api"
gem.version = Rails::API::VERSION
gem.platform = Gem::Platform::RUBY
gem.summary = %q{Rails for API only Applications}
gem.description = %q{Rails::API is a subset of a normal Rails application,
created for applications that don't require all
functionality that a complete Rails application provides}
gem.licenses = ['MIT']
gem.authors = ["Santiago Pastorino and Carlos Antonio da Silva"]
gem.email = ["<[email protected]>", "<[email protected]>"]
gem.homepage = "https://github.com/rails-api/rails-api"
gem.required_rubygems_version = '>= 1.3.6'
gem.files = Dir['README.md', 'LICENSE', 'bin/**/*', 'lib/**/*', 'test/**/*']
gem.test_files = Dir['test/**/*']
gem.require_paths = ["lib"]
gem.bindir = 'bin'
gem.executables = ['rails-api']
gem.add_runtime_dependency 'actionpack', '>= 3.2.11'
gem.add_runtime_dependency 'railties', '>= 3.2.11'
gem.add_development_dependency 'rails', '>= 3.2.11'
end