-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathhovercraft.gemspec
More file actions
32 lines (27 loc) · 1.34 KB
/
hovercraft.gemspec
File metadata and controls
32 lines (27 loc) · 1.34 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
31
32
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/hovercraft/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ['vanstee']
gem.email = ['vanstee@highgroove.com']
gem.description = %q{Generate a RESTful API from a directory of ActiveRecord models}
gem.summary = %q{There's a lot of boiler plate code that goes into
creating an API so why not just generate all that code
from the models. Just throw your models in a models
directory and call the server from the rackup file and
you have yourself a perfect API.}
gem.homepage = ''
gem.files = `git ls-files`.split("\n")
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.test_files = `git ls-files -- spec/*`.split("\n")
gem.name = 'hovercraft'
gem.require_paths = ['lib']
gem.version = Hovercraft::VERSION
gem.required_ruby_version = '>= 1.9.2'
gem.add_dependency 'sinatra-activerecord', '~> 1.2.2'
gem.add_dependency 'rack-contrib', '~> 1.1.0'
gem.add_dependency 'json', '~> 1.7.7'
gem.add_development_dependency 'rspec', '~> 2.13.0'
gem.add_development_dependency 'rack-test', '~> 0.6.2'
gem.add_development_dependency 'pry'
gem.add_development_dependency 'rake'
end