peteog-tagometer 0.1.0 → 0.1.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.
data/CHANGELOG ADDED
@@ -0,0 +1,7 @@
1
+ 0.1.1 (30th December 2008)
2
+
3
+ * fixed bug where gem is looking for README.md
4
+
5
+ 0.1.0 (30th December 2008)
6
+
7
+ * initial release
data/Manifest CHANGED
@@ -1,11 +1,14 @@
1
+ CHANGELOG
1
2
  init.rb
2
3
  lib/tagometer/client.rb
3
4
  lib/tagometer/summary.rb
4
5
  lib/tagometer/version.rb
5
6
  lib/tagometer.rb
7
+ Manifest
6
8
  Rakefile
9
+ README.rdoc
10
+ tagometer.gemspec
7
11
  test/fixtures/google.yml
8
12
  test/test_helper.rb
9
13
  test/test_summary.rb
10
14
  test/test_tagometer.rb
11
- Manifest
data/README.rdoc ADDED
@@ -0,0 +1,53 @@
1
+ = Tagometer
2
+
3
+ A simple wrapper for the Delicious tagometer.
4
+
5
+ == Usage:
6
+
7
+ Sample irb use (http://gist.github.com/41626):
8
+
9
+ >> require 'tagometer'
10
+ => true
11
+ >> site = Tagometer::Summary.new('http://www.mutt.org/')
12
+ => #<Tagometer::Summary:0x100034c @client=#<Tagometer::Client:0x1000310>
13
+ >> site.title
14
+ >> => "The Mutt E-Mail Client"
15
+ >> site.top_tags.keys
16
+ => ["cli", "software", "linux", "client", "tools", "mail", "unix", "mutt", "opensource", "email"]
17
+
18
+ == Requirements:
19
+
20
+ * HTTParty (http://github.com/jnunemaker/httparty/tree/master)
21
+
22
+ == Install:
23
+
24
+ Install the gem:
25
+
26
+ sudo gem install peteog-tagometer --source http://gems.github.com
27
+
28
+ And then load it in your project:
29
+
30
+ require 'tagometer'
31
+
32
+ == License
33
+
34
+ Copyright (c) 2008 Pete O'Grady
35
+
36
+ Permission is hereby granted, free of charge, to any person obtaining
37
+ a copy of this software and associated documentation files (the
38
+ "Software"), to deal in the Software without restriction, including
39
+ without limitation the rights to use, copy, modify, merge, publish,
40
+ distribute, sublicense, and/or sell copies of the Software, and to
41
+ permit persons to whom the Software is furnished to do so, subject to
42
+ the following conditions:
43
+
44
+ The above copyright notice and this permission notice shall be
45
+ included in all copies or substantial portions of the Software.
46
+
47
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
48
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
49
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
50
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
51
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
52
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
53
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -1,3 +1,3 @@
1
1
  module Tagometer
2
- Version = '0.1.0'
2
+ Version = '0.1.1'
3
3
  end
data/tagometer.gemspec CHANGED
@@ -2,18 +2,18 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{tagometer}
5
- s.version = "0.1.0"
5
+ s.version = "0.1.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Pete O'Grady"]
9
9
  s.date = %q{2008-12-30}
10
10
  s.description = %q{A simple wrapper for the Delicious tagometer}
11
11
  s.email = %q{pete@peteogrady.com}
12
- s.extra_rdoc_files = ["lib/tagometer/client.rb", "lib/tagometer/summary.rb", "lib/tagometer/version.rb", "lib/tagometer.rb"]
13
- s.files = ["init.rb", "lib/tagometer/client.rb", "lib/tagometer/summary.rb", "lib/tagometer/version.rb", "lib/tagometer.rb", "Rakefile", "test/fixtures/google.yml", "test/test_helper.rb", "test/test_summary.rb", "test/test_tagometer.rb", "Manifest", "tagometer.gemspec"]
12
+ s.extra_rdoc_files = ["CHANGELOG", "lib/tagometer/client.rb", "lib/tagometer/summary.rb", "lib/tagometer/version.rb", "lib/tagometer.rb", "README.rdoc"]
13
+ s.files = ["CHANGELOG", "init.rb", "lib/tagometer/client.rb", "lib/tagometer/summary.rb", "lib/tagometer/version.rb", "lib/tagometer.rb", "Manifest", "Rakefile", "README.rdoc", "tagometer.gemspec", "test/fixtures/google.yml", "test/test_helper.rb", "test/test_summary.rb", "test/test_tagometer.rb"]
14
14
  s.has_rdoc = true
15
15
  s.homepage = %q{}
16
- s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Tagometer", "--main", "README.md"]
16
+ s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Tagometer", "--main", "README.rdoc"]
17
17
  s.require_paths = ["lib"]
18
18
  s.rubyforge_project = %q{tagometer}
19
19
  s.rubygems_version = %q{1.3.1}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: peteog-tagometer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pete O'Grady
@@ -37,23 +37,27 @@ executables: []
37
37
  extensions: []
38
38
 
39
39
  extra_rdoc_files:
40
+ - CHANGELOG
40
41
  - lib/tagometer/client.rb
41
42
  - lib/tagometer/summary.rb
42
43
  - lib/tagometer/version.rb
43
44
  - lib/tagometer.rb
45
+ - README.rdoc
44
46
  files:
47
+ - CHANGELOG
45
48
  - init.rb
46
49
  - lib/tagometer/client.rb
47
50
  - lib/tagometer/summary.rb
48
51
  - lib/tagometer/version.rb
49
52
  - lib/tagometer.rb
53
+ - Manifest
50
54
  - Rakefile
55
+ - README.rdoc
56
+ - tagometer.gemspec
51
57
  - test/fixtures/google.yml
52
58
  - test/test_helper.rb
53
59
  - test/test_summary.rb
54
60
  - test/test_tagometer.rb
55
- - Manifest
56
- - tagometer.gemspec
57
61
  has_rdoc: true
58
62
  homepage: ""
59
63
  post_install_message:
@@ -63,7 +67,7 @@ rdoc_options:
63
67
  - --title
64
68
  - Tagometer
65
69
  - --main
66
- - README.md
70
+ - README.rdoc
67
71
  require_paths:
68
72
  - lib
69
73
  required_ruby_version: !ruby/object:Gem::Requirement