bullet_train-scope_validator 1.6.18 → 1.6.19
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 +4 -4
- data/Gemfile +4 -0
- data/Gemfile.lock +9 -2
- data/bin/rails +14 -0
- data/lib/bullet_train/scope_validator/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0cc3ba45159802d709f50637f7f5944875aae2d108afd153c206a5ad01b85bfc
|
|
4
|
+
data.tar.gz: 03a1ff0b45ab9dbb8e174d6cdab6bdd796caa5099e49708299fc9e8cdaaa4919
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cf2f4613b93d0089848d792193eade1ea8ef00aeb8a6cb1efa9aa8d7da62895a6b390f33a41d28de8584b2e0d2ec539e4ee3efa9068ce837c3a8b21d20facb99
|
|
7
|
+
data.tar.gz: 4edf2dcbda83968a8330698b01079c17b366d632e2238717dc0096d9405d439d91e337903c39b531851e8820313fc614c071ef667128136607c9989517fe0b4e
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
bullet_train-scope_validator (1.6.
|
|
4
|
+
bullet_train-scope_validator (1.6.19)
|
|
5
5
|
rails
|
|
6
6
|
|
|
7
7
|
GEM
|
|
@@ -81,6 +81,7 @@ GEM
|
|
|
81
81
|
minitest (>= 5.1)
|
|
82
82
|
mutex_m
|
|
83
83
|
tzinfo (~> 2.0)
|
|
84
|
+
ansi (1.5.0)
|
|
84
85
|
ast (2.4.2)
|
|
85
86
|
base64 (0.2.0)
|
|
86
87
|
bigdecimal (3.1.4)
|
|
@@ -111,8 +112,13 @@ GEM
|
|
|
111
112
|
marcel (1.0.2)
|
|
112
113
|
mini_mime (1.1.5)
|
|
113
114
|
minitest (5.15.0)
|
|
115
|
+
minitest-reporters (1.6.1)
|
|
116
|
+
ansi
|
|
117
|
+
builder
|
|
118
|
+
minitest (>= 5.0)
|
|
119
|
+
ruby-progressbar
|
|
114
120
|
mutex_m (0.2.0)
|
|
115
|
-
net-imap (0.4.
|
|
121
|
+
net-imap (0.4.6)
|
|
116
122
|
date
|
|
117
123
|
net-protocol
|
|
118
124
|
net-pop (0.1.2)
|
|
@@ -217,6 +223,7 @@ PLATFORMS
|
|
|
217
223
|
DEPENDENCIES
|
|
218
224
|
bullet_train-scope_validator!
|
|
219
225
|
minitest (~> 5.0)
|
|
226
|
+
minitest-reporters
|
|
220
227
|
rake (~> 13.0)
|
|
221
228
|
standard (~> 1.3)
|
|
222
229
|
|
data/bin/rails
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# This command will automatically be run when you run "rails" with Rails gems
|
|
3
|
+
# installed from the root of your application.
|
|
4
|
+
|
|
5
|
+
ENGINE_ROOT = File.expand_path("..", __dir__)
|
|
6
|
+
ENGINE_PATH = File.expand_path("../lib/bullet_train/themes/light/engine", __dir__)
|
|
7
|
+
APP_PATH = File.expand_path("../test/dummy/config/application", __dir__)
|
|
8
|
+
|
|
9
|
+
# Set up gems listed in the Gemfile.
|
|
10
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
|
|
11
|
+
require "bundler/setup" if File.exist?(ENV["BUNDLE_GEMFILE"])
|
|
12
|
+
|
|
13
|
+
require "rails/all"
|
|
14
|
+
require "rails/engine/commands"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bullet_train-scope_validator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.
|
|
4
|
+
version: 1.6.19
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrew Culver
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-11-
|
|
11
|
+
date: 2023-11-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -40,6 +40,7 @@ files:
|
|
|
40
40
|
- README.md
|
|
41
41
|
- Rakefile
|
|
42
42
|
- bin/console
|
|
43
|
+
- bin/rails
|
|
43
44
|
- bin/setup
|
|
44
45
|
- lib/bullet_train/scope_validator.rb
|
|
45
46
|
- lib/bullet_train/scope_validator/version.rb
|