conductor 0.2.13 → 0.2.15

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/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.13
1
+ 0.2.15
@@ -0,0 +1,9 @@
1
+ class ConductorMigrationGenerator < Rails::Generator::Base
2
+ require 'conductor'
3
+
4
+ def manifest
5
+ record do |m|
6
+ m.migration_template 'migration.rb', 'db/migrate', :migration_file_name => "conductor_migration"
7
+ end
8
+ end
9
+ end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 2
8
- - 13
9
- version: 0.2.13
8
+ - 15
9
+ version: 0.2.15
10
10
  platform: ruby
11
11
  authors:
12
12
  - Noctivity
@@ -32,8 +32,8 @@ files:
32
32
  - README.rdoc
33
33
  - Rakefile
34
34
  - VERSION
35
- - generators/cmig/cmig_generator.rb
36
- - generators/cmig/templates/migration.rb
35
+ - generators/conductor_migration/conductor_migration_generator.rb
36
+ - generators/conductor_migration/templates/migration.rb
37
37
  - init.rb
38
38
  - lib/conductor.rb
39
39
  - lib/conductor/experiment.rb
@@ -1,7 +0,0 @@
1
- class CmigGenerator < Rails::Generator::Base
2
- def manifest
3
- record do |m|
4
- m.migration_template 'conductor_migration.rb', 'db/migrate', :migration_file_name => "conductor_migration"
5
- end
6
- end
7
- end