dovadi-has_attributes_from 0.1.5 → 0.1.6
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/History.txt +4 -0
- data/README.textile +2 -2
- data/tasks/has_attributes_from.rake +1 -1
- metadata +1 -1
data/History.txt
CHANGED
data/README.textile
CHANGED
@@ -14,12 +14,12 @@ h2. Example:
|
|
14
14
|
create_table "child_details", :force => true do |t|
|
15
15
|
t.string "nickname"
|
16
16
|
t.string "allergy"
|
17
|
-
t.integer "
|
17
|
+
t.integer "child_id" :belongs_to :child
|
18
18
|
end
|
19
19
|
|
20
20
|
create_table "caretaker_details", :force => true do |t|
|
21
21
|
t.string "relation"
|
22
|
-
t.integer "caretaker_id"
|
22
|
+
t.integer "caretaker_id" #belongs_to :caretaker
|
23
23
|
end
|
24
24
|
|
25
25
|
create_table "people", :force => true do |t|
|
@@ -15,7 +15,7 @@ task :default => ['test:has_attributes_from']
|
|
15
15
|
namespace :has_attributes_from do
|
16
16
|
gem_spec = Gem::Specification.new do |gem_spec|
|
17
17
|
gem_spec.name = "has_attributes_from"
|
18
|
-
gem_spec.version = "0.1.
|
18
|
+
gem_spec.version = "0.1.6"
|
19
19
|
gem_spec.summary = "Merge the attributes from another ActiveRecord class to an individual STI subclass."
|
20
20
|
gem_spec.email = "frank.oxener@dovadi.com"
|
21
21
|
gem_spec.homepage = "http://github.com/dovadi/has_attributes_from"
|