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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 4b0a9e497318907102cd0f8f45aa3c898a449637
4
- data.tar.gz: b7d5901be42c8e4fe4f314eb7c93da2619de94ae
2
+ SHA256:
3
+ metadata.gz: 17245adbb4a40eb5803c13b66673dbe8dca1426ed1b9d383ed816462cc8aac16
4
+ data.tar.gz: 682146cc143bbcf9069645a84efa0bd504554412c1edef1e8ddc7ce1aee9ea79
5
5
  SHA512:
6
- metadata.gz: 089488dc310a82f487f8b779b9e6c5e158831e589f03e57b39fc60e8ac088f7a756245026b0a2d2e94f58d5a3d8dfd05aad136da9ef0d93c7c3736ed4718f3c5
7
- data.tar.gz: 86f1a3d14503f2f528670d8f217d2a727066bc5d64a0d8a523e424a90d421970ecc039ca96be03820568bfb36f8d422e4dbc67b14eafdea55c9ecd24741c9321
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 g plug:install:migrations
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
@@ -1,3 +1,3 @@
1
1
  module Plug
2
- VERSION = '0.1.16'
2
+ VERSION = '0.1.18'
3
3
  end
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.16
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: 2018-04-30 00:00:00.000000000 Z
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
- rubyforge_project:
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