monster_mash 0.2.0 → 0.2.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.
Files changed (7) hide show
  1. data/Gemfile +3 -1
  2. data/Gemfile.lock +6 -2
  3. data/Rakefile +1 -1
  4. data/VERSION +1 -1
  5. data/monster_mash.gemspec +32 -31
  6. metadata +36 -21
  7. data/.gitignore +0 -22
data/Gemfile CHANGED
@@ -1,4 +1,6 @@
1
- gem 'typhoeus', '>= 0.2.0'
1
+ source :rubygems
2
+
3
+ gem 'typhoeus', '>= 0.2.2'
2
4
 
3
5
  group :test do
4
6
  gem 'rspec', '1.3.1'
data/Gemfile.lock CHANGED
@@ -1,8 +1,12 @@
1
1
  GEM
2
+ remote: http://rubygems.org/
2
3
  specs:
3
4
  json (1.4.6)
5
+ mime-types (1.16)
4
6
  rspec (1.3.1)
5
- typhoeus (0.2.0)
7
+ typhoeus (0.2.2)
8
+ mime-types
9
+ mime-types
6
10
  vcr (1.3.0)
7
11
 
8
12
  PLATFORMS
@@ -11,5 +15,5 @@ PLATFORMS
11
15
  DEPENDENCIES
12
16
  json
13
17
  rspec (= 1.3.1)
14
- typhoeus (>= 0.2.0)
18
+ typhoeus (>= 0.2.2)
15
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.0"
13
+ gem.add_dependency "typhoeus", ">= 0.2.2"
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.0
1
+ 0.2.1
data/monster_mash.gemspec CHANGED
@@ -1,54 +1,52 @@
1
1
  # Generated by jeweler
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{monster_mash}
8
- s.version = "0.2.0"
8
+ s.version = "0.2.1"
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{2010-11-30}
12
+ s.date = %q{2011-02-14}
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 = [
16
16
  "LICENSE",
17
- "README.markdown",
18
- "README.markdown.html"
17
+ "README.markdown",
18
+ "README.markdown.html"
19
19
  ]
20
20
  s.files = [
21
21
  ".document",
22
- ".gitignore",
23
- "CHANGELOG.markdown",
24
- "Gemfile",
25
- "Gemfile.lock",
26
- "LICENSE",
27
- "README.markdown",
28
- "Rakefile",
29
- "VERSION",
30
- "lib/monster_mash.rb",
31
- "lib/monster_mash/base.rb",
32
- "lib/monster_mash/instance_exec.rb",
33
- "lib/monster_mash/request.rb",
34
- "monster_mash.gemspec",
35
- "spec/fixtures/vcr_cassettes/google/delegation.yml",
36
- "spec/fixtures/vcr_cassettes/google/error_propagation.yml",
37
- "spec/fixtures/vcr_cassettes/google/valid.yml",
38
- "spec/monster_mash/base_spec.rb",
39
- "spec/monster_mash/request_spec.rb",
40
- "spec/spec.opts",
41
- "spec/spec_helper.rb"
22
+ "CHANGELOG.markdown",
23
+ "Gemfile",
24
+ "Gemfile.lock",
25
+ "LICENSE",
26
+ "README.markdown",
27
+ "Rakefile",
28
+ "VERSION",
29
+ "lib/monster_mash.rb",
30
+ "lib/monster_mash/base.rb",
31
+ "lib/monster_mash/instance_exec.rb",
32
+ "lib/monster_mash/request.rb",
33
+ "monster_mash.gemspec",
34
+ "spec/fixtures/vcr_cassettes/google/delegation.yml",
35
+ "spec/fixtures/vcr_cassettes/google/error_propagation.yml",
36
+ "spec/fixtures/vcr_cassettes/google/valid.yml",
37
+ "spec/monster_mash/base_spec.rb",
38
+ "spec/monster_mash/request_spec.rb",
39
+ "spec/spec.opts",
40
+ "spec/spec_helper.rb"
42
41
  ]
