forked from xymor/lightrail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlightrail.gemspec
23 lines (20 loc) · 947 Bytes
/
lightrail.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# encoding: utf-8
require File.expand_path('../lib/lightrail/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'lightrail'
gem.version = Lightrail::VERSION
gem.platform = Gem::Platform::RUBY
gem.authors = ['José Valim', 'Carl Lerche', 'Tony Arcieri']
gem.homepage = 'http://github.com/lightness/lightrail'
gem.summary = 'Slim Rails stack for JSON services'
gem.description = 'Lightrail slims Rails down to the bare essentials great JSON web services crave'
gem.files = `git ls-files`.split("\n")
gem.require_path = 'lib'
gem.bindir = 'bin'
gem.executables = %w(lightrail)
gem.add_development_dependency 'rake'
# This gives us ActionPack and ActiveSupport
gem.add_runtime_dependency 'railties', '~> 3.2'
gem.add_runtime_dependency 'active_model_serializers'
end