forked from dchapman1988/hungrytable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhungrytable.gemspec
37 lines (30 loc) · 1.29 KB
/
hungrytable.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
33
34
35
36
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "hungrytable/version"
Gem::Specification.new do |s|
s.name = "hungrytable"
s.version = Hungrytable::VERSION
s.authors = ["David Chapman", "Nicholas Fine"]
s.email = ["david@isotope11.com", 'nicholas.fine@gmail.com']
s.homepage = "http://www.isotope11.com/"
s.summary = %q{Gem to interact with OpenTable's REST API}
s.description = %q{Gem to interact with OpenTable's REST API}
s.rubyforge_project = "hungrytable"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
# specify any dependencies here; for example:
# s.add_development_dependency "rspec"
# s.add_runtime_dependency "rest-client"
s.add_runtime_dependency 'json', '~> 1.7.1'
s.add_runtime_dependency 'activesupport'
s.add_runtime_dependency 'i18n'
s.add_runtime_dependency 'curb'
s.add_development_dependency 'rake'
s.add_development_dependency 'minitest'
s.add_development_dependency 'minitest-reporters'
s.add_development_dependency 'mocha'
s.add_development_dependency 'pry'
s.add_development_dependency 'webmock'
end