rails_options 0.1.0 → 0.1.1
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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fb52afd115e1fd83470cbcc6debbe7e39a4d10e7d2124c57717cb125c5abc18a
|
4
|
+
data.tar.gz: a155ba4831af71189988d8ce3822587f4b7c8d8028e04759db431404358a1603
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c99be508ce6bc2490dd0cc6e69ea4590b0d1f1b47e2896a2b6c25a994ebd9ce6c36a8e14b4a8fb02be5e8d759a006c9c1a265befae7ca7090317481c31a2e882
|
7
|
+
data.tar.gz: cd711407f57ae2f0e2a8f1cf8e81707ed36ab7edf40044c815dc9ab45924d2726647d752b7a76585c6f35ec6129ac074a793ab7199541bda959785be026d1bc6
|
@@ -0,0 +1,11 @@
|
|
1
|
+
module RailsTaggable
|
2
|
+
class InstallGenerator < Rails::Generators::Base
|
3
|
+
source_root File.expand_path("templates", __dir__)
|
4
|
+
|
5
|
+
desc "Configure necessary files to use RailsOptions"
|
6
|
+
|
7
|
+
def create_migration
|
8
|
+
rake "rails_options:install:migrations"
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_options
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- afeiship
|
@@ -38,8 +38,7 @@ files:
|
|
38
38
|
- app/models/rails_options/option.rb
|
39
39
|
- config/routes.rb
|
40
40
|
- db/migrate/20220316133202_create_rails_options_options.rb
|
41
|
-
- lib/generators/install/
|
42
|
-
- lib/generators/install/install_generator.rb
|
41
|
+
- lib/generators/rails_options/install/install_generator.rb
|
43
42
|
- lib/rails_options.rb
|
44
43
|
- lib/rails_options/engine.rb
|
45
44
|
- lib/rails_options/version.rb
|