gazette 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.0
1
+ 0.2.1
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{gazette}
8
- s.version = "0.2.0"
8
+ s.version = "0.2.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Jeff Pollard"]
12
- s.date = %q{2010-12-03}
12
+ s.date = %q{2010-12-16}
13
13
  s.description = %q{Simple Ruby wrapper gem to interact with the Instapaper API. Supports authenticate and add API methods, as well as https, jsonp and all other features of the API.}
14
14
  s.email = %q{jeff.pollard@gmail.com}
15
15
  s.extra_rdoc_files = [
@@ -43,7 +43,7 @@ Gem::Specification.new do |s|
43
43
  s.homepage = %q{http://github.com/Fluxx/gazette}
44
44
  s.rdoc_options = ["--charset=UTF-8"]
45
45
  s.require_paths = ["lib"]
46
- s.rubygems_version = %q{1.3.6}
46
+ s.rubygems_version = %q{1.3.7}
47
47
  s.summary = %q{Ruby library to interact with the Instapaper API.}
48
48
  s.test_files = [
49
49
  "spec/client/add_spec.rb",
@@ -58,7 +58,7 @@ Gem::Specification.new do |s|
58
58
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
59
59
  s.specification_version = 3
60
60
 
61
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
61
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
62
62
  s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
63
63
  s.add_development_dependency(%q<yard>, [">= 0"])
64
64
  else
@@ -2,7 +2,7 @@ module Gazette
2
2
  class Response
3
3
 
4
4
  # Superclass for all Gazette::Errors
5
- class Error < Exception; end
5
+ class Error < StandardError; end
6
6
 
7
7
  # Response raised of the Instapaper returned a response indicating invalid user
8
8
  # credentials.
@@ -8,4 +8,8 @@ describe Gazette::Response::Error do
8
8
  Gazette::Response::UnknownError.superclass.should == Gazette::Response::Error
9
9
  end
10
10
 
11
+ it "is a subclass of StandardError" do
12
+ Gazette::Response::Error.superclass.should == StandardError
13
+ end
14
+
11
15
  end
metadata CHANGED
@@ -1,12 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gazette
3
3
  version: !ruby/object:Gem::Version
4
+ hash: 21
4
5
  prerelease: false
5
6
  segments:
6
7
  - 0
7
8
  - 2
8
- - 0
9
- version: 0.2.0
9
+ - 1
10
+ version: 0.2.1
10
11
  platform: ruby
11
12
  authors:
12
13
  - Jeff Pollard
@@ -14,35 +15,39 @@ autorequire:
14
15
  bindir: bin
15
16
  cert_chain: []
16
17
 
17
- date: 2010-12-03 00:00:00 -08:00
18
+ date: 2010-12-16 00:00:00 -08:00
18
19
  default_executable:
19
20
  dependencies:
20
21
  - !ruby/object:Gem::Dependency
22
+ type: :development
23
+ prerelease: false
24
+ name: rspec
21
25
  version_requirements: &id001 !ruby/object:Gem::Requirement
26
+ none: false
22
27
  requirements:
23
28
  - - ">="
24
29
  - !ruby/object:Gem::Version
30
+ hash: 13
25
31
  segments:
26
32
  - 1
27
33
  - 2
28
34
  - 9
29
35
  version: 1.2.9
30
- name: rspec
31
36
  requirement: *id001
32
- prerelease: false
33
- type: :development
34
37
  - !ruby/object:Gem::Dependency
38
+ type: :development
39
+ prerelease: false
40
+ name: yard
35
41
  version_requirements: &id002 !ruby/object:Gem::Requirement
42
+ none: false
36
43
  requirements:
37
44
  - - ">="
38
45
  - !ruby/object:Gem::Version
46
+ hash: 3
39
47
  segments:
40
48
  - 0
41
49
  version: "0"
42
- name: yard
43
50
  requirement: *id002
44
- prerelease: false
45
- type: :development
46
51
  description: Simple Ruby wrapper gem to interact with the Instapaper API. Supports authenticate and add API methods, as well as https, jsonp and all other features of the API.
47
52
  email: jeff.pollard@gmail.com
48
53
  executables: []
@@ -85,23 +90,27 @@ rdoc_options:
85
90
  require_paths:
86
91
  - lib
87
92
  required_ruby_version: !ruby/object:Gem::Requirement
93
+ none: false
88
94
  requirements:
89
95
  - - ">="
90
96
  - !ruby/object:Gem::Version
97
+ hash: 3
91
98
  segments:
92
99
  - 0
93
100
  version: "0"
94
101
  required_rubygems_version: !ruby/object:Gem::Requirement
102
+ none: false
95
103
  requirements:
96
104
  - - ">="
97
105
  - !ruby/object:Gem::Version
106
+ hash: 3
98
107
  segments:
99
108
  - 0
100
109
  version: "0"
101
110
  requirements: []
102
111
 
103
112
  rubyforge_project:
104
- rubygems_version: 1.3.6
113
+ rubygems_version: 1.3.7
105
114
  signing_key:
106
115
  specification_version: 3
107
116
  summary: Ruby library to interact with the Instapaper API.