-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbag-ruby.gemspec
More file actions
26 lines (23 loc) · 915 Bytes
/
bag-ruby.gemspec
File metadata and controls
26 lines (23 loc) · 915 Bytes
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
$:.push File.expand_path('../lib', __FILE__)
require 'bag/version'
Gem::Specification.new do |s|
s.name = 'bag-ruby'
s.version = Bag::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Tom Pesman']
s.email = ['tom@tnux.net']
s.homepage = 'https://github.com/9to5/bag-ruby'
s.summary = %q{Gem to access the BAG API}
s.description = %q{Gem to access the BAG API. This gem provides helpers to communicate with the BAG API}
s.licenses = ['MIT']
s.add_runtime_dependency 'httparty'
s.add_development_dependency 'rspec'
s.add_development_dependency 'guard'
s.add_development_dependency 'guard-rspec'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'vcr'
s.add_development_dependency 'webmock'
s.files = Dir['README.md', 'MIT-LICENSE', 'lib/**/*']
s.test_files = Dir['spec/**/*']
s.require_paths = ['lib']
end