direct_address 0.0.6 → 0.0.7

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/Rakefile CHANGED
@@ -11,6 +11,7 @@ begin
11
11
  gem.homepage = "http://github.com/mnelson/direct_address"
12
12
  gem.authors = ["Mike Nelson"]
13
13
  gem.add_development_dependency "rspec", ">= 1.2.9"
14
+ gem.add_development_dependency "hpricot"
14
15
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
15
16
  end
16
17
  Jeweler::GemcutterTasks.new
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.6
1
+ 0.0.7
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{direct_address}
8
- s.version = "0.0.6"
8
+ s.version = "0.0.7"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Mike Nelson"]
@@ -65,11 +65,14 @@ Gem::Specification.new do |s|
65
65
 
66
66
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
67
67
  s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
68
+ s.add_development_dependency(%q<hpricot>, [">= 0"])
68
69
  else
69
70
  s.add_dependency(%q<rspec>, [">= 1.2.9"])
71
+ s.add_dependency(%q<hpricot>, [">= 0"])
70
72
  end
71
73
  else
72
74
  s.add_dependency(%q<rspec>, [">= 1.2.9"])
75
+ s.add_dependency(%q<hpricot>, [">= 0"])
73
76
  end
74
77
  end
75
78
 
@@ -6,7 +6,7 @@ begin
6
6
  task :seed do
7
7
  require File.join(File.dirname(__FILE__),'..','..','config','boot')
8
8
  Rails::Initializer.run do |config|
9
- config.gem 'direct_address'
9
+ config.gem 'direct_address', :version => '>=0.0.7'
10
10
  end
11
11
  Geoname.retrieve_to_db
12
12
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: direct_address
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Nelson
@@ -22,6 +22,16 @@ dependencies:
22
22
  - !ruby/object:Gem::Version
23
23
  version: 1.2.9
24
24
  version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: hpricot
27
+ type: :development
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: "0"
34
+ version:
25
35
  description: Direct Address provides a rails app with simple address features. This is a streamlined implementation of address functionality. Direct Address provides you with address, country, and region classes. It also provides a generator which generates the necessary javascript and rake tasks to implement properly. You'll also get form helpers to easily implement Direct Address in your views. A rake task is provided that allows up to date country and region information to be downloaded from geoname.org.
26
36
  email: mdnelson30@gmail.com
27
37
  executables: []