-
Notifications
You must be signed in to change notification settings - Fork 4
/
fellowshipone.gemspec
31 lines (26 loc) · 1.27 KB
/
fellowshipone.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
$:.push File.expand_path('../lib', __FILE__)
Gem::Specification.new do |s|
s.name = 'fellowshipone'
s.version = '4.0.0'
s.authors = ['Taylor Brooks']
s.email = ['tbrooks@gmail.com']
s.homepage = 'https://github.com/taylorbrooks/fellowshipone'
s.summary = 'Ruby gem/plugin to interact with the FellowshipOne API (https://developer.fellowshipone.com/).'
s.description = 'Ruby gem/plugin to interact with the FellowshipOne API (https://developer.fellowshipone.com/). Checkout the project on github for more detail.'
s.license = 'MIT'
s.add_development_dependency 'bundler'
s.add_development_dependency 'minitest'
s.add_development_dependency 'rake'
s.add_development_dependency 'vcr'
s.add_development_dependency 'webmock'
s.add_runtime_dependency 'addressable'
s.add_runtime_dependency 'faraday'
s.add_runtime_dependency 'hashie'
s.add_runtime_dependency 'json'
s.add_runtime_dependency 'oauth'
s.add_runtime_dependency 'simple_oauth'
s.files = `git ls-files`.split("\n").delete_if { |f| !(f =~ /^examples/).nil? }
s.test_files = `git ls-files -- {test,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.require_paths = ['lib']
end