Commit 59edcdd45af68020abade5faae1b27034d6bd8eb
1 parent
a66e4014
Exists in
master
and in
29 other branches
ActionItem261: fixed some dependencies on the environment
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@1652 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
2 changed files
with
2 additions
and
1 deletions
Show diff stats
vendor/plugins/geokit/init.rb
... | ... | @@ -5,6 +5,7 @@ require 'geo_kit/defaults' |
5 | 5 | require 'geo_kit/mappable' |
6 | 6 | require 'geo_kit/acts_as_mappable' |
7 | 7 | require 'geo_kit/ip_geocode_lookup' |
8 | +require 'geo_kit/sqlite_extension' | |
8 | 9 | |
9 | 10 | # Automatically mix in distance finder support into ActiveRecord classes. |
10 | 11 | ActiveRecord::Base.send :include, GeoKit::ActsAsMappable | ... | ... |
vendor/plugins/geokit/test/test_helper.rb
... | ... | @@ -17,4 +17,4 @@ load(File.join(plugin_test_dir, 'schema.rb')) |
17 | 17 | # Load fixtures from the plugin |
18 | 18 | Test::Unit::TestCase.fixture_path = File.join(plugin_test_dir, 'fixtures/') |
19 | 19 | |
20 | -require File.join(plugin_test_dir, '../../../../lib/sqlite_extension') | |
20 | +require File.join(plugin_test_dir, '..', 'lib', 'geo_kit', 'sqlite_extension') | ... | ... |