jefferies_tube 1.0.2 → 1.0.3
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 +10 -0
- data/README.md +14 -0
- data/lib/jefferies_tube/railtie.rb +9 -0
- data/lib/jefferies_tube/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e29b39f15b537d337894dd20a6f5d5a278d2248b
|
4
|
+
data.tar.gz: 0ecd3a0e7a4ccafcf7574f2933415582adc5a105
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: baeb77d8a5c29e6a585f7e4e70f2f72c82d59d66ec7a7e7993c4424850b97eb787287deaba5534908ceaccda041b0c5afd06ddd4cf33e8043773433b7029afcb
|
7
|
+
data.tar.gz: 75a7fbf2789d680f977fb4fc122c24d72110f5e59fe8761fcc26e62f002b9ffeeb301cd7ccf9797774a9b78b2e283587eb222ab4b8cc1fa5f84429138d9a33eb
|
data/CHANGELOG.md
CHANGED
@@ -8,6 +8,16 @@ This project attempts to follow [semantic versioning](https://semver.org/)
|
|
8
8
|
|
9
9
|
* nada
|
10
10
|
|
11
|
+
## 1.0.3 - 2018-08-13
|
12
|
+
|
13
|
+
* features
|
14
|
+
* Support for my.development.rb
|
15
|
+
|
16
|
+
## 1.0.2 - 2018-07-11
|
17
|
+
|
18
|
+
* bug fixes
|
19
|
+
* Fix bug with webpacker integration preventing it from being enabled.
|
20
|
+
|
11
21
|
## 1.0.1 - 2018-06-19
|
12
22
|
|
13
23
|
* bug fixes
|
data/README.md
CHANGED
@@ -141,6 +141,20 @@ To get compass reset and box-sizing border-box to all elements:
|
|
141
141
|
@import jefferies_tube
|
142
142
|
```
|
143
143
|
|
144
|
+
### Development environment
|
145
|
+
|
146
|
+
When developing the apps against your local machine, it is useful to override some of the config settings to get ngrok to work.
|
147
|
+
You can create `config/environments/my.development.rb` and put something like the following in it:
|
148
|
+
```
|
149
|
+
Rails.application.configure do
|
150
|
+
config.middleware.use "SomeLocalThing"
|
151
|
+
config.action_mailer.asset_host = "test.ngrok.io"
|
152
|
+
# Anything else in development.rb that you don't want to commit
|
153
|
+
end
|
154
|
+
```
|
155
|
+
|
156
|
+
If you do this, don't forget to add `my.development.rb` to the gitignore file.
|
157
|
+
|
144
158
|
## Contributing
|
145
159
|
|
146
160
|
1. Fork it ( http://github.com/<my-github-username>/jefferies_tube/fork )
|
@@ -48,5 +48,14 @@ module JefferiesTube
|
|
48
48
|
end
|
49
49
|
end
|
50
50
|
end
|
51
|
+
|
52
|
+
initializer "load my.development.rb if present" do |config|
|
53
|
+
if ::Rails.env.development?
|
54
|
+
override_file = ::Rails.root.join "config", "environments", "my.development.rb"
|
55
|
+
if File.file? override_file
|
56
|
+
load override_file
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
51
60
|
end
|
52
61
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jefferies_tube
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brian Samson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-08-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: awesome_print
|
@@ -173,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
173
173
|
version: '0'
|
174
174
|
requirements: []
|
175
175
|
rubyforge_project:
|
176
|
-
rubygems_version: 2.
|
176
|
+
rubygems_version: 2.6.14
|
177
177
|
signing_key:
|
178
178
|
specification_version: 4
|
179
179
|
summary: Ten Forward Consulting useful tools.
|