plug 0.1.24 → 0.1.26

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: b83146ab631927c0756e4f9e1db5224b731e7ff6f3cb34504cc52f687c0294de
4
- data.tar.gz: 8cb113cc3497c15054b62198c7fb8ab66583ace08b346481eac56e6d467b36eb
3
+ metadata.gz: 6e79894b3905c3ebed0b9ddb4965e59dd4d5663035f75e06b84f668109067278
4
+ data.tar.gz: ac714f67277fa02f6cbc8282ac52fe0a8c85b24e8d5379264c7ec6017a09a438
5
5
  SHA512:
6
- metadata.gz: 0a1fc2650f634afa48066f635f1c911248a684074243afdacb27a679191a7ad8d6330c8c479825b7a5cdfd59d70409430d4ea615ed426bf0475d48bfba88a3ea
7
- data.tar.gz: b7cc1b56cd7d2da25f23012f76ecf773b59366fdb37bb5614cb08b5e1391982e0e38d8abe33efee817c7b6b03a05b5e4d0a0e5ea55b039e1c39f7d781de267cf
6
+ metadata.gz: 914c66b1d4412d4ec3c0c35742ea19819d0d1579b1c7cb4d93bd97f5699a8ed367c84119f42d5c030f9f2e9c1779bad417be319d13f677601f8a96158307947c
7
+ data.tar.gz: d9ac92d1770105e5a841ced51775bb489c54085167589bcb953e552724979e8b8c345515927461493f1fbe51ff2e1b554b0c52f8036039e8d8492898804bef4b
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Plug [![Maintainability](https://api.codeclimate.com/v1/badges/6246b1cd8e42603c42f6/maintainability)](https://codeclimate.com/github/DigitalNZ/plug/maintainability)
1
+ # Plug [![Maintainability](https://api.codeclimate.com/v1/badges/6246b1cd8e42603c42f6/maintainability)](https://codeclimate.com/github/DigitalNZ/plug/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/6246b1cd8e42603c42f6/test_coverage)](https://codeclimate.com/github/DigitalNZ/plug/test_coverage)
2
2
 
3
3
  A Rails engine to turn on/off features (Feature flipper).
4
4
 
@@ -10,8 +10,6 @@
10
10
  // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
11
  // about supported directives.
12
12
  //
13
- //= require jquery
14
- //= require jquery_ujs
15
13
  //= require_tree .
16
14
 
17
15
  // Prevent drag and drop from the editor
data/lib/plug/engine.rb CHANGED
@@ -3,7 +3,6 @@
3
3
  # Require engine dependencies
4
4
  require 'haml-rails'
5
5
  require 'aasm'
6
- require 'jquery-rails'
7
6
 
8
7
  module Plug
9
8
  class Engine < ::Rails::Engine
data/lib/plug/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Plug
4
- VERSION = '0.1.24'
4
+ VERSION = '0.1.26'
5
5
  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.24
4
+ version: 0.1.26
5
5
  platform: ruby
6
6
  authors:
7
7
  - Boost
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-07-20 00:00:00.000000000 Z
12
+ date: 2023-09-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: aasm
@@ -53,20 +53,6 @@ dependencies:
53
53
  - - ">="
54
54
  - !ruby/object:Gem::Version
55
55
  version: '0'
56
- - !ruby/object:Gem::Dependency
57
- name: jquery-rails
58
- requirement: !ruby/object:Gem::Requirement
59
- requirements:
60
- - - ">="
61
- - !ruby/object:Gem::Version
62
- version: '0'
63
- type: :runtime
64
- prerelease: false
65
- version_requirements: !ruby/object:Gem::Requirement
66
- requirements:
67
- - - ">="
68
- - !ruby/object:Gem::Version
69
- version: '0'
70
56
  - !ruby/object:Gem::Dependency
71
57
  name: rails
72
58
  requirement: !ruby/object:Gem::Requirement
@@ -206,7 +192,6 @@ files:
206
192
  - app/assets/config/plug_manifest.js
207
193
  - app/assets/images/favicon.png
208
194
  - app/assets/javascripts/plug/application.js
209
- - app/assets/javascripts/plug/features.js
210
195
  - app/assets/javascripts/plug/trix-core.js
211
196
  - app/assets/stylesheets/plug/_settings.scss
212
197
  - app/assets/stylesheets/plug/application.scss
@@ -285,7 +270,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
285
270
  - !ruby/object:Gem::Version
286
271
  version: '0'
287
272
  requirements: []
288
- rubygems_version: 3.0.3
273
+ rubygems_version: 3.2.32
289
274
  signing_key:
290
275
  specification_version: 4
291
276
  summary: Rails engine that can plug/unplug features
@@ -1,2 +0,0 @@
1
- // Place all the behaviors and hooks related to the matching controller here.
2
- // All this logic will automatically be available in application.js.