earth 0.0.22 → 0.0.23

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile.lock ADDED
@@ -0,0 +1,125 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ GData (0.0.4)
5
+ builder (>= 2.1.2)
6
+ hoe (>= 1.2.1)
7
+ activemodel (3.0.0.rc)
8
+ activesupport (= 3.0.0.rc)
9
+ builder (~> 2.1.2)
10
+ i18n (~> 0.4.1)
11
+ activerecord (3.0.0.rc)
12
+ activemodel (= 3.0.0.rc)
13
+ activesupport (= 3.0.0.rc)
14
+ arel (~> 0.4.0)
15
+ tzinfo (~> 0.3.22)
16
+ activesupport (3.0.0.rc)
17
+ andand (1.3.1)
18
+ arel (0.4.0)
19
+ activesupport (>= 3.0.0.beta)
20
+ blockenspiel (0.3.2)
21
+ builder (2.1.2)
22
+ cohort_scope (0.0.6)
23
+ activerecord (>= 3.0.0.beta4)
24
+ activesupport (>= 3.0.0.beta4)
25
+ conversions (1.4.5)
26
+ activesupport (>= 2.3.4)
27
+ data_miner (0.5.2)
28
+ activerecord (>= 2.3.4)
29
+ activesupport (>= 2.3.4)
30
+ andand (>= 1.3.1)
31
+ blockenspiel (= 0.3.2)
32
+ conversions (>= 1.4.4)
33
+ errata (>= 0.2.1)
34
+ escape (>= 0.0.4)
35
+ log4r (>= 1.1.7)
36
+ remote_table (>= 0.2.27)
37
+ taps (= 0.3.11)
38
+ diff-lcs (1.1.2)
39
+ errata (0.2.3)
40
+ activesupport (>= 2.3.4)
41
+ remote_table (>= 0.2.20)
42
+ escape (0.0.4)
43
+ falls_back_on (0.0.2)
44
+ activerecord
45
+ fastercsv (1.5.3)
46
+ gemcutter (0.6.1)
47
+ geokit (1.5.0)
48
+ git (1.2.5)
49
+ hoe (2.6.1)
50
+ rake (>= 0.8.7)
51
+ rubyforge (>= 2.0.4)
52
+ hpricot (0.8.2)
53
+ i18n (0.4.1)
54
+ jeweler (1.4.0)
55
+ gemcutter (>= 0.1.0)
56
+ git (>= 1.2.5)
57
+ rubyforge (>= 2.0.0)
58
+ json_pure (1.4.3)
59
+ libxml-ruby (1.1.4)
60
+ log4r (1.1.8)
61
+ mime-types (1.16)
62
+ nokogiri (1.4.3.1)
63
+ rack (1.2.1)
64
+ rake (0.8.7)
65
+ rcov (0.9.8)
66
+ rdoc (2.5.9)
67
+ remote_table (0.2.27)
68
+ activesupport (>= 2.3.4)
69
+ escape (>= 0.0.4)
70
+ fastercsv (>= 1.5.0)
71
+ nokogiri (>= 1.4.1)
72
+ roo (= 1.3.11)
73
+ slither (>= 0.99.3)
74
+ rest-client (1.4.2)
75
+ mime-types (>= 1.16)
76
+ roo (1.3.11)
77
+ GData (>= 0.0.4)
78
+ hpricot (>= 0.6)
79
+ libxml-ruby (>= 1.1.3)
80
+ rubyzip (>= 0.9.1)
81
+ spreadsheet (>= 0.6.4)
82
+ rspec (2.0.0.beta.17)
83
+ rspec-core (= 2.0.0.beta.17)
84
+ rspec-expectations (= 2.0.0.beta.17)
85
+ rspec-mocks (= 2.0.0.beta.17)
86
+ rspec-core (2.0.0.beta.17)
87
+ rspec-expectations (2.0.0.beta.17)
88
+ diff-lcs (>= 1.1.2)
89
+ rspec-mocks (2.0.0.beta.17)
90
+ ruby-ole (1.2.10.1)
91
+ rubyforge (2.0.4)
92
+ json_pure (>= 1.1.7)
93
+ rubyzip (0.9.4)
94
+ sequel (3.13.0)
95
+ sinatra (1.0)
96
+ rack (>= 1.0)
97
+ slither (0.99.3)
98
+ spreadsheet (0.6.4.1)
99
+ ruby-ole
100
+ sqlite3-ruby (1.3.0)
101
+ taps (0.3.11)
102
+ json_pure (>= 1.2.0, < 1.5.0)
103
+ rack (>= 1.0.1)
104
+ rest-client (~> 1.4.0)
105
+ sequel (~> 3.13.0)
106
+ sinatra (~> 1.0.0)
107
+ sqlite3-ruby (~> 1.2)
108
+ tzinfo (0.3.22)
109
+
110
+ PLATFORMS
111
+ ruby
112
+
113
+ DEPENDENCIES
114
+ activerecord (>= 3.0.0.beta4)
115
+ cohort_scope (= 0.0.6)
116
+ conversions (= 1.4.5)
117
+ data_miner (= 0.5.2)
118
+ falls_back_on (= 0.0.2)
119
+ geokit (= 1.5.0)
120
+ jeweler
121
+ rake
122
+ rcov
123
+ rdoc
124
+ rspec (= 2.0.0.beta.17)
125
+ sqlite3-ruby (= 1.3.0)
@@ -1,6 +1,8 @@
1
1
  class MerchantCategory < ActiveRecord::Base
