forked from MortarStone/fellowshipone-api-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfellowshipone_api.gemspec
24 lines (18 loc) · 958 Bytes
/
fellowshipone_api.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
Gem::Specification.new do |s|
PROJECT_GEM = 'fellowshipone-api'
PROJECT_GEM_VERSION = '0.1.0'
s.name = PROJECT_GEM
s.version = PROJECT_GEM_VERSION
s.platform = Gem::Platform::RUBY
s.homepage = 'https://github.com/weshays/fellowshipone-api'
s.rubyforge_project = 'Project on www.github.com'
s.authors = ['Wes Hays', 'Chad Feller']
s.email = ['[email protected]','[email protected]']
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.add_dependency('typhoeus', '0.5.1')
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end