This repository has been archived by the owner on Oct 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpmp.gemspec
41 lines (36 loc) · 1.51 KB
/
pmp.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'pmp/version'
Gem::Specification.new do |gem|
gem.name = 'pmp'
gem.version = PMP::VERSION
gem.authors = ['Andrew Kuklewicz']
gem.email = ['[email protected]']
gem.description = %q{Public Media Platform Ruby Gem}
gem.summary = %q{Public Media Platform Ruby Gem}
gem.homepage = 'https://github.com/PRX/pmp'
gem.license = 'MIT'
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}) { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ['lib']
gem.add_development_dependency('bundler')
gem.add_development_dependency('rake')
gem.add_development_dependency('minitest')
gem.add_development_dependency('webmock')
gem.add_development_dependency('pry')
gem.add_development_dependency('guard', ' ~> 2.10.0')
gem.add_development_dependency('guard-bundler')
gem.add_development_dependency('guard-minitest')
gem.add_development_dependency('growl')
gem.add_development_dependency('simplecov')
gem.add_development_dependency('coveralls')
gem.add_runtime_dependency('faraday')
gem.add_runtime_dependency('faraday_middleware')
gem.add_runtime_dependency('oauth2', '< 1.3.0')
gem.add_runtime_dependency('excon')
gem.add_runtime_dependency('hashie')
gem.add_runtime_dependency('activesupport')
gem.add_runtime_dependency('uri_template')
end