CITIEsForRAILS 0.0.4 → 0.0.5
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/CITIEsForRAILS.gemspec +4 -4
- data/Rakefile +2 -2
- data/lib/citiesforrails/acts_as_cities.rb +4 -4
- metadata +5 -5
data/CITIEsForRAILS.gemspec
CHANGED
@@ -2,12 +2,12 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{CITIEsForRAILS}
|
5
|
-
s.version = "0.0.
|
5
|
+
s.version = "0.0.5"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Laurent Buffat & Pierre-Emmanuel JOUVE"]
|
9
|
-
s.date = %q{2011-
|
10
|
-
s.description = %q{CITIEsForRAILS (Class Inheritance & Table
|
9
|
+
s.date = %q{2011-04-20}
|
10
|
+
s.description = %q{CITIEsForRAILS (Class Inheritance & Table Inheritance Embeddings For RAILS) is a solution that extends Single/Multiple/Class Table Inheritance. This solution is based on classical Ruby class inheritance, single table inheritance as well as DB views.
|
11
11
|
|
12
12
|
|
13
13
|
For Full Information GO TO : http://altrabio.github.com/CITIEsForRAILS/}
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
|
|
19
19
|
s.require_paths = ["lib"]
|
20
20
|
s.rubyforge_project = %q{citiesforrails}
|
21
21
|
s.rubygems_version = %q{1.3.7}
|
22
|
-
s.summary = %q{CITIEsForRAILS (Class Inheritance & Table
|
22
|
+
s.summary = %q{CITIEsForRAILS (Class Inheritance & Table Inheritance Embeddings For RAILS) is a solution that extends Single/Multiple/Class Table Inheritance. This solution is based on classical Ruby class inheritance, single table inheritance as well as DB views. For Full Information GO TO : http://altrabio.github.com/CITIEsForRAILS/}
|
23
23
|
|
24
24
|
if s.respond_to? :specification_version then
|
25
25
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
data/Rakefile
CHANGED
@@ -2,8 +2,8 @@ require 'rubygems'
|
|
2
2
|
require 'rake'
|
3
3
|
require 'echoe'
|
4
4
|
|
5
|
-
Echoe.new('CITIEsForRAILS', '0.0.
|
6
|
-
p.description = "CITIEsForRAILS (Class Inheritance & Table
|
5
|
+
Echoe.new('CITIEsForRAILS', '0.0.5') do |p|
|
6
|
+
p.description = "CITIEsForRAILS (Class Inheritance & Table Inheritance Embeddings For RAILS) is a solution that extends Single/Multiple/Class Table Inheritance. This solution is based on classical Ruby class inheritance, single table inheritance as well as DB views.
|
7
7
|
|
8
8
|
|
9
9
|
For Full Information GO TO : http://altrabio.github.com/CITIEsForRAILS/"
|
@@ -164,7 +164,7 @@ module Cities
|
|
164
164
|
end
|
165
165
|
|
166
166
|
if(herited_saved==false)
|
167
|
-
|
167
|
+
puts('please contact us') # que faire si herited_saved vaut false ? A VOIR
|
168
168
|
end
|
169
169
|
|
170
170
|
part_of_saved=true
|
@@ -178,7 +178,7 @@ module Cities
|
|
178
178
|
|
179
179
|
part_of_saved = part_of.save
|
180
180
|
if(part_of_saved==false)
|
181
|
-
|
181
|
+
puts('please contact us...') # que faire si herited_saved vaut false ? A VOIR
|
182
182
|
end
|
183
183
|
end
|
184
184
|
|
@@ -215,7 +215,7 @@ module Cities
|
|
215
215
|
end
|
216
216
|
|
217
217
|
if(herited_saved==false)
|
218
|
-
|
218
|
+
puts('please contact altrabio use the following mail : altrabio...altrabio.com') # que faire si herited_saved vaut false ? A VOIR
|
219
219
|
end
|
220
220
|
|
221
221
|
part_of_saved=true
|
@@ -229,7 +229,7 @@ module Cities
|
|
229
229
|
|
230
230
|
part_of_saved = part_of.save
|
231
231
|
if(part_of_saved==false)
|
232
|
-
|
232
|
+
puts('please contact altrabio use the following mail : altrabio...altrabio.com') # que faire si herited_saved vaut false ? A VOIR
|
233
233
|
end
|
234
234
|
end
|
235
235
|
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 0.0.
|
8
|
+
- 5
|
9
|
+
version: 0.0.5
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Laurent Buffat & Pierre-Emmanuel JOUVE
|
@@ -14,12 +14,12 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2011-
|
17
|
+
date: 2011-04-20 00:00:00 +02:00
|
18
18
|
default_executable:
|
19
19
|
dependencies: []
|
20
20
|
|
21
21
|
description: |-
|
22
|
-
CITIEsForRAILS (Class Inheritance & Table
|
22
|
+
CITIEsForRAILS (Class Inheritance & Table Inheritance Embeddings For RAILS) is a solution that extends Single/Multiple/Class Table Inheritance. This solution is based on classical Ruby class inheritance, single table inheritance as well as DB views.
|
23
23
|
|
24
24
|
|
25
25
|
For Full Information GO TO : http://altrabio.github.com/CITIEsForRAILS/
|
@@ -76,6 +76,6 @@ rubyforge_project: citiesforrails
|
|
76
76
|
rubygems_version: 1.3.7
|
77
77
|
signing_key:
|
78
78
|
specification_version: 3
|
79
|
-
summary: "CITIEsForRAILS (Class Inheritance & Table
|
79
|
+
summary: "CITIEsForRAILS (Class Inheritance & Table Inheritance Embeddings For RAILS) is a solution that extends Single/Multiple/Class Table Inheritance. This solution is based on classical Ruby class inheritance, single table inheritance as well as DB views. For Full Information GO TO : http://altrabio.github.com/CITIEsForRAILS/"
|
80
80
|
test_files: []
|
81
81
|
|