impostor 1.0.0 → 1.0.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.
Files changed (6) hide show
  1. data/Gemfile +2 -1
  2. data/Gemfile.lock +19 -17
  3. data/History.txt +10 -0
  4. data/Rakefile +1 -1
  5. data/lib/impostor.rb +1 -1
  6. metadata +10 -13
data/Gemfile CHANGED
@@ -3,7 +3,8 @@
3
3
  source :gemcutter
4
4
 
5
5
  gem "hoe", ">=2.8.0"
6
- gem "mechanize", ">=1.0.0"
6
+ gem "rdoc"
7
+ gem "mechanize", "=1.0.0"
7
8
  gem "nokogiri", ">=1.4.4"
8
9
 
9
10
  group :development, :test do
data/Gemfile.lock CHANGED
@@ -1,15 +1,15 @@
1
1
  GEM
2
2
  remote: http://rubygems.org/
3
3
  specs:
4
- addressable (2.2.4)
4
+ addressable (2.2.6)
5
5
  cgi_multipart_eof_fix (2.5.0)
6
6
  crack (0.1.8)
7
- daemons (1.1.0)
7
+ daemons (1.1.4)
8
8
  diff-lcs (1.1.2)
9
9
  fastthread (1.0.7)
10
10
  gem_plugin (0.2.3)
11
- hoe (2.9.0)
12
- rake (>= 0.8.7)
11
+ hoe (2.10.0)
12
+ rake (~> 0.8)
13
13
  mechanize (1.0.0)
14
14
  nokogiri (>= 1.2.1)
15
15
  mongrel (1.1.5)
@@ -17,20 +17,21 @@ GEM
17
17
  daemons (>= 1.0.3)
18
18
  fastthread (>= 1.0.1)
19
19
  gem_plugin (>= 0.2.3)
20
- nokogiri (1.4.4)
21
- rake (0.8.7)
20
+ nokogiri (1.5.0)
21
+ rake (0.9.2)
22
+ rdoc (3.8)
22
23
  redgreen (1.2.2)
23
- rspec (2.4.0)
24
- rspec-core (~> 2.4.0)
25
- rspec-expectations (~> 2.4.0)
26
- rspec-mocks (~> 2.4.0)
27
- rspec-core (2.4.0)
28
- rspec-expectations (2.4.0)
24
+ rspec (2.6.0)
25
+ rspec-core (~> 2.6.0)
26
+ rspec-expectations (~> 2.6.0)
27
+ rspec-mocks (~> 2.6.0)
28
+ rspec-core (2.6.4)
29
+ rspec-expectations (2.6.0)
29
30
  diff-lcs (~> 1.1.2)
30
- rspec-mocks (2.4.0)
31
- vcr (1.5.1)
32
- webmock (1.6.2)
33
- addressable (>= 2.2.2)
31
+ rspec-mocks (2.6.0)
32
+ vcr (1.10.2)
33
+ webmock (1.6.4)
34
+ addressable (> 2.2.5, ~> 2.2)
34
35
  crack (>= 0.1.7)
35
36
 
36
37
  PLATFORMS
@@ -38,9 +39,10 @@ PLATFORMS
38
39
 
39
40
  DEPENDENCIES
40
41
  hoe (>= 2.8.0)
41
- mechanize (>= 1.0.0)
42
+ mechanize (= 1.0.0)
42
43
  mongrel (>= 1.1.5)
43
44
  nokogiri (>= 1.4.4)
45
+ rdoc
44
46
  redgreen (>= 1.2.2)
45
47
  rspec (>= 2.3.0)
46
48
  vcr (>= 1.5.1)
data/History.txt CHANGED
@@ -1,3 +1,13 @@
1
+ ### 1.0.2 / 2011-07-19 (help, I've fallen and can't get up, part dux)
2
+
3
+ * re-release with correct gem deps in Rackfile
4
+
5
+ ### 1.0.1 / 2011-07-19 (help, I've fallen and can't get up)
6
+
7
+ * 1 bug fix
8
+ * Mechanize 2.* is incompatible with this implementation (for now), locking
9
+ down on Mechanize 1.0.0
10
+
1
11
  ### 1.0.0 / 2011-02-XX (move over bacon there's something leaner)
2
12
 
3
13
  * 2 major enhancements
data/Rakefile CHANGED
@@ -24,7 +24,7 @@ Hoe.spec('impostor') do |p|
24
24
  p.history_file = "History.txt"
25
25
  p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
26
26
  p.extra_deps << ['nokogiri', '>= 1.4.4']
27
- p.extra_deps << ['mechanize', '>= 1.0.0']
27
+ p.extra_deps << ['mechanize', '= 1.0.0']
28
28
  p.clean_globs << 'coverage'
29
29
  p.testlib = :rspec
30
30
  end
data/lib/impostor.rb CHANGED
@@ -52,7 +52,7 @@ class Impostor
52
52
  ##
53
53
  # Gem version of Impostor
54
54
 
55
- VERSION = '1.0.0'
55
+ VERSION = '1.0.2'
56
56
 
57
57
  ##
58
58
  # Pass in a config hash to initialize
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: impostor
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 0
10
- version: 1.0.0
9
+ - 2
10
+ version: 1.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Mike Mondragon
@@ -15,8 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-02-27 00:00:00 -08:00
19
- default_executable:
18
+ date: 2011-07-20 00:00:00 Z
20
19
  dependencies:
21
20
  - !ruby/object:Gem::Dependency
22
21
  name: nokogiri
@@ -40,7 +39,7 @@ dependencies:
40
39
  requirement: &id002 !ruby/object:Gem::Requirement
41
40
  none: false
42
41
  requirements:
43
- - - ">="
42
+ - - "="
44
43
  - !ruby/object:Gem::Version
45
44
  hash: 23
46
45
  segments:
@@ -56,14 +55,13 @@ dependencies:
56
55
  requirement: &id003 !ruby/object:Gem::Requirement
57
56
  none: false
58
57
  requirements:
59
- - - ">="
58
+ - - ~>
60
59
  - !ruby/object:Gem::Version
61
- hash: 43
60
+ hash: 23
62
61
  segments:
63
62
  - 2
64
- - 9
65
- - 0
66
- version: 2.9.0
63
+ - 10
64
+ version: "2.10"
67
65
  type: :development
68
66
  version_requirements: *id003
69
67
  description: |-
@@ -183,7 +181,6 @@ files:
183
181
  - spec/wwf79_spec.rb
184
182
  - spec/wwf80_spec.rb
185
183
  - .gemtest
186
- has_rdoc: true
187
184
  homepage: https://github.com/monde/impostor
188
185
  licenses: []
189
186
 
@@ -214,7 +211,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
214
211
  requirements: []
215
212
 
216
213
  rubyforge_project: impostor
217
- rubygems_version: 1.5.0
214
+ rubygems_version: 1.8.5
218
215
  signing_key:
219
216
  specification_version: 3
220
217
  summary: imPOSTor posts messages to non-RESTful forums and blogs