2
2
  set_primary_key :mcc
3
3
 
4
+ alias :description, :name
5
+
4
6
  has_many :merchant_categories_industries, :foreign_key => 'mcc', :class_name => 'MerchantCategoriesIndustries'
5
7
  has_many :industries, :through => :merchant_categories_industries
6
8
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: earth
3
3
  version: !ruby/object:Gem::Version
4
- hash: 51
4
+ hash: 49
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 22
10
- version: 0.0.22
9
+ - 23
10
+ version: 0.0.23
11
11
  platform: ruby
12
12
  authors:
13
13
  - Seamus Abshere
@@ -28,7 +28,7 @@ dependencies:
28
28
  requirements:
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- hash: 299253624
31
+ hash: -1848230024
32
32
  segments:
33
33
  - 3
34
34
  - 0
@@ -217,15 +217,8 @@ extra_rdoc_files:
217
217
  - LICENSE
218
218
  - README.markdown
219
219
  files:
220
- - .document
221
- - .gitignore
222
- - Gemfile
223
220
  - LICENSE
224
221
  - README.markdown
225
- - Rakefile
226
- - VERSION
227
- - dot.rvmrc
228
- - earth.gemspec
229
222
  - lib/earth.rb
230
223
  - lib/earth/air.rb
231
224
  - lib/earth/air/aircraft.rb
@@ -361,8 +354,6 @@ files:
361
354
  - lib/earth/residence/residential_energy_consumption_survey_response.rb
362
355
  - lib/earth/residence/residential_energy_consumption_survey_response/data_miner.rb
363
356
  - lib/earth/schema.rb
364
- - spec/lib/earth_spec.rb
365
- - spec/spec_helper.rb
366
357
  - vendor/geokit-rails/CHANGELOG.rdoc
367
358
  - vendor/geokit-rails/MIT-LICENSE
368
359
  - vendor/geokit-rails/README.markdown
@@ -405,6 +396,10 @@ files:
405
396
  - vendor/geokit-rails/test/schema.rb
406
397
  - vendor/geokit-rails/test/tasks.rake
407
398
  - vendor/geokit-rails/test/test_helper.rb
399
+ - spec/lib/earth_spec.rb
400
+ - spec/spec_helper.rb
401
+ - Gemfile
402
+ - Gemfile.lock
408
403
  has_rdoc: true
409
404
  homepage: http://github.com/brighterplanet/earth
410
405
  licenses: []
