forked from glongman/hushed
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhushed.gemspec
More file actions
32 lines (27 loc) · 1.15 KB
/
hushed.gemspec
File metadata and controls
32 lines (27 loc) · 1.15 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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'hushed/version'
require 'English'
Gem::Specification.new do |spec|
spec.name = 'hushed'
spec.version = Hushed::VERSION
spec.authors = ['Chris Saunders']
spec.email = ['chris.saunders@shopify.com']
spec.description = 'API Client for Quiet Logistics Services'
spec.summary = 'Integrates with QL Blackboard and work Queue'
spec.homepage = 'http://github.com/csaunders/hushed'
spec.license = 'MIT'
spec.files = `git ls-files`.split($RS)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_dependency('aws-sdk', '< 2.0')
spec.add_dependency('nokogiri')
spec.add_dependency('activesupport')
spec.add_development_dependency 'bundler', '~> 1.3'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'minitest', '>= 5.0.0'
spec.add_development_dependency 'minitest-reporters'
spec.add_development_dependency 'mocha'
end