monster_mash 0.2.1 → 0.2.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/CHANGELOG.markdown CHANGED
@@ -1,3 +1,11 @@
1
+ 0.2.2
2
+ -----
3
+ * bumped typhoeus to 0.2.3 to fix nested params
4
+
5
+ 0.2.1
6
+ -----
7
+ * bumped typhoeus to 0.2.2
8
+
1
9
  0.1.3
2
10
  -----
3
11
  * HTTPErrors now have the response code as a method.
data/Gemfile CHANGED
@@ -1,6 +1,6 @@
1
1
  source :rubygems
2
2
 
3
- gem 'typhoeus', '>= 0.2.2'
3
+ gem 'typhoeus', '>= 0.2.3'
4
4
 
5
5
  group :test do
6
6
  gem 'rspec', '1.3.1'
data/Gemfile.lock CHANGED
@@ -4,7 +4,7 @@ GEM
4
4
  json (1.4.6)
5
5
  mime-types (1.16)
6
6
  rspec (1.3.1)
7
- typhoeus (0.2.2)
7
+ typhoeus (0.2.3)
8
8
  mime-types
9
9
  mime-types
10
10
  vcr (1.3.0)
@@ -15,5 +15,5 @@ PLATFORMS
15
15
  DEPENDENCIES
16
16
  json
17
17
  rspec (= 1.3.1)
18
- typhoeus (>= 0.2.2)
18
+ typhoeus (>= 0.2.3)
19
19
  vcr (>= 1.3.0)
data/Rakefile CHANGED
@@ -10,7 +10,7 @@ begin
10
10
  gem.email = "dbalatero@gmail.com"
11
11
  gem.homepage = "http://github.com/dbalatero/monster_mash"
12
12
  gem.authors = ["David Balatero"]
13
- gem.add_dependency "typhoeus", ">= 0.2.2"
13
+ gem.add_dependency "typhoeus", ">= 0.2.3"
14
14
  gem.add_development_dependency "rspec", "1.3.1"
15
15
  gem.add_development_dependency "vcr", ">= 1.3.0"
16
16
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.1
1
+ 0.2.2
data/monster_mash.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{monster_mash}
8
- s.version = "0.2.1"
8
+ s.version = "0.2.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["David Balatero"]
12
- s.date = %q{2011-02-14}
12
+ s.date = %q{2011-02-19}
13
13
  s.description = %q{Provides a fun HTTP interface on top of Typhoeus!}
14
14
  s.email = %q{dbalatero@gmail.com}
15
15
  s.extra_rdoc_files = [
@@ -54,19 +54,19 @@ Gem::Specification.new do |s|
54
54
  s.specification_version = 3
55
55
 
56
56
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
57
- s.add_runtime_dependency(%q<typhoeus>, [">= 0.2.2"])
58
- s.add_runtime_dependency(%q<typhoeus>, [">= 0.2.2"])
57
+ s.add_runtime_dependency(%q<typhoeus>, [">= 0.2.3"])
58
+ s.add_runtime_dependency(%q<typhoeus>, [">= 0.2.3"])
59
59
  s.add_development_dependency(%q<rspec>, ["= 1.3.1"])
60
60
  s.add_development_dependency(%q<vcr>, [">= 1.3.0"])
61
61
  else
62
- s.add_dependency(%q<typhoeus>, [">= 0.2.2"])
63
- s.add_dependency(%q<typhoeus>, [">= 0.2.2"])
62
+ s.add_dependency(%q<typhoeus>, [">= 0.2.3"])
63
+ s.add_dependency(%q<typhoeus>, [">= 0.2.3"])
64
64
  s.add_dependency(%q<rspec>, ["= 1.3.1"])
65
65
  s.add_dependency(%q<vcr>, [">= 1.3.0"])
66
66
  end
67
67
  else
68
- s.add_dependency(%q<typhoeus>, [">= 0.2.2"])
69
- s.add_dependency(%q<typhoeus>, [">= 0.2.2"])
68
+ s.add_dependency(%q<typhoeus>, [">= 0.2.3"])
69
+ s.add_dependency(%q<typhoeus>, [">= 0.2.3"])
70
70
  s.add_dependency(%q<rspec>, ["= 1.3.1"])
71
71
  s.add_dependency(%q<vcr>, [">= 1.3.0"])
72
72
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: monster_mash
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 19
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 1
10
- version: 0.2.1
9
+ - 2
10
+ version: 0.2.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - David Balatero
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-02-14 00:00:00 -08:00
18
+ date: 2011-02-19 00:00:00 -08:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -26,12 +26,12 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- hash: 19
29
+ hash: 17
30
30
  segments:
31
31
  - 0
32
32
  - 2
33
- - 2
34
- version: 0.2.2
33
+ - 3
34
+ version: 0.2.3
35
35
  name: typhoeus
36
36
  requirement: *id001
37
37
  - !ruby/object:Gem::Dependency
@@ -42,12 +42,12 @@ dependencies:
42
42
  requirements:
43
43
  - - ">="
44
44
  - !ruby/object:Gem::Version
45
- hash: 19
45
+ hash: 17
46
46
  segments:
47
47
  - 0
48
48
  - 2
49
- - 2
50
- version: 0.2.2
49
+ - 3
50
+ version: 0.2.3
51
51
  name: typhoeus
52
52
  requirement: *id002
53
53
  - !ruby/object:Gem::Dependency