forked from ebarendt/f1api-ruby
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathf1api.gemspec
48 lines (44 loc) · 1.48 KB
/
f1api.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
42
43
44
45
46
47
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{f1api}
s.version = "0.10.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Jesse Dearing"]
s.date = Time.now.strftime("%Y-%m-%d")
s.description = %q{Consumes the Fellowship One API in your apps using ActiveResource. Implements 2nd party credentials-based authenticaion and full OAuth implementation. }
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"LICENSE",
"README.md"
]
s.files = %w[
config/f1-oauth.yml
lib/f1api.rb
lib/f1api/activeresource/base.rb
lib/f1api/activeresource/connection.rb
lib/f1api/client.rb
lib/f1api/configuration.rb
lib/f1api/oauth.rb
lib/f1api/oauth/credentials_authentication.rb
lib/f1api/oauth/oauth_authentication.rb
LICENSE
README.md
Rakefile
]
s.test_files = %w[
test/fixtures/access_token.rb
test/fixtures/http.rb
test/fixtures/request_token.rb
test/unit/configuration_test.rb
test/unit/credentials_test.rb
test/unit/oauth_test.rb
]
s.homepage = "http://github.com/fellowshiptech/f1api-ruby"
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.summary = %q{Consume the Fellowship One API in your apps using ActiveResource}
s.add_runtime_dependency('oauth', ">= 0.4.4")
s.add_runtime_dependency('activeresource')
s.add_development_dependency('mocha')
s.add_runtime_dependency('activeresource')
end