rough_draft 2.0.0 → 2.1.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/lib/rough_draft/rails_builder.rb +2 -1
- data/lib/rough_draft/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: 2123a6f2a2be775c9932f5c3f99a40abbffa8044
|
|
4
|
+
data.tar.gz: 1c024fcbf7bebcb0d08973d3b106ada74895563d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 19e0b4961b174ee9d88ccc7df5978d0999639d4e237cb122bc91cc1985d1c54b81d4e5d1e629e9f353627104f8010c00ff709681b6fe19ed184fbb7aa4d93859
|
|
7
|
+
data.tar.gz: cc7b6473fbd28258dcb25e58ce91ef7f53452fafc66c04aa831a63229ae958a6425a61711e58befa4b4e2418392dfef6394f8e2878300cff2a5fe0371bcb559e
|
|
@@ -205,6 +205,7 @@ class RailsBuilder < Rails::AppBuilder
|
|
|
205
205
|
end
|
|
206
206
|
|
|
207
207
|
def travis
|
|
208
|
+
run 'travis login --pro --auto'
|
|
208
209
|
run 'travis enable --pro'
|
|
209
210
|
template 'travis.yml.erb', '.travis.yml'
|
|
210
211
|
|
|
@@ -433,7 +434,7 @@ git remote add production git@heroku.com:#{heroku_production_app_name}.git
|
|
|
433
434
|
end
|
|
434
435
|
|
|
435
436
|
def secret_token
|
|
436
|
-
|
|
437
|
+
template 'config/initializers/secret_token.rb.erb', 'config/initializers/secret_token.rb'
|
|
437
438
|
template 'config/settings/application.yml.erb', 'config/settings/application.yml'
|
|
438
439
|
|
|
439
440
|
git_commit 'Secure the Secure Application Token'
|
data/lib/rough_draft/version.rb
CHANGED