f1api 0.9.0 → 0.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. data/VERSION.yml +1 -1
  2. data/f1api.gemspec +89 -0
  3. data/lib/f1api.rb +1 -1
  4. metadata +3 -2
@@ -1,5 +1,5 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 9
4
- :patch: 0
4
+ :patch: 1
5
5
  :build:
@@ -0,0 +1,89 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{f1api}
8
+ s.version = "0.9.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Jesse Dearing"]
12
+ s.date = %q{2010-11-19}
13
+ s.description = %q{Consumes the Fellowship One API in your apps using ActiveResource. Implements 2nd party credentials-based authenticaion and full OAuth implementation. }
14
+ s.email = %q{jdearing@fellowshiptech.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.md"
18
+ ]
19
+ s.files = [
20
+ "Gemfile",
21
+ "Gemfile.lock",
22
+ "LICENSE",
23
+ "README.md",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "VERSION.yml",
27
+ "config/f1-oauth.yml",
28
+ "f1api.gemspec",
29
+ "lib/f1api.rb",
30
+ "lib/f1api/activeresource/base.rb",
31
+ "lib/f1api/activeresource/connection.rb",
32
+ "lib/f1api/client.rb",
33
+ "lib/f1api/configuration.rb",
34
+ "lib/f1api/oauth.rb",
35
+ "lib/f1api/oauth/credentials_authentication.rb",
36
+ "lib/f1api/oauth/oauth_authentication.rb",
37
+ "test/fixtures/access_token.rb",
38
+ "test/fixtures/http.rb",
39
+ "test/fixtures/request_token.rb",
40
+ "test/unit/configuration_test.rb",
41
+ "test/unit/credentials_test.rb",
42
+ "test/unit/oauth_test.rb"
43
+ ]
44
+ s.homepage = %q{http://github.com/jessedearing/f1api}
45
+ s.licenses = ["MIT"]
46
+ s.require_paths = ["lib"]
47
+ s.rubygems_version = %q{1.3.7}
48
+ s.summary = %q{Consume the Fellowship One API in your apps using ActiveResource}
49
+ s.test_files = [
50
+ "test/fixtures/access_token.rb",
51
+ "test/fixtures/http.rb",
52
+ "test/fixtures/request_token.rb",
53
+ "test/unit/configuration_test.rb",
54
+ "test/unit/credentials_test.rb",
55
+ "test/unit/oauth_test.rb"
56
+ ]
57
+
58
+ if s.respond_to? :specification_version then
59
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
60
+ s.specification_version = 3
61
+
62
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
63
+ s.add_runtime_dependency(%q<nokogiri>, [">= 0"])
64
+ s.add_runtime_dependency(%q<oauth>, ["= 0.4.4"])
65
+ s.add_runtime_dependency(%q<mocha>, [">= 0"])
66
+ s.add_runtime_dependency(%q<activeresource>, [">= 0"])
67
+ s.add_runtime_dependency(%q<oauth>, ["= 0.4.4"])
68
+ s.add_development_dependency(%q<mocha>, [">= 0"])
69
+ s.add_runtime_dependency(%q<activeresource>, [">= 0"])
70
+ else
71
+ s.add_dependency(%q<nokogiri>, [">= 0"])
72
+ s.add_dependency(%q<oauth>, ["= 0.4.4"])
73
+ s.add_dependency(%q<mocha>, [">= 0"])
74
+ s.add_dependency(%q<activeresource>, [">= 0"])
75
+ s.add_dependency(%q<oauth>, ["= 0.4.4"])
76
+ s.add_dependency(%q<mocha>, [">= 0"])
77
+ s.add_dependency(%q<activeresource>, [">= 0"])
78
+ end
79
+ else
80
+ s.add_dependency(%q<nokogiri>, [">= 0"])
81
+ s.add_dependency(%q<oauth>, ["= 0.4.4"])
82
+ s.add_dependency(%q<mocha>, [">= 0"])
83
+ s.add_dependency(%q<activeresource>, [">= 0"])
84
+ s.add_dependency(%q<oauth>, ["= 0.4.4"])
85
+ s.add_dependency(%q<mocha>, [">= 0"])
86
+ s.add_dependency(%q<activeresource>, [">= 0"])
87
+ end
88
+ end
89
+
@@ -1,4 +1,4 @@
1
- $LOAD_PATH.unshift "#{File.dirname(__FILE__)}"
1
+ $LOAD_PATH.unshift File.dirname(__FILE__)
2
2
  require 'bundler/setup'
3
3
  require 'yaml'
4
4
  require 'oauth'
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 9
8
- - 0
9
- version: 0.9.0
8
+ - 1
9
+ version: 0.9.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Jesse Dearing
@@ -130,6 +130,7 @@ files:
130
130
  - VERSION
131
131
  - VERSION.yml
132
132
  - config/f1-oauth.yml
133
+ - f1api.gemspec
133
134
  - lib/f1api.rb
134
135
  - lib/f1api/activeresource/base.rb
135
136
  - lib/f1api/activeresource/connection.rb