jefferies_tube 1.7.4 → 1.7.6
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/CHANGELOG.md +6 -0
- data/lib/jefferies_tube/railtie.rb +2 -3
- data/lib/jefferies_tube/version.rb +1 -1
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: da738286eb305798c1cb9774d3bd335091eb63f258b0e74b89675c076efe6ef1
|
4
|
+
data.tar.gz: 8296500372ffc7c9428f81858678f64d83f79c3d53ac78d0d00792335a21b406
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5ebeb72e5cf8e9069b01fd65ace73fd324d1a673756bd716d00b819de1af39895a8e4bed4c7c95fb0b44940640f90559a85eb784721c26d3412c8e52d0fc0648
|
7
|
+
data.tar.gz: c4a40a698f030d7be900cfb3eca389c5f4f2e2025a86374f510252c2bcd34a91f4f01863abe3efa559bc8fb150bc6ff879782b31b7d50a74c14c5722d9e7ea92
|
data/CHANGELOG.md
CHANGED
@@ -6,6 +6,12 @@ This project attempts to follow [semantic versioning](https://semver.org/)
|
|
6
6
|
|
7
7
|
## Unreleased
|
8
8
|
|
9
|
+
## 1.7.6
|
10
|
+
* Set rails conf to eager load when running simplecov
|
11
|
+
|
12
|
+
## 1.7.5
|
13
|
+
* If RSpec is not defined, check for minitest definition as elsif, and *then* run `rails test` and `rails test:system` in default rake task
|
14
|
+
|
9
15
|
## 1.7.4
|
10
16
|
* If RSpec is not defined, run `rails test` and `rails test:system` in default rake task
|
11
17
|
|
@@ -89,6 +89,7 @@ module JefferiesTube
|
|
89
89
|
end
|
90
90
|
|
91
91
|
if ::Rails.env.test? && ENV['JT_RSPEC'] == 'true'
|
92
|
+
::Rails.configuration.eager_load = true
|
92
93
|
ENV['JT_RSPEC'] = nil
|
93
94
|
simplecov_config = 'config/simplecov.rb'
|
94
95
|
require_relative simplecov_config
|
@@ -103,9 +104,7 @@ module JefferiesTube
|
|
103
104
|
Rake::Task["spec"].invoke
|
104
105
|
end
|
105
106
|
task default: :jtspec
|
106
|
-
|
107
|
-
|
108
|
-
if defined?(Minitest)
|
107
|
+
elsif defined?(Minitest)
|
109
108
|
task :jtspec do
|
110
109
|
Rake::Task["test"].invoke
|
111
110
|
|
metadata
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jefferies_tube
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.7.
|
4
|
+
version: 1.7.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brian Samson
|
8
|
+
autorequire:
|
8
9
|
bindir: bin
|
9
10
|
cert_chain: []
|
10
|
-
date:
|
11
|
+
date: 2025-08-15 00:00:00.000000000 Z
|
11
12
|
dependencies:
|
12
13
|
- !ruby/object:Gem::Dependency
|
13
14
|
name: awesome_print
|
@@ -211,6 +212,7 @@ homepage: https://github.com/tenforwardconsulting/jefferies_tube/
|
|
211
212
|
licenses:
|
212
213
|
- MIT
|
213
214
|
metadata: {}
|
215
|
+
post_install_message:
|
214
216
|
rdoc_options: []
|
215
217
|
require_paths:
|
216
218
|
- lib
|
@@ -225,7 +227,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
225
227
|
- !ruby/object:Gem::Version
|
226
228
|
version: '0'
|
227
229
|
requirements: []
|
228
|
-
rubygems_version: 3.
|
230
|
+
rubygems_version: 3.4.10
|
231
|
+
signing_key:
|
229
232
|
specification_version: 4
|
230
233
|
summary: Ten Forward Consulting useful tools.
|
231
234
|
test_files:
|