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: d1c7771811b4a9f8c22885dcc91193bf7491caa718b3e124503b84fe6d7e4552
4
- data.tar.gz: b7d09859acc697fb912d735592d288055af7c4e922c0994a22ec2a08d3ef0678
3
+ metadata.gz: cd773db8e93cc1172359caf9e8b48d9a6b54596015ee9e9384a8e125c6c51d3f
4
+ data.tar.gz: bb77cfffbc15f8b33e7054eef5d9b2afdc31555d7c978248b6d1c34c4537dbfa
5
5
  SHA512:
6
- metadata.gz: b418908b5488f5744ce04fb341a9d0e7d028b76543c5e0965ccf1e9b6ddc2f880bc7ee4454bd02be1d64404a51653d66d3aee63b65bc60a7ecb5d0ef65cedbf9
7
- data.tar.gz: ee5ea42f631ad682fb7134dce2782a6c01b5985574e757d121f5b26303bcd80aa19336f1f250c60f577cfb9a18ec45f6628b02a1c059a2b469c850fae5b4a76c
6
+ metadata.gz: fa642582afa5d2222e78ec4ae40e6d1b6e689085f3df4239e30d67c6e3d55fd10640ce1465ededdf51c526a43f583b5ec873225b20061037089ecb142d848a89
7
+ data.tar.gz: 35bdc453ababd094ff7bf02d8a651a5720a8ad3b7647ae9fbac38b57d6507c5dbca03337eb4a09c15fc87af6b8e228f63a1817d508cf17116fbea424a804ba1b
@@ -4,7 +4,7 @@ module SessionGem
4
4
  module Generators
5
5
  class SessionGemGenerator < Rails::Generators::Base
6
6
  namespace 'session_gem'
7
- source_root File.expand_path('db/migrate/templates', __dir__)
7
+ source_root File.expand_path('templates', __dir__)
8
8
  end
9
9
  end
10
10
  end
@@ -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/session_gem/session_gem_migration.rb'
9
+ migration_template 'migration.rb', 'db/migrate/session_gem_migration.rb'
10
10
  end
11
11
  end
12
12
  end
@@ -1,3 +1,3 @@
1
1
  module SessionGem
2
- VERSION = "0.1.9"
2
+ VERSION = "0.1.11"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: session_gem
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.1.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - ShravanEssence