session_gem 0.1.9 → 0.1.11
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cd773db8e93cc1172359caf9e8b48d9a6b54596015ee9e9384a8e125c6c51d3f
|
4
|
+
data.tar.gz: bb77cfffbc15f8b33e7054eef5d9b2afdc31555d7c978248b6d1c34c4537dbfa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa642582afa5d2222e78ec4ae40e6d1b6e689085f3df4239e30d67c6e3d55fd10640ce1465ededdf51c526a43f583b5ec873225b20061037089ecb142d848a89
|
7
|
+
data.tar.gz: 35bdc453ababd094ff7bf02d8a651a5720a8ad3b7647ae9fbac38b57d6507c5dbca03337eb4a09c15fc87af6b8e228f63a1817d508cf17116fbea424a804ba1b
|
@@ -3,10 +3,10 @@ module SessionGem
|
|
3
3
|
module Generators
|
4
4
|
class SessionGemMigrationGenerator < Rails::Generators::Base
|
5
5
|
include Rails::Generators::Migration
|
6
|
-
source_root File.expand_path('templates', __dir__)
|
6
|
+
source_root File.expand_path('lib/generators/templates', __dir__)
|
7
7
|
|
8
8
|
def create_migration_file
|
9
|
-
migration_template 'migration.rb', 'db/migrate/
|
9
|
+
migration_template 'migration.rb', 'db/migrate/session_gem_migration.rb'
|
10
10
|
end
|
11
11
|
end
|
12
12
|
end
|
data/lib/session_gem/version.rb
CHANGED