plug 0.1.16 → 0.1.18
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 +5 -5
- data/README.md +1 -1
- data/app/controllers/plug/features_controller.rb +1 -1
- data/lib/plug/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 17245adbb4a40eb5803c13b66673dbe8dca1426ed1b9d383ed816462cc8aac16
|
4
|
+
data.tar.gz: 682146cc143bbcf9069645a84efa0bd504554412c1edef1e8ddc7ce1aee9ea79
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2dd54c48452701b88d5c9b27b660c13669e6be9c29ba299a1c529a31f0ddedf4889ec5c3f362bc590184bfe9c1d7a5107672798c8248d0ffd33a1b93108d672d
|
7
|
+
data.tar.gz: 2ce7133667279a12baa681b562c29b7709343cf35ea41a74dd3dfe709a374bb3ca6d7e691b3a47b39358288c9ea91a5cdf60eae10a05d2694bf26302995e4ff8
|
data/README.md
CHANGED
@@ -31,7 +31,7 @@ And run the install generator:
|
|
31
31
|
|
32
32
|
```bash
|
33
33
|
→ rails g plug:install
|
34
|
-
→ rails
|
34
|
+
→ rails plug:install:migrations
|
35
35
|
→ rake plug:install:migrations # For Rails <= 3.x
|
36
36
|
→ rails db:migrate # Newer version of Rails
|
37
37
|
→ rake db:migrate # Older version of Rails
|
@@ -79,7 +79,7 @@ module Plug
|
|
79
79
|
if Rails.version.to_i < 5
|
80
80
|
ActiveSupport::HashWithIndifferentAccess.new(params[:feature])
|
81
81
|
else
|
82
|
-
params.require(:feature).permit(:name, :description, :state)
|
82
|
+
params.require(:feature).permit(:name, :description, :state, :notice)
|
83
83
|
end
|
84
84
|
end
|
85
85
|
end
|
data/lib/plug/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: plug
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.18
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ben
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2020-05-14 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -281,8 +281,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
281
281
|
- !ruby/object:Gem::Version
|
282
282
|
version: '0'
|
283
283
|
requirements: []
|
284
|
-
|
285
|
-
rubygems_version: 2.5.1
|
284
|
+
rubygems_version: 3.0.3
|
286
285
|
signing_key:
|
287
286
|
specification_version: 4
|
288
287
|
summary: Rails engine that can plug/unplug features
|