rails-config-loaders 1.0.0 → 1.0.1
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/README.md +13 -3
- data/VERSION +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a3c00646b4bec4fd5f3b621848bc561a6e0471c2
|
|
4
|
+
data.tar.gz: b3fa6c2b819a1a6f81fa001a99307f9471b913f3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a87204f811369bd75b3caf440d99836043c3cc6a58c85d80527ba06c6c463999e1d9b93e30c6e07e8d697b8992f614550e0617980d181754eabdcbff11dd4c9a
|
|
7
|
+
data.tar.gz: ff726db69c6c80879ab88d8014b9093309a2b35233df8ca25dee3159072d654b9d909df914a8075f22ccbcca014dbc4ef2a5a854cbd0d230ee7ed42cbbac5a4c
|
data/README.md
CHANGED
|
@@ -1,11 +1,21 @@
|
|
|
1
|
-
# Rails Loaders
|
|
1
|
+
# Rails Config Loaders
|
|
2
|
+
|
|
3
|
+
## Description
|
|
4
|
+
|
|
5
|
+
The gem is a simple solution if you want to load config files before `config/environments` and `config/initializers`.
|
|
2
6
|
|
|
3
7
|
## Installation
|
|
4
8
|
|
|
5
|
-
Put this into your Gemfile
|
|
9
|
+
1. Put this into your Gemfile
|
|
6
10
|
|
|
7
11
|
``` ruby
|
|
8
|
-
gem 'rails-loaders'
|
|
12
|
+
gem 'rails-config-loaders'
|
|
9
13
|
```
|
|
10
14
|
|
|
11
15
|
and run ``bundle install``.
|
|
16
|
+
|
|
17
|
+
2. Create loaders folder, path is `config/loaders/`.
|
|
18
|
+
|
|
19
|
+
3. Put the config files into loaders folder.
|
|
20
|
+
|
|
21
|
+
4. Start your rails application.
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.1
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rails-config-loaders
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ChouAndy
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-06-
|
|
11
|
+
date: 2017-06-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|