hostelify 0.5.3 → 0.5.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/Rakefile +2 -1
  2. data/hostelify.gemspec +8 -2
  3. metadata +28 -5
data/Rakefile CHANGED
@@ -4,13 +4,14 @@ require 'echoe'
4
4
  require 'hpricot'
5
5
  require 'mechanize'
6
6
 
7
- Echoe.new('hostelify', '0.5.3') do |p|
7
+ Echoe.new('hostelify', '0.5.4') do |p|
8
8
  p.description = "Simple Hostel Webscrapper."
9
9
  p.url = "http://github.com/holden/hostelify"
10
10
  p.author = "Holden Thomas"
11
11
  p.email = "holden.thomas@gmail.com"
12
12
  p.ignore_pattern = ["tmp/*", "script/*"]
13
13
  p.development_dependencies = []
14
+ p.runtime_dependencies = ["hpricot", "mechanize"]
14
15
  end
15
16
 
16
17
  Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }
data/hostelify.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{hostelify}
5
- s.version = "0.5.3"
5
+ s.version = "0.5.4"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Holden Thomas"]
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
10
10
  s.description = %q{Simple Hostel Webscrapper.}
11
11
  s.email = %q{holden.thomas@gmail.com}
12
12
  s.extra_rdoc_files = ["README.markdown", "lib/hostelify.rb", "lib/hostelify/gomio.rb", "lib/hostelify/hostel.rb", "lib/hostelify/hostelbookers.rb", "lib/hostelify/hostelify.rb", "lib/hostelify/hostelworld.rb", "lib/items.rb"]
13
- s.files = ["Manifest", "README.markdown", "Rakefile", "lib/hostelify.rb", "lib/hostelify/gomio.rb", "lib/hostelify/hostel.rb", "lib/hostelify/hostelbookers.rb", "lib/hostelify/hostelify.rb", "lib/hostelify/hostelworld.rb", "lib/items.rb", "spec/_helper.rb", "spec/hb_find_by_hostel.spec", "spec/hb_find_hostels.spec", "spec/helper.rb", "spec/hw_find_by_hostel.spec", "spec/hw_find_hostels.spec", "hostelify.gemspec"]
13
+ s.files = ["Manifest", "README.markdown", "Rakefile", "hostelify.gemspec", "lib/hostelify.rb", "lib/hostelify/gomio.rb", "lib/hostelify/hostel.rb", "lib/hostelify/hostelbookers.rb", "lib/hostelify/hostelify.rb", "lib/hostelify/hostelworld.rb", "lib/items.rb", "spec/_helper.rb", "spec/hb_find_by_hostel.spec", "spec/hb_find_hostels.spec", "spec/helper.rb", "spec/hw_find_by_hostel.spec", "spec/hw_find_hostels.spec"]
14
14
  s.homepage = %q{http://github.com/holden/hostelify}
15
15
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Hostelify", "--main", "README.markdown"]
16
16
  s.require_paths = ["lib"]
@@ -23,8 +23,14 @@ Gem::Specification.new do |s|
23
23
  s.specification_version = 3
24
24
 
25
25
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
26
+ s.add_runtime_dependency(%q<hpricot>, [">= 0"])
27
+ s.add_runtime_dependency(%q<mechanize>, [">= 0"])
26
28
  else
29
+ s.add_dependency(%q<hpricot>, [">= 0"])
30
+ s.add_dependency(%q<mechanize>, [">= 0"])
27
31
  end
28
32
  else
33
+ s.add_dependency(%q<hpricot>, [">= 0"])
34
+ s.add_dependency(%q<mechanize>, [">= 0"])
29
35
  end
30
36
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 5
8
- - 3
9
- version: 0.5.3
8
+ - 4
9
+ version: 0.5.4
10
10
  platform: ruby
11
11
  authors:
12
12
  - Holden Thomas
@@ -16,8 +16,31 @@ cert_chain: []
16
16
 
17
17
  date: 2010-10-05 00:00:00 +02:00
18
18
  default_executable:
19
- dependencies: []
20
-
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: hpricot
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ segments:
28
+ - 0
29
+ version: "0"
30
+ type: :runtime
31
+ version_requirements: *id001
32
+ - !ruby/object:Gem::Dependency
33
+ name: mechanize
34
+ prerelease: false
35
+ requirement: &id002 !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ segments:
40
+ - 0
41
+ version: "0"
42
+ type: :runtime
43
+ version_requirements: *id002
21
44
  description: Simple Hostel Webscrapper.
22
45
  email: holden.thomas@gmail.com
23
46
  executables: []
@@ -37,6 +60,7 @@ files:
37
60
  - Manifest
38
61
  - README.markdown
39
62
  - Rakefile
63
+ - hostelify.gemspec
40
64
  - lib/hostelify.rb
41
65
  - lib/hostelify/gomio.rb
42
66
  - lib/hostelify/hostel.rb
@@ -50,7 +74,6 @@ files:
50
74
  - spec/helper.rb
51
75
  - spec/hw_find_by_hostel.spec
52
76
  - spec/hw_find_hostels.spec
53
- - hostelify.gemspec
54
77
  has_rdoc: true
55
78
  homepage: http://github.com/holden/hostelify
56
79
  licenses: []