jinda 0.7.7.3 → 0.8.0
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 +40 -37
- data/app/assets/config/manifest.js +4 -1
- data/lib/generators/jinda/config_generator.rb +1 -1
- data/lib/generators/jinda/install_generator.rb +3 -4
- data/lib/generators/jinda/templates/app/assets/config/manifest.js +4 -0
- data/lib/generators/jinda/templates/config/mongoid.yml +3 -3
- data/lib/generators/jinda/templates/config/mongoid.yml-docker +3 -3
- data/lib/generators/jinda/templates/config/mongoid.yml-localhost +3 -3
- data/lib/generators/jinda/templates/spec/features/userlogins_spec.rb +1 -1
- data/lib/jinda/version.rb +1 -1
- data/test/dummy/Gemfile +6 -5
- data/test/dummy/Gemfile.lock +196 -181
- data/test/dummy/app/assets/config/manifest.js +4 -0
- data/test/dummy/config/credentials.yml.enc +1 -1
- data/test/dummy/config/environments/test.rb +1 -1
- data/test/dummy/config/initializers/content_security_policy.rb +5 -4
- data/test/dummy/config/initializers/filter_parameter_logging.rb +1 -3
- data/test/dummy/config/mongoid.yml-docker +3 -3
- data/test/dummy/config/mongoid.yml-localhost +3 -3
- data/test/dummy/docker-compose.yml +0 -2
- data/test/dummy/log/development.log +2 -699
- data/test/dummy/spec/features/userlogins_spec.rb +1 -1
- data/test/dummy/tmp/development_secret.txt +1 -1
- data/test/integration/config_generator_test.rb +28 -0
- metadata +3 -3
- data/test/Gemfile +0 -2
@@ -4,12 +4,12 @@ development:
|
|
4
4
|
# Defines the default client. (required)
|
5
5
|
default:
|
6
6
|
# Mongoid can connect to a URI accepted by the driver:
|
7
|
-
# uri: mongodb://user:password@mongodb.domain.com:27017/
|
7
|
+
# uri: mongodb://user:password@mongodb.domain.com:27017/jinda_development
|
8
8
|
|
9
9
|
# Otherwise define the parameters separately.
|
10
10
|
# This defines the name of the default database that Mongoid can connect to.
|
11
11
|
# (required).
|
12
|
-
database:
|
12
|
+
database: jinda_development
|
13
13
|
# Provides the hosts the default client can connect to. Must be an array
|
14
14
|
# of host:port pairs. (required)
|
15
15
|
hosts:
|
@@ -173,7 +173,7 @@ production:
|
|
173
173
|
test:
|
174
174
|
clients:
|
175
175
|
default:
|
176
|
-
database:
|
176
|
+
database: jinda_test
|
177
177
|
hosts:
|
178
178
|
- localhost:27017
|
179
179
|
options:
|