43
42
  s.homepage = %q{http://github.com/dbalatero/monster_mash}
44
- s.rdoc_options = ["--charset=UTF-8"]
45
43
  s.require_paths = ["lib"]
46
44
  s.rubygems_version = %q{1.3.7}
47
45
  s.summary = %q{Provides a fun HTTP interface on top of Typhoeus!}
48
46
  s.test_files = [
49
47
  "spec/monster_mash/base_spec.rb",
50
- "spec/monster_mash/request_spec.rb",
51
- "spec/spec_helper.rb"
48
+ "spec/monster_mash/request_spec.rb",
49
+ "spec/spec_helper.rb"
52
50
  ]
53
51
 
54
52
  if s.respond_to? :specification_version then
@@ -56,16 +54,19 @@ Gem::Specification.new do |s|
56
54
  s.specification_version = 3
57
55
 
58
56
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
59
- s.add_runtime_dependency(%q<typhoeus>, [">= 0.2.0"])
57
+ s.add_runtime_dependency(%q<typhoeus>, [">= 0.2.2"])
58
+ s.add_runtime_dependency(%q<typhoeus>, [">= 0.2.2"])
60
59
  s.add_development_dependency(%q<rspec>, ["= 1.3.1"])
61
60
  s.add_development_dependency(%q<vcr>, [">= 1.3.0"])
62
61
  else
63
- s.add_dependency(%q<typhoeus>, [">= 0.2.0"])
62
+ s.add_dependency(%q<typhoeus>, [">= 0.2.2"])
63
+ s.add_dependency(%q<typhoeus>, [">= 0.2.2"])
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.0"])
68
+ s.add_dependency(%q<typhoeus>, [">= 0.2.2"])
69
+ s.add_dependency(%q<typhoeus>, [">= 0.2.2"])
69
70
  s.add_dependency(%q<rspec>, ["= 1.3.1"])
70
71
  s.add_dependency(%q<vcr>, [">= 1.3.0"])
71
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: 23
4
+ hash: 21
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 0
10
- version: 0.2.0
9
+ - 1
10
+ version: 0.2.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - David Balatero
@@ -15,29 +15,45 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-11-30 00:00:00 -08:00
18
+ date: 2011-02-14 00:00:00 -08:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
22
- name: typhoeus
22
+ type: :runtime
23
23
  prerelease: false
24
- requirement: &id001 !ruby/object:Gem::Requirement
24
+ version_requirements: &id001 !ruby/object:Gem::Requirement
25
25
  none: false
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- hash: 23
29
+ hash: 19
30
30
  segments:
31
31
  - 0
32
32
  - 2
33
- - 0
34
- version: 0.2.0
33
+ - 2
34
+ version: 0.2.2
35
+ name: typhoeus
36
+ requirement: *id001
37
+ - !ruby/object:Gem::Dependency
35
38
  type: :runtime
36
- version_requirements: *id001
39
+ prerelease: false
40
+ version_requirements: &id002 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ hash: 19
46
+ segments:
47
+ - 0
48
+ - 2
49
+ - 2
50
+ version: 0.2.2
51
+ name: typhoeus
52
+ requirement: *id002
37
53
  - !ruby/object:Gem::Dependency
38
- name: rspec
54
+ type: :development
39
55
  prerelease: false
40
- requirement: &id002 !ruby/object:Gem::Requirement
56
+ version_requirements: &id003 !ruby/object:Gem::Requirement
41
57
  none: false
42
58
  requirements:
43
59
  - - "="
@@ -48,12 +64,12 @@ dependencies:
48
64
  - 3
49
65
  - 1
50
66
  version: 1.3.1
51
- type: :development
52
- version_requirements: *id002
67
+ name: rspec
68
+ requirement: *id003
53
69
  - !ruby/object:Gem::Dependency
54
- name: vcr
70
+ type: :development
55
71
  prerelease: false
56
- requirement: &id003 !ruby/object:Gem::Requirement
72
+ version_requirements: &id004 !ruby/object:Gem::Requirement
57
73
  none: false
58
74
  requirements:
59
75
  - - ">="
@@ -64,8 +80,8 @@ dependencies:
64
80
  - 3
65
81
  - 0
66
82
  version: 1.3.0
67
- type: :development
68
- version_requirements: *id003
83
+ name: vcr
84
+ requirement: *id004
69
85
  description: Provides a fun HTTP interface on top of Typhoeus!
70
86
  email: dbalatero@gmail.com
71
87
  executables: []
@@ -78,7 +94,6 @@ extra_rdoc_files:
78
94
  - README.markdown.html
79
95
  files:
80
96
  - .document
81
- - .gitignore
82
97
  - CHANGELOG.markdown
83
98
  - Gemfile
84
99
  - Gemfile.lock
@@ -104,8 +119,8 @@ homepage: http://github.com/dbalatero/monster_mash
104
119
  licenses: []
105
120
 
106
121
  post_install_message:
107
- rdoc_options:
108
- - --charset=UTF-8
122
+ rdoc_options: []
123
+
109
124
  require_paths:
110
125
  - lib
111
126
  required_ruby_version: !ruby/object:Gem::Requirement
data/.gitignore DELETED
@@ -1,22 +0,0 @@
1
- ## MAC OS
2
- .DS_Store
3
-
4
- ## TEXTMATE
5
- *.tmproj
6
- tmtags
7
-
8
- ## EMACS
9
- *~
10
- \#*
11
- .\#*
12
-
13
- ## VIM
14
- *.swp
15
-
16
- ## PROJECT::GENERAL
17
- coverage
18
- rdoc
19
- pkg
20
-
21
- ## PROJECT::SPECIFIC
22
- README.markdown.html