platform_sh_rails 0.1.8 → 0.1.9
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/.ruby-version +1 -0
- data/README.md +2 -2
- data/lib/platform_sh_rails/version.rb +1 -1
- data/platform.gemspec +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e10e742877644f018e6f2976489df8f3e7f5e5f62d22b647db0b9b9448894862
|
|
4
|
+
data.tar.gz: b0dbdb802f2b6eb940fb36bbb4c1c315764c35240a4cc7f2e36abe89923e20cd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3c83b296c05533d97fd8434a1a089a98f56d7d4ffb836a9aaaff961f061d1db677db7550daf3398905736c094e987fe34edc6c1d0ffd0776997a4350f5ca69aa
|
|
7
|
+
data.tar.gz: 52326b71faa0ea413a6b10066a3b22c7ddf1ec8c5e4f88a5c1c740bdad3ebdd04cf4fc0751a58a6960cbda93fc51df5c79968b9ccf979b7d27ccac25dd1115b7
|
data/.ruby-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
2.6.1
|
data/README.md
CHANGED
|
@@ -29,9 +29,9 @@ This gem setups the environment for Rails, it will autoconfigure:
|
|
|
29
29
|
* ElasticSearch
|
|
30
30
|
* Solr
|
|
31
31
|
* Mongodb
|
|
32
|
+
* InfluxDB
|
|
32
33
|
|
|
33
|
-
The gem will autoconfigure rails to use the first service it finds. So if you just add this gem to yout Gemfile
|
|
34
|
-
and push everything should work automagically.
|
|
34
|
+
The gem will autoconfigure rails to use the first service it finds. So if you just add this gem to yout Gemfile and push everything should work automagically. The configuration works by exporting environment variables with the expected names and URL structure.
|
|
35
35
|
|
|
36
36
|
If you have multiple services of the same type.. or multiple relational databases (like a postgres + a mysql) in your .platform/services file .. well you should configure by hand.
|
|
37
37
|
|
data/platform.gemspec
CHANGED
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
|
|
|
19
19
|
spec.executables = spec.files.grep(%r{^bin/platform.*}) { |f| File.basename(f) }
|
|
20
20
|
spec.require_paths = ["lib"]
|
|
21
21
|
|
|
22
|
-
spec.add_dependency "platform_sh", "0.2.
|
|
22
|
+
spec.add_dependency "platform_sh", "0.2.9"
|
|
23
23
|
spec.add_dependency "activerecord-nulldb-adapter"
|
|
24
24
|
spec.add_development_dependency "bundler", "~> 1.12"
|
|
25
25
|
spec.add_development_dependency "rake", "~> 10.0"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: platform_sh_rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ori Pekelman
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-02-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: platform_sh
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.2.
|
|
19
|
+
version: 0.2.9
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.2.
|
|
26
|
+
version: 0.2.9
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: activerecord-nulldb-adapter
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -89,6 +89,7 @@ extra_rdoc_files: []
|
|
|
89
89
|
files:
|
|
90
90
|
- ".gitignore"
|
|
91
91
|
- ".rspec"
|
|
92
|
+
- ".ruby-version"
|
|
92
93
|
- ".travis.yml"
|
|
93
94
|
- Gemfile
|
|
94
95
|
- LICENSE.txt
|
|
@@ -118,8 +119,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
118
119
|
- !ruby/object:Gem::Version
|
|
119
120
|
version: '0'
|
|
120
121
|
requirements: []
|
|
121
|
-
|
|
122
|
-
rubygems_version: 2.7.6
|
|
122
|
+
rubygems_version: 3.0.1
|
|
123
123
|
signing_key:
|
|
124
124
|
specification_version: 4
|
|
125
125
|
summary: Platform.sh rails helper gem to ease interacting with the environment
|