gazette 0.1.1 → 0.1.2
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.
- data/README.md +4 -0
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/gazette.gemspec +2 -2
- metadata +8 -8
data/README.md
CHANGED
@@ -2,6 +2,10 @@
|
|
2
2
|
|
3
3
|
Gazette is a Ruby gem to interact with the [Instapaper API](http://www.instapaper.com/api). It offers complete functionality with all API features, including authentication and adding URLs to read later. Gazette operates over HTTP and HTTPS, and uses (Instapaper-preferred) HTTP basic authentication.
|
4
4
|
|
5
|
+
* [Github](http://github.com/Fluxx/gazette) - Browse source code, README, etc.
|
6
|
+
* [Yardoc](http://rubydoc.info/github/Fluxx/gazette/master/frames) - Documentation.
|
7
|
+
* [Bugs/Issues](http://github.com/Fluxx/gazette/issues) - Got a problem?
|
8
|
+
|
5
9
|
**NOTE: This gem is still in beta. Production use not suggested, but encouraged.**
|
6
10
|
|
7
11
|
## Installation
|
data/Rakefile
CHANGED
@@ -8,7 +8,7 @@ require 'jeweler'
|
|
8
8
|
Jeweler::Tasks.new do |gem|
|
9
9
|
gem.name = "gazette"
|
10
10
|
gem.summary = %Q{Ruby library to interact with the Instapaper API.}
|
11
|
-
gem.description = %Q{Simple Ruby wrapper gem to interact with the Instapaper API. Supports authenticate and add API methods, as well as https, jsonp and
|
11
|
+
gem.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.}
|
12
12
|
gem.email = "jeff.pollard@gmail.com"
|
13
13
|
gem.homepage = "http://github.com/Fluxx/gazette"
|
14
14
|
gem.authors = ["Jeff Pollard"]
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.2
|
data/gazette.gemspec
CHANGED
@@ -5,12 +5,12 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{gazette}
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.2"
|
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
12
|
s.date = %q{2010-10-22}
|
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
|
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 = [
|
16
16
|
"LICENSE",
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
version: 0.1.
|
8
|
+
- 2
|
9
|
+
version: 0.1.2
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Jeff Pollard
|
@@ -18,9 +18,6 @@ date: 2010-10-22 00:00:00 -07:00
|
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
|
-
prerelease: false
|
22
|
-
type: :development
|
23
|
-
name: rspec
|
24
21
|
version_requirements: &id001 !ruby/object:Gem::Requirement
|
25
22
|
requirements:
|
26
23
|
- - ">="
|
@@ -30,11 +27,11 @@ dependencies:
|
|
30
27
|
- 2
|
31
28
|
- 9
|
32
29
|
version: 1.2.9
|
30
|
+
name: rspec
|
33
31
|
requirement: *id001
|
34
|
-
- !ruby/object:Gem::Dependency
|
35
32
|
prerelease: false
|
36
33
|
type: :development
|
37
|
-
|
34
|
+
- !ruby/object:Gem::Dependency
|
38
35
|
version_requirements: &id002 !ruby/object:Gem::Requirement
|
39
36
|
requirements:
|
40
37
|
- - ">="
|
@@ -42,8 +39,11 @@ dependencies:
|
|
42
39
|
segments:
|
43
40
|
- 0
|
44
41
|
version: "0"
|
42
|
+
name: yard
|
45
43
|
requirement: *id002
|
46
|
-
|
44
|
+
prerelease: false
|
45
|
+
type: :development
|
46
|
+
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
47
|
email: jeff.pollard@gmail.com
|
48
48
|
executables: []
|
49
49
|
|