legacy_migrations 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.0
1
+ 0.3.1
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{legacy_migrations}
8
- s.version = "0.3.0"
8
+ s.version = "0.3.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Bernie Telles"]
@@ -25,14 +25,15 @@ module LegacyMigrations
25
25
  # that is retrievable in other transformations
26
26
  #
27
27
  # _Example_
28
+ # <tt>
29
+ # transfer_from Mammal, :to => Species, :store_as => 'new_animal' do
30
+ # match_same_name_attributes
31
+ # end
28
32
  #
29
- # transfer_from Mammal, :to => Species, :store_as => 'new_animal' do
30
- # match_same_name_attributes
31
- # end
32
- #
33
- # transfer_from Person, :to => Animal do
34
- # stored 'new_animal', :to => :species
35
- # end
33
+ # transfer_from Person, :to => Animal do
34
+ # stored 'new_animal', :to => :species
35
+ # end
36
+ # </tt>
36
37
  #
37
38
  def transfer_from(from_table, *args, &block)
38
39
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 3
8
- - 0
9
- version: 0.3.0
8
+ - 1
9
+ version: 0.3.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Bernie Telles