voyage 1.44.0.11 → 1.44.0.12
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/lib/voyage/app_builder.rb +2 -1
- data/lib/voyage/templates/circle.yml.erb +11 -0
- data/lib/voyage/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1fe21b2857ecec16e7d6a3a723ebe2b81b7db981
|
|
4
|
+
data.tar.gz: 28cc9fc9af4a45420295e30c5087f37d443f5b83
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 56c8131d053bcb90dff4c13cf3d36761b2a8408a7fdd4adccd7875b498b6e19acc12a5c7eda25cb122e7a9b0cd875025f8c02a6db42a9f0faeb5076c333d2fe2
|
|
7
|
+
data.tar.gz: 51a9e1be4559ad9af2922fb5f85198ede3196076a5828f7b059fcaf1f87dd601065d70d8e0307e29e7823e1644ff9facf40e48bdbf97f4b4ac53cf8859edc9a2
|
data/lib/voyage/app_builder.rb
CHANGED
|
@@ -131,6 +131,7 @@ module Suspenders
|
|
|
131
131
|
customize_user_spec
|
|
132
132
|
add_token_auth
|
|
133
133
|
else
|
|
134
|
+
@@use_devise = false
|
|
134
135
|
generate_seeder_templates(using_devise: false)
|
|
135
136
|
end
|
|
136
137
|
end
|
|
@@ -882,7 +883,7 @@ module Suspenders
|
|
|
882
883
|
end
|
|
883
884
|
|
|
884
885
|
def configure_ci
|
|
885
|
-
template "circle.yml.erb", "circle.yml"
|
|
886
|
+
template "../templates/circle.yml.erb", "circle.yml"
|
|
886
887
|
end
|
|
887
888
|
|
|
888
889
|
def configure_background_jobs_for_rspec
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# FYI: Must add the environment variable SECRET_KEY_BASE
|
|
2
|
+
# within the web panel for CircleCI
|
|
3
|
+
|
|
4
|
+
dependencies:
|
|
5
|
+
pre:
|
|
6
|
+
- gem install bundler # Make sure bundler is included
|
|
7
|
+
- gem update --system # Necessary to update gem to work with frozen strings
|
|
8
|
+
|
|
9
|
+
test:
|
|
10
|
+
override:
|
|
11
|
+
- COVERAGE=true RAILS_ENV=test bundle exec rspec -r rspec_junit_formatter --format progress --format RspecJunitFormatter -o $CIRCLE_TEST_REPORTS/rspec/junit.xml
|
data/lib/voyage/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: voyage
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.44.0.
|
|
4
|
+
version: 1.44.0.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- thoughtbot, headway
|
|
@@ -119,6 +119,7 @@ files:
|
|
|
119
119
|
- lib/voyage/templates/application.js
|
|
120
120
|
- lib/voyage/templates/application_mailer.rb.erb
|
|
121
121
|
- lib/voyage/templates/auto_annotate_models.rake
|
|
122
|
+
- lib/voyage/templates/circle.yml.erb
|
|
122
123
|
- lib/voyage/templates/config_dj_rails5_patches.rb
|
|
123
124
|
- lib/voyage/templates/config_initializers_ams.rb
|
|
124
125
|
- lib/voyage/templates/config_locales_en.yml.erb
|