jordandobson-glue 0.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,4 +1,4 @@
1
- === 1.0.0 / 2009-06-24
1
+ === 1.0.2 / 2009-08-25
2
2
 
3
3
  * 1 major enhancement
4
4
 
data/Manifest.txt CHANGED
@@ -2,6 +2,5 @@ History.txt
2
2
  Manifest.txt
3
3
  README.txt
4
4
  Rakefile
5
- bin/glue
6
5
  lib/glue.rb
7
6
  test/test_glue.rb
data/README.txt CHANGED
@@ -97,12 +97,12 @@ You can also request public posts from an account using the same RSS that powers
97
97
 
98
98
  == REQUIREMENTS:
99
99
 
100
- * Mechanize & HTTParty
100
+ * Nokogiri & HTTParty
101
101
  * Mocha (for tests)
102
102
 
103
103
  == INSTALL:
104
104
 
105
- * sudo gem install jordandobson-glue -include-dependencies
105
+ * sudo gem install glue
106
106
 
107
107
  == LICENSE:
108
108
 
data/Rakefile CHANGED
@@ -5,10 +5,12 @@ require 'hoe'
5
5
  require './lib/glue.rb'
6
6
 
7
7
  Hoe.new('glue', Glue::VERSION) do |p|
8
+ # p.rubyforge_name = 'gluex' # if different than lowercase project name
8
9
  p.developer('Jordan Dobson', 'jordan.dobson@madebysquad.com')
9
- p.extra_deps = ['mechanize']
10
- p.extra_deps = ['httparty']
11
- p.extra_dev_deps = ['mocha']
10
+ p.extra_deps = ['nokogiri']
11
+ p.extra_deps = ['httparty']
12
+ p.extra_dev_deps = ['mocha']
13
+ p.remote_rdoc_dir = '' # Release to root
12
14
  end
13
15
 
14
16
  # vim: syntax=Ruby
data/lib/glue.rb CHANGED
@@ -5,7 +5,7 @@ require 'open-uri'
5
5
 
6
6
  module Glue
7
7
 
8
- VERSION = '0.0.2'
8
+ VERSION = '1.0.3'
9
9
  DOMAIN = 'gluenow.com'
10
10
 
11
11
  class AuthError < StandardError; end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jordandobson-glue
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jordan Dobson
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-08-18 00:00:00 -07:00
12
+ date: 2009-08-25 00:00:00 -07:00
13
13
  default_executable: glue
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -42,11 +42,11 @@ dependencies:
42
42
  - !ruby/object:Gem::Version
43
43
  version: 1.12.2
44
44
  version:
45
- description: The Glue gem enables posting to GlueNow.com API service using an account subdomain, username, password. In this version you can add a post by providing a title, body, optional author name and optional private settings. You can also access some basic info about a users account and check if their account info is valid. You can also request public posts from an account using the same RSS that powers the many Glue feeds.
45
+ description: Enables posting to GlueNow.com API service and reading posts from Glue accounts.
46
46
  email:
47
47
  - jordan.dobson@madebysquad.com
48
- executables:
49
- - glue
48
+ executables: []
49
+
50
50
  extensions: []
51
51
 
52
52
  extra_rdoc_files:
@@ -58,13 +58,12 @@ files:
58
58
  - Manifest.txt
59
59
  - README.txt
60
60
  - Rakefile
61
- - bin/glue
62
61
  - lib/glue.rb
63
62
  - test/test_glue.rb
64
63
  has_rdoc: false
65
- homepage: http://Glue.RubyForge.org
64
+ homepage: http://glue.rubyforge.org
66
65
  licenses:
67
- post_install_message:
66
+ post_install_message: Get ready to Glue!
68
67
  rdoc_options:
69
68
  - --main
70
69
  - README.txt
@@ -88,6 +87,6 @@ rubyforge_project: glue
88
87
  rubygems_version: 1.3.5
89
88
  signing_key:
90
89
  specification_version: 3
91
- summary: The Glue gem enables posting to GlueNow.com API service and reading posts
90
+ summary: Enables posting to GlueNow.com API service and reading posts from Glue accounts.
92
91
  test_files:
93
92
  - test/test_glue.rb
data/bin/glue DELETED
@@ -1 +0,0 @@
1
- #!/usr/bin/env ruby