@@ -442,3 +437,5 @@ summary: Land, sky, and sea
442
437
  test_files:
443
438
  - spec/lib/earth_spec.rb
444
439
  - spec/spec_helper.rb
440
+ - Gemfile
441
+ - Gemfile.lock
data/.document DELETED
@@ -1,5 +0,0 @@
1
- README.rdoc
2
- lib/**/*.rb
3
- bin/*
4
- features/**/*.feature
5
- LICENSE
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
- doc
21
-
22
- ## PROJECT::SPECIFIC
data/Rakefile DELETED
@@ -1,65 +0,0 @@
1
- require 'rubygems'
2
- require 'rake/testtask'
3
- require 'rake/rdoctask'
4
- require 'jeweler'
5
- if ENV['BUNDLE'] == 'true'
6
- begin
7
- require 'bundler'
8
- Bundler.setup
9
- rescue LoadError
10
- puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
11
- end
12
- end
13
-
14
- Jeweler::Tasks.new do |gem|
15
- gem.name = "earth"
16
- gem.summary = %Q{Land, sky, and sea}
17
- gem.description = %Q{An earth-simulation environment with ActiveRecord models and data}
18
- gem.email = 'andy@rossmeissl.net'
19
- gem.homepage = 'http://github.com/brighterplanet/earth'
20
- gem.authors = ['Seamus Abshere', 'Derek Kastner', "Andy Rossmeissl"]
21
- gem.add_dependency 'activerecord', '>=3.0.0.beta4'
22
- gem.add_dependency 'data_miner', '>=0.5.2' unless ENV['LOCAL_DATA_MINER']
23
- gem.add_dependency 'falls_back_on', '>=0.0.2'
24
- gem.add_dependency 'geokit', '>=1.5.0'
25
- gem.add_dependency 'cohort_scope', '>=0.0.6'
26
- gem.add_dependency 'conversions', '>=1.4.5'
27
- gem.add_development_dependency 'rspec', '>=2.0.0.beta.17'
28
- gem.add_development_dependency 'rake'
29
- gem.add_development_dependency 'jeweler'
30
- gem.add_development_dependency 'rcov'
31
- gem.add_development_dependency 'rdoc'
32
- gem.add_development_dependency 'sqlite3-ruby', '>=1.3.0'
33
- end
34
- Jeweler::GemcutterTasks.new
35
-
36
- Rake::TestTask.new(:test) do |test|
37
- test.libs << 'lib' << 'test'
38
- test.pattern = 'test/**/test_*.rb'
39
- test.verbose = true
40
- end
41
-
42
- begin
43
- require 'rcov/rcovtask'
44
- Rcov::RcovTask.new do |test|
45
- test.libs << 'test'
46
- test.pattern = 'test/**/test_*.rb'
47
- test.verbose = true
48
- end
49
- rescue LoadError
50
- task :rcov do
51
- abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
52
- end
53
- end
54
-
55
- task :test => :check_dependencies
56
-
57
- task :default => :test
58
-
59
- Rake::RDocTask.new do |rdoc|
60
- version = File.exist?('VERSION') ? File.read('VERSION') : ""
61
- rdoc.rdoc_dir = 'rdoc'
62
- rdoc.title = "earth #{version}"
63
- rdoc.rdoc_files.include('README*')
64
- rdoc.rdoc_files.include('lib/**/*.rb')
65
- end
data/VERSION DELETED
@@ -1 +0,0 @@
1
- 0.0.22
data/dot.rvmrc DELETED
@@ -1,8 +0,0 @@
1
- rvm 1.8.7
2
- if rvm gemset list | grep earth
3
- then
4
- rvm 1.8.7@earth
5
- else
6
- rvm gemset create earth
7
- rvm gemset use earth
8
- fi
data/earth.gemspec DELETED
@@ -1,265 +0,0 @@
1
- # Generated by jeweler
2
- # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
- # -*- encoding: utf-8 -*-
5
-
6
- Gem::Specification.new do |s|
7
- s.name = %q{earth}
8
- s.version = "0.0.22"
9
-
10
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["Seamus Abshere", "Derek Kastner", "Andy Rossmeissl"]
12
- s.date = %q{2010-08-15}
13
- s.description = %q{An earth-simulation environment with ActiveRecord models and data}
14
- s.email = %q{andy@rossmeissl.net}
15
- s.extra_rdoc_files = [
16
- "LICENSE",
17
- "README.markdown"
18
- ]
19
- s.files = [
20
- ".document",
21
- ".gitignore",
22
- "Gemfile",
23
- "LICENSE",
24
- "README.markdown",
25
- "Rakefile",
26
- "VERSION",
27
- "dot.rvmrc",
28
- "earth.gemspec",
29
- "lib/earth.rb",
30
- "lib/earth/air.rb",
31
- "lib/earth/air/aircraft.rb",
32
- "lib/earth/air/aircraft/data_miner.rb",
33
- "lib/earth/air/aircraft_class.rb",
34
- "lib/earth/air/aircraft_class/data_miner.rb",
35
- "lib/earth/air/aircraft_manufacturer.rb",
36
- "lib/earth/air/aircraft_manufacturer/data_miner.rb",
37
- "lib/earth/air/airline.rb",
38
- "lib/earth/air/airline/data_miner.rb",
39
- "lib/earth/air/airport.rb",
40
- "lib/earth/air/airport/data_miner.rb",
41
- "lib/earth/air/data_miner.rb",
42
- "lib/earth/air/flight_configuration.rb",
43
- "lib/earth/air/flight_configuration/data_miner.rb",
44
- "lib/earth/air/flight_distance_class.rb",
45
- "lib/earth/air/flight_distance_class/data_miner.rb",
46
- "lib/earth/air/flight_domesticity.rb",
47
- "lib/earth/air/flight_domesticity/data_miner.rb",
48
- "lib/earth/air/flight_fuel_type.rb",
49
- "lib/earth/air/flight_fuel_type/data_miner.rb",
50
- "lib/earth/air/flight_propulsion.rb",
51
- "lib/earth/air/flight_propulsion/data_miner.rb",
52
- "lib/earth/air/flight_seat_class.rb",
53
- "lib/earth/air/flight_seat_class/data_miner.rb",
54
- "lib/earth/air/flight_segment.rb",
55
- "lib/earth/air/flight_segment/data_miner.rb",
56
- "lib/earth/air/flight_service.rb",
57
- "lib/earth/air/flight_service/data_miner.rb",
58
- "lib/earth/all.rb",
59
- "lib/earth/automobile.rb",
60
- "lib/earth/automobile/automobile_fuel_type.rb",
61
- "lib/earth/automobile/automobile_fuel_type/data_miner.rb",
62
- "lib/earth/automobile/automobile_make.rb",
63
- "lib/earth/automobile/automobile_make/data_miner.rb",
64
- "lib/earth/automobile/automobile_make_fleet_year.rb",
65
- "lib/earth/automobile/automobile_make_fleet_year/data_miner.rb",
66
- "lib/earth/automobile/automobile_make_year.rb",
67
- "lib/earth/automobile/automobile_make_year/data_miner.rb",
68
- "lib/earth/automobile/automobile_model.rb",
69
- "lib/earth/automobile/automobile_model/data_miner.rb",
70
- "lib/earth/automobile/automobile_model_year.rb",
71
- "lib/earth/automobile/automobile_model_year/data_miner.rb",
72
- "lib/earth/automobile/automobile_size_class.rb",
73
- "lib/earth/automobile/automobile_size_class/data_miner.rb",
74
- "lib/earth/automobile/automobile_variant.rb",
75
- "lib/earth/automobile/automobile_variant/data_miner.rb",
76
- "lib/earth/automobile/data_miner.rb",
77
- "lib/earth/bus.rb",
78
- "lib/earth/bus/bus_class.rb",
79
- "lib/earth/bus/bus_class/data_miner.rb",
80
- "lib/earth/bus/data_miner.rb",
81
- "lib/earth/conversions_ext.rb",
82
- "lib/earth/data_miner.rb",
83
- "lib/earth/diet.rb",
84
- "lib/earth/diet/data_miner.rb",
85
- "lib/earth/diet/diet_class.rb",
86
- "lib/earth/diet/diet_class/data_miner.rb",
87
- "lib/earth/diet/food_group.rb",
88
- "lib/earth/diet/food_group/data_miner.rb",
89
- "lib/earth/fuel.rb",
90
- "lib/earth/fuel/data_miner.rb",
91
- "lib/earth/fuel/fuel_price.rb",
92
- "lib/earth/fuel/fuel_price/data_miner.rb",
93
- "lib/earth/fuel/fuel_type.rb",
94
- "lib/earth/fuel/fuel_type/data_miner.rb",
95
- "lib/earth/industry.rb",
96
- "lib/earth/industry/data_miner.rb",
97
- "lib/earth/industry/industries_product_lines.rb",
98
- "lib/earth/industry/industries_sectors.rb",
99
- "lib/earth/industry/industry.rb",
100
- "lib/earth/industry/industry/data_miner.rb",
101
- "lib/earth/industry/merchant.rb",
102
- "lib/earth/industry/merchant_categories_industries.rb",
103
- "lib/earth/industry/merchant_category.rb",
104
- "lib/earth/industry/product_line.rb",
105
- "lib/earth/industry/product_line/data_miner.rb",
106
- "lib/earth/industry/product_lines_sectors.rb",
107
- "lib/earth/industry/sector.rb",
108
- "lib/earth/inflectors.rb",
109
- "lib/earth/locality.rb",
110
- "lib/earth/locality/census_division.rb",
111
- "lib/earth/locality/census_division/data_miner.rb",
112
- "lib/earth/locality/census_region.rb",
113
- "lib/earth/locality/census_region/data_miner.rb",
114
- "lib/earth/locality/climate_division.rb",
115
- "lib/earth/locality/climate_division/data_miner.rb",
116
- "lib/earth/locality/country.rb",
117
- "lib/earth/locality/country/data_miner.rb",
118
- "lib/earth/locality/data_miner.rb",
119
- "lib/earth/locality/egrid_region.rb",
120
- "lib/earth/locality/egrid_region/data_miner.rb",
121
- "lib/earth/locality/egrid_subregion.rb",
122
- "lib/earth/locality/egrid_subregion/data_miner.rb",
123
- "lib/earth/locality/petroleum_administration_for_defense_district.rb",
124
- "lib/earth/locality/petroleum_administration_for_defense_district/data_miner.rb",
125
- "lib/earth/locality/state.rb",
126
- "lib/earth/locality/state/data_miner.rb",
127
- "lib/earth/locality/urbanity.rb",
128
- "lib/earth/locality/urbanity/data_miner.rb",
129
- "lib/earth/locality/zip_code.rb",
130
- "lib/earth/locality/zip_code/data_miner.rb",
131
- "lib/earth/pet.rb",
132
- "lib/earth/pet/breed.rb",
133
- "lib/earth/pet/breed/data_miner.rb",
134
- "lib/earth/pet/breed_gender.rb",
135
- "lib/earth/pet/breed_gender/data_miner.rb",
136
- "lib/earth/pet/data_miner.rb",
137
- "lib/earth/pet/gender.rb",
138
- "lib/earth/pet/gender/data_miner.rb",
139
- "lib/earth/pet/species.rb",
140
- "lib/earth/pet/species/data_miner.rb",
141
- "lib/earth/rail.rb",
142
- "lib/earth/rail/data_miner.rb",
143
- "lib/earth/rail/rail_class.rb",
144
- "lib/earth/rail/rail_class/data_miner.rb",
145
- "lib/earth/residence.rb",
146
- "lib/earth/residence/air_conditioner_use.rb",
147
- "lib/earth/residence/air_conditioner_use/data_miner.rb",
148
- "lib/earth/residence/clothes_machine_use.rb",
149
- "lib/earth/residence/clothes_machine_use/data_miner.rb",
150
- "lib/earth/residence/data_miner.rb",
151
- "lib/earth/residence/dishwasher_use.rb",
152
- "lib/earth/residence/dishwasher_use/data_miner.rb",
153
- "lib/earth/residence/residence_appliance.rb",
154
- "lib/earth/residence/residence_appliance/data_miner.rb",
155
- "lib/earth/residence/residence_class.rb",
156
- "lib/earth/residence/residence_class/data_miner.rb",
157
- "lib/earth/residence/residence_fuel_price.rb",
158
- "lib/earth/residence/residence_fuel_price/data_miner.rb",
159
- "lib/earth/residence/residence_fuel_type.rb",
160
- "lib/earth/residence/residence_fuel_type/data_miner.rb",
161
- "lib/earth/residence/residential_energy_consumption_survey_response.rb",
162
- "lib/earth/residence/residential_energy_consumption_survey_response/data_miner.rb",
163
- "lib/earth/schema.rb",
164
- "spec/lib/earth_spec.rb",
165
- "spec/spec_helper.rb",
166
- "vendor/geokit-rails/CHANGELOG.rdoc",
167
- "vendor/geokit-rails/MIT-LICENSE",
168
- "vendor/geokit-rails/README.markdown",
169
- "vendor/geokit-rails/Rakefile",
170
- "vendor/geokit-rails/about.yml",
171
- "vendor/geokit-rails/assets/api_keys_template",
172
- "vendor/geokit-rails/init.rb",
173
- "vendor/geokit-rails/install.rb",
174
- "vendor/geokit-rails/lib/geokit-rails.rb",
175
- "vendor/geokit-rails/lib/geokit-rails/acts_as_mappable.rb",
176
- "vendor/geokit-rails/lib/geokit-rails/adapters/abstract.rb",
177
- "vendor/geokit-rails/lib/geokit-rails/adapters/mysql.rb",
178
- "vendor/geokit-rails/lib/geokit-rails/adapters/postgresql.rb",
179
- "vendor/geokit-rails/lib/geokit-rails/adapters/sqlserver.rb",
180
- "vendor/geokit-rails/lib/geokit-rails/defaults.rb",
181
- "vendor/geokit-rails/lib/geokit-rails/geocoder_control.rb",
182
- "vendor/geokit-rails/lib/geokit-rails/ip_geocode_lookup.rb",
183
- "vendor/geokit-rails/test/acts_as_mappable_test.rb",
184
- "vendor/geokit-rails/test/boot.rb",
185
- "vendor/geokit-rails/test/database.yml",
186
- "vendor/geokit-rails/test/fixtures/companies.yml",
187
- "vendor/geokit-rails/test/fixtures/custom_locations.yml",
188
- "vendor/geokit-rails/test/fixtures/locations.yml",
189
- "vendor/geokit-rails/test/fixtures/mock_addresses.yml",
190
- "vendor/geokit-rails/test/fixtures/mock_families.yml",
191
- "vendor/geokit-rails/test/fixtures/mock_houses.yml",
192
- "vendor/geokit-rails/test/fixtures/mock_organizations.yml",
193
- "vendor/geokit-rails/test/fixtures/mock_people.yml",
194
- "vendor/geokit-rails/test/fixtures/stores.yml",
195
- "vendor/geokit-rails/test/ip_geocode_lookup_test.rb",
196
- "vendor/geokit-rails/test/models/company.rb",
197
- "vendor/geokit-rails/test/models/custom_location.rb",
198
- "vendor/geokit-rails/test/models/location.rb",
199
- "vendor/geokit-rails/test/models/mock_address.rb",
200
- "vendor/geokit-rails/test/models/mock_family.rb",
201
- "vendor/geokit-rails/test/models/mock_house.rb",
202
- "vendor/geokit-rails/test/models/mock_organization.rb",
203
- "vendor/geokit-rails/test/models/mock_person.rb",
204
- "vendor/geokit-rails/test/models/store.rb",
205
- "vendor/geokit-rails/test/schema.rb",
206
- "vendor/geokit-rails/test/tasks.rake",
207
- "vendor/geokit-rails/test/test_helper.rb"
208
- ]
209
- s.homepage = %q{http://github.com/brighterplanet/earth}
210
- s.rdoc_options = ["--charset=UTF-8"]
211
- s.require_paths = ["lib"]
212
- s.rubygems_version = %q{1.3.7}
213
- s.summary = %q{Land, sky, and sea}
214
- s.test_files = [
215
- "spec/lib/earth_spec.rb",
216
- "spec/spec_helper.rb"
217
- ]
218
-
219
- if s.respond_to? :specification_version then
220
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
221
- s.specification_version = 3
222
-
223
- if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
224
- s.add_runtime_dependency(%q<activerecord>, [">= 3.0.0.beta4"])
225
- s.add_runtime_dependency(%q<data_miner>, [">= 0.5.2"])
226
- s.add_runtime_dependency(%q<falls_back_on>, [">= 0.0.2"])
227
- s.add_runtime_dependency(%q<geokit>, [">= 1.5.0"])
228
- s.add_runtime_dependency(%q<cohort_scope>, [">= 0.0.6"])
229
- s.add_runtime_dependency(%q<conversions>, [">= 1.4.5"])
230
- s.add_development_dependency(%q<rspec>, [">= 2.0.0.beta.17"])
231
- s.add_development_dependency(%q<rake>, [">= 0"])
232
- s.add_development_dependency(%q<jeweler>, [">= 0"])
233
- s.add_development_dependency(%q<rcov>, [">= 0"])
234
- s.add_development_dependency(%q<rdoc>, [">= 0"])
235
- s.add_development_dependency(%q<sqlite3-ruby>, [">= 1.3.0"])
236
- else
237
- s.add_dependency(%q<activerecord>, [">= 3.0.0.beta4"])
238
- s.add_dependency(%q<data_miner>, [">= 0.5.2"])
239
- s.add_dependency(%q<falls_back_on>, [">= 0.0.2"])
240
- s.add_dependency(%q<geokit>, [">= 1.5.0"])
241
- s.add_dependency(%q<cohort_scope>, [">= 0.0.6"])
242
- s.add_dependency(%q<conversions>, [">= 1.4.5"])
243
- s.add_dependency(%q<rspec>, [">= 2.0.0.beta.17"])
244
- s.add_dependency(%q<rake>, [">= 0"])
245
- s.add_dependency(%q<jeweler>, [">= 0"])
246
- s.add_dependency(%q<rcov>, [">= 0"])
247
- s.add_dependency(%q<rdoc>, [">= 0"])
248
- s.add_dependency(%q<sqlite3-ruby>, [">= 1.3.0"])
249
- end
250
- else
251
- s.add_dependency(%q<activerecord>, [">= 3.0.0.beta4"])
252
- s.add_dependency(%q<data_miner>, [">= 0.5.2"])
253
- s.add_dependency(%q<falls_back_on>, [">= 0.0.2"])
254
- s.add_dependency(%q<geokit>, [">= 1.5.0"])
255
- s.add_dependency(%q<cohort_scope>, [">= 0.0.6"])
256
- s.add_dependency(%q<conversions>, [">= 1.4.5"])
257
- s.add_dependency(%q<rspec>, [">= 2.0.0.beta.17"])
258
- s.add_dependency(%q<rake>, [">= 0"])
259
- s.add_dependency(%q<jeweler>, [">= 0"])
260
- s.add_dependency(%q<rcov>, [">= 0"])
261
- s.add_dependency(%q<rdoc>, [">= 0"])
262
- s.add_dependency(%q<sqlite3-ruby>, [">= 1.3.0"])
263
- end
264
- end
265
-