mapfish 1.3.1 → 1.3.2
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/init.rb +1 -8
- data/lib/mapfish.rb +3 -1
- data/lib/mapfish_core_extensions/active_record/base.rb +6 -0
- data/lib/mapfish_core_extensions/array.rb +4 -0
- data/mapfish.gemspec +1 -1
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.3.
|
1
|
+
1.3.2
|
data/init.rb
CHANGED
@@ -1,8 +1 @@
|
|
1
|
-
require '
|
2
|
-
|
3
|
-
# Load CoreExtensions
|
4
|
-
Dir[File.join("#{File.dirname(__FILE__)}", 'lib', 'mapfish_core_extensions', '**', '*.rb')].each do |f|
|
5
|
-
extension_module = f.sub(/(.*)(mapfish_core_extensions.*)\.rb/,'\2').classify.constantize
|
6
|
-
base_module = f.sub(/(.*mapfish_core_extensions.)(.*)\.rb/,'\2').classify.constantize
|
7
|
-
base_module.class_eval { include extension_module }
|
8
|
-
end
|
1
|
+
require 'mapfish'
|
data/lib/mapfish.rb
CHANGED
data/mapfish.gemspec
CHANGED