welike-geography 0.0.6 → 0.0.8

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
@@ -7,10 +7,10 @@ begin
7
7
  require 'jeweler'
8
8
  Jeweler::Tasks.new do |gemspec|
9
9
  gemspec.name = "geography"
10
- gemspec.summary = "Commonly needed geography classes, migrations, and helpers"
10
+ gemspec.summary = "Commonly needed geography classes, migrations, helpers, and data."
11
11
  gemspec.email = "kevin@welikeinc.com"
12
12
  gemspec.homepage = "http://github.com/welike/geography"
13
- gemspec.description = "TODO"
13
+ gemspec.description = "Commonly needed geography classes, migrations, helpers, and data."
14
14
  gemspec.authors = ["Kevin Elliott"]
15
15
  end
16
16
  rescue LoadError
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.6
1
+ 0.0.8
@@ -1 +1,2 @@
1
- require 'lib/geography/tasks/geography_tasks.rake'
1
+ $VERBOSE = nil
2
+ Dir["#{Gem.searcher.find('geography').full_gem_path}/lib/geography/tasks/*.rake"].each { |ext| load ext }
@@ -5,12 +5,12 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{geography}
8
- s.version = "0.0.6"
8
+ s.version = "0.0.8"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Kevin Elliott"]
12
12
  s.date = %q{2009-09-15}
13
- s.description = %q{TODO}
13
+ s.description = %q{Commonly needed geography classes, migrations, helpers, and data.}
14
14
  s.email = %q{kevin@welikeinc.com}
15
15
  s.extra_rdoc_files = [
16
16
  "README",
@@ -52,7 +52,7 @@ Gem::Specification.new do |s|
52
52
  s.rdoc_options = ["--charset=UTF-8"]
53
53
  s.require_paths = ["lib"]
54
54
  s.rubygems_version = %q{1.3.5}
55
- s.summary = %q{Commonly needed geography classes, migrations, and helpers}
55
+ s.summary = %q{Commonly needed geography classes, migrations, helpers, and data.}
56
56
  s.test_files = [
57
57
  "test/geography_test.rb",
58
58
  "test/test_helper.rb"
@@ -21,6 +21,11 @@ namespace :geo do
21
21
  puts "========================="
22
22
  puts "Continents: #{Continent.count}"
23
23
  puts "Countries: #{Country.count}"
24
+ puts "States / SubCountries: 0"
25
+ puts "Regions: 0"
26
+ puts "Counties: 0"
27
+ puts "Cities: 0"
28
+ puts "Postal Codes: 0"
24
29
  puts "========================="
25
30
  end
26
31
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: welike-geography
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Elliott
@@ -13,7 +13,7 @@ date: 2009-09-15 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
16
- description: TODO
16
+ description: Commonly needed geography classes, migrations, helpers, and data.
17
17
  email: kevin@welikeinc.com
18
18
  executables: []
19
19
 
@@ -79,7 +79,7 @@ rubyforge_project:
79
79
  rubygems_version: 1.3.5
80
80
  signing_key:
81
81
  specification_version: 3
82
- summary: Commonly needed geography classes, migrations, and helpers
82
+ summary: Commonly needed geography classes, migrations, helpers, and data.
83
83
  test_files:
84
84
  - test/geography_test.rb
85
85
  - test/test_helper.rb