-
Notifications
You must be signed in to change notification settings - Fork 0
/
NRB_http_service.gemspec
41 lines (34 loc) · 1.48 KB
/
NRB_http_service.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
37
38
39
40
41
$:.push File.expand_path('../lib', __FILE__)
require 'NRB_http_service/version'
Gem::Specification.new do |s|
s.name = 'NRB_http_service'
s.summary = 'HTTP Fetcher Gem based on Faraday'
s.description = "Used in some of New Republic Brewing's gems"
s.license = 'GPL-3'
s.homepage = 'https://github.com/NewRepublicBrewing/http-service'
s.rubyforge_project = 'NRB_http_service'
s.add_dependency 'faraday', '~> 0.0'
s.add_dependency 'hashie', '~> 0.0'
s.add_development_dependency 'guard-rspec', '~> 2.0'
s.add_development_dependency 'rake', '~> 10.0'
s.add_development_dependency 'rspec', '~> 2.0'
s.add_development_dependency 'rb-inotify', '~> 0.0' # Filesystem watcher for Guard on Linux
s.authors = ['Dean Brundage']
s.email = ['[email protected]']
s.files = [
'LICENSE',
'README.md',
'lib/NRB_http_service.rb',
'lib/NRB_http_service/response.rb',
'lib/NRB_http_service/version.rb'
]
s.test_files = [
'spec/cases/NRB_http_service_spec.rb',
'spec/cases/NRB_http_service/response_spec.rb',
'spec/cases/NRB_http_service/version_spec.rb',
'spec/spec_helper.rb'
]
s.require_paths = ['lib']
s.platform = Gem::Platform::RUBY
s.version = NRB::HTTPService.version
end