devver-octopi 0.2.9 → 0.2.10

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -2,3 +2,4 @@ examples/github.yml
2
2
  doc/
3
3
  pkg/
4
4
  contrib/nothingspecial.rb
5
+ octopi.gemspec
@@ -1,4 +1,4 @@
1
1
  ---
2
- :patch: 9
2
+ :patch: 10
3
3
  :major: 0
4
4
  :minor: 2
@@ -193,7 +193,7 @@ __
193
193
  end
194
194
  end
195
195
  begin
196
- key = "#{Api.api.class.to_s}:#{path}"
196
+ key = "#{Api.api.class.to_s}:#{path} #{format} #{params.inspect} #{auth_parameters.inspect}"
197
197
  resp = if cache
198
198
  APICache.get(key, :cache => 61) do
199
199
  handle_github_api_bug_569(path, format) do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: devver-octopi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.9
4
+ version: 0.2.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felipe Coury
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-01-06 00:00:00 -07:00
12
+ date: 2010-01-07 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -100,7 +100,6 @@ files:
100
100
  - lib/octopi/self.rb
101
101
  - lib/octopi/tag.rb
102
102
  - lib/octopi/user.rb
103
- - octopi.gemspec
104
103
  has_rdoc: true
105
104
  homepage: http://github.com/devver/octopi
106
105
  licenses: []
@@ -1,99 +0,0 @@
1
- # Generated by jeweler
2
- # DO NOT EDIT THIS FILE
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{octopi}
8
- s.version = "0.2.5"
9
-
10
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["Felipe Coury"]
12
- s.date = %q{2009-12-26}
13
- s.email = %q{felipe.coury@gmail.com}
14
- s.extra_rdoc_files = [
15
- "LICENSE",
16
- "README.rdoc"
17
- ]
18
- s.files = [
19
- ".gitignore",
20
- ".yardoc",
21
- "CHANGELOG.md",
22
- "LICENSE",
23
- "README.rdoc",
24
- "Rakefile",
25
- "VERSION.yml",
26
- "contrib/backup.rb",
27
- "lib/ext/hash_ext.rb",
28
- "lib/ext/string_ext.rb",
29
- "lib/octopi.rb",
30
- "lib/octopi/api.rb",
31
- "lib/octopi/base.rb",
32
- "lib/octopi/blob.rb",
33
- "lib/octopi/branch.rb",
34
- "lib/octopi/branch_set.rb",
35
- "lib/octopi/comment.rb",
36
- "lib/octopi/commit.rb",
37
- "lib/octopi/error.rb",
38
- "lib/octopi/file_object.rb",
39
- "lib/octopi/gist.rb",
40
- "lib/octopi/issue.rb",
41
- "lib/octopi/issue_comment.rb",
42
- "lib/octopi/issue_set.rb",
43
- "lib/octopi/key.rb",
44
- "lib/octopi/key_set.rb",
45
- "lib/octopi/plan.rb",
46
- "lib/octopi/repository.rb",
47
- "lib/octopi/repository_set.rb",
48
- "lib/octopi/resource.rb",
49
- "lib/octopi/self.rb",
50
- "lib/octopi/tag.rb",
51
- "lib/octopi/user.rb",
52
- "octopi.gemspec"
53
- ]
54
- s.homepage = %q{http://github.com/fcoury/octopi}
55
- s.rdoc_options = ["--charset=UTF-8"]
56
- s.require_paths = ["lib"]
57
- s.rubyforge_project = %q{octopi}
58
- s.rubygems_version = %q{1.3.5}
59
- s.summary = %q{A Ruby interface to GitHub API v2}
60
- s.test_files = [
61
- "test/api_test.rb",
62
- "test/authenticated_test.rb",
63
- "test/blob_test.rb",
64
- "test/branch_test.rb",
65
- "test/commit_test.rb",
66
- "test/file_object_test.rb",
67
- "test/gist_test.rb",
68
- "test/issue_comment.rb",
69
- "test/issue_set_test.rb",
70
- "test/issue_test.rb",
71
- "test/key_set_test.rb",
72
- "test/key_test.rb",
73
- "test/repository_set_test.rb",
74
- "test/repository_test.rb",
75
- "test/stubs/commits/fcoury/octopi/octopi.rb",
76
- "test/tag_test.rb",
77
- "test/test_helper.rb",
78
- "test/user_test.rb",
79
- "examples/authenticated.rb",
80
- "examples/issues.rb",
81
- "examples/overall.rb"
82
- ]
83
-
84
- if s.respond_to? :specification_version then
85
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
86
- s.specification_version = 3
87
-
88
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
89
- s.add_runtime_dependency(%q<nokogiri>, [">= 1.3.1"])
90
- s.add_runtime_dependency(%q<httparty>, [">= 0.4.5"])
91
- else
92
- s.add_dependency(%q<nokogiri>, [">= 1.3.1"])
93
- s.add_dependency(%q<httparty>, [">= 0.4.5"])
94
- end
95
- else
96
- s.add_dependency(%q<nokogiri>, [">= 1.3.1"])
97
- s.add_dependency(%q<httparty>, [">= 0.4.5"])
98
- end
99
- end