rake_migrations 1.0.2 → 1.0.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 98a51052b64ba4d945b862d44e21b89c130e54e8
4
- data.tar.gz: a6d9393c1dfb0a4d63677bf05f93476ba710ed08
3
+ metadata.gz: 292320d685c80045889ee0c2787b3495f8f546b6
4
+ data.tar.gz: b52392b99fba2a4c7c75ab5cd18c5fb57b51a3bf
5
5
  SHA512:
6
- metadata.gz: 7016a63a2a2ec21087b486e35c0f3d7ed70c5c4c50543400baa72a6807f0f6eb392ce3e3bfa0a0d3a3e88125e9de95484b1aa1e81c277e5da599a1236d3eb752
7
- data.tar.gz: b7e2775f68646c105f4e1d5011d3bc4e593c911b855afdaea05dfbfde343bf48eec41ed68a234ebe1e169ad61ba528cb45728cfce64981f9c921f3ac447cdfa9
6
+ metadata.gz: 5e8f8fb180f47e42e6a2cfa9c2f1e48b75c81b84a70c4d615966040364290d8472cbe78ed559be60c2ae376bae2a2747da5252f61661fbc53641302411e5b1d5
7
+ data.tar.gz: 88321a2b6a6f60ab400413ade1180df2c70669c283150abd3f9fd41bc986a3fa987bcb041fdbe04c6abdc94d913d4a414414e1a40bc4c1a67bee3d8599a146cb
data/README.md CHANGED
@@ -83,4 +83,6 @@ rake users:update_some_field
83
83
  ## Issues, suggestions and forks.
84
84
  Feel free to open issues, send suggestions and fork this repository.
85
85
 
86
+ This gem was developed during my work at [Samanage](http://www.samanage.com/).
87
+
86
88
  Thanks and Enjoy! :)
@@ -11,7 +11,6 @@ module RakeMigrations
11
11
  def create_migration_file
12
12
  migration_template "migration.rb", "db/migrate/create_rake_migrations_table.rb"
13
13
  template("rake_migrations_check.rb", "config/rake_migrations_check.rb")
14
- template("rake_migration.rb", "app/models/rake_migration.rb")
15
14
  write_to_post_merge_hook
16
15
  end
17
16
 
@@ -0,0 +1,2 @@
1
+ class RakeMigration < ::ActiveRecord::Base
2
+ end
@@ -1,2 +1,5 @@
1
+ require 'active_record'
2
+ require 'rake_migration'
3
+
1
4
  module RakeMigrations
2
5
  end
@@ -1,3 +1,3 @@
1
1
  module RakeMigrations
2
- VERSION = "1.0.2"
2
+ VERSION = "1.0.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rake_migrations
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eyal Eizenberg
@@ -51,11 +51,11 @@ files:
51
51
  - Rakefile
52
52
  - lib/rails/generators/rake_migrations/install_generator.rb
53
53
  - lib/rails/generators/rake_migrations/templates/migration.rb
54
- - lib/rails/generators/rake_migrations/templates/rake_migration.rb
55
54
  - lib/rails/generators/rake_migrations/templates/rake_migrations_check.rb
56
55
  - lib/rails/generators/task/USAGE
57
56
  - lib/rails/generators/task/task_generator.rb
58
57
  - lib/rails/generators/task/templates/task.rb
58
+ - lib/rake_migration.rb
59
59
  - lib/rake_migrations.rb
60
60
  - lib/rake_migrations/version.rb
61
61
  homepage: http://eyaleizenberg.blogspot.com/
@@ -1,2 +0,0 @@
1
- class RakeMigration < ActiveRecord::Base
2
- end