monster_mash 0.2.2 → 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.markdown CHANGED
@@ -1,3 +1,8 @@
1
+ 0.2.3
2
+ -----
3
+ * bumped typhoeus to 0.2.4 to fix POST forms
4
+ * added verbose flag option
5
+
1
6
  0.2.2
2
7
  -----
3
8
  * bumped typhoeus to 0.2.3 to fix nested params
data/Gemfile CHANGED
@@ -1,6 +1,6 @@
1
1
  source :rubygems
2
2
 
3
- gem 'typhoeus', '>= 0.2.3'
3
+ gem 'typhoeus', '>= 0.2.4'
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.3)
7
+ typhoeus (0.2.4)
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.3)
18
+ typhoeus (>= 0.2.4)
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.3"
13
+ gem.add_dependency "typhoeus", ">= 0.2.4"
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.2
1
+ 0.2.3
@@ -75,7 +75,7 @@ module MonsterMash
75
75
 
76
76
  # Typhoeus options.
77
77
  [:body, :headers, :timeout, :cache_timeout, :params,
78
- :user_agent, :follow_location, :max_redirects,
78
+ :user_agent, :follow_location, :max_redirects, :verbose,
79
79
  :proxy, :disable_ssl_peer_verification].each do |method|
80
80
  class_eval <<-EOF
81
81
  def #{method}(value = nil, &block)
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.2"
8
+ s.version = "0.2.3"
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-19}
12
+ s.date = %q{2011-02-24}
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.3"])
58
- s.add_runtime_dependency(%q<typhoeus>, [">= 0.2.3"])
57
+ s.add_runtime_dependency(%q<typhoeus>, [">= 0.2.4"])
58
+ s.add_runtime_dependency(%q<typhoeus>, [">= 0.2.4"])
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.3"])
63
- s.add_dependency(%q<typhoeus>, [">= 0.2.3"])
62
+ s.add_dependency(%q<typhoeus>, [">= 0.2.4"])
63
+ s.add_dependency(%q<typhoeus>, [">= 0.2.4"])
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.3"])
69
- s.add_dependency(%q<typhoeus>, [">= 0.2.3"])
68
+ s.add_dependency(%q<typhoeus>, [">= 0.2.4"])
69
+ s.add_dependency(%q<typhoeus>, [">= 0.2.4"])
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: 19
4
+ hash: 17
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 2
10
- version: 0.2.2
9
+ - 3
10
+ version: 0.2.3
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-19 00:00:00 -08:00
18
+ date: 2011-02-24 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: 17
29
+ hash: 31
30
30
  segments:
31
31
  - 0
32
32
  - 2
33
- - 3
34
- version: 0.2.3
33
+ - 4
34
+ version: 0.2.4
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: 17
45
+ hash: 31
46
46
  segments:
47
47
  - 0
48
48
  - 2
49
- - 3
50
- version: 0.2.3
49
+ - 4
50
+ version: 0.2.4
51
51
  name: typhoeus
52
52
  requirement: *id002
53
53
  - !ruby/object:Gem::Dependency