gris 0.4.8 → 0.4.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/gris/generators/templates/scaffold/config/database.yml.tt +2 -3
- data/lib/gris/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 687378dfb5a1a8efc1dd0c04923d4aa1c2eec1cc
|
4
|
+
data.tar.gz: 8b4232a3d263a03ab125eb330c5b57cd71f04860
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e529879507fcfb06c6eb1473bfc3cd789aa0f4e59308c1cb8448fe38b64f1c9728f3f8d7ffa64fe9e27daa34c82936cff74ac3da9901f7b20ac95ebee48347a
|
7
|
+
data.tar.gz: 1833666d3fec4ec71614e523582a3318c6f21f248373270fea127aa6865605e0a09eca82abc71250b536197b746e9a2154c70dffd1633a92fc29a17813a662b2
|
data/Gemfile.lock
CHANGED
@@ -2,8 +2,8 @@ default: &default
|
|
2
2
|
adapter: postgresql
|
3
3
|
encoding: unicode
|
4
4
|
host: localhost
|
5
|
-
username: <%%= ENV['
|
6
|
-
password: <%%= ENV['
|
5
|
+
username: <%%= ENV['DATABASE_USER'] %>
|
6
|
+
password: <%%= ENV['DATABASE_PASS'] %>
|
7
7
|
pool: 5
|
8
8
|
|
9
9
|
development:
|
@@ -13,4 +13,3 @@ development:
|
|
13
13
|
test:
|
14
14
|
<<: *default
|
15
15
|
database: <%= app_name %>_test
|
16
|
-
|
data/lib/gris/version.rb
CHANGED