bullet_train 1.2.16 → 1.2.17

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: db9bf6373626523a2b56fae55a9d884db079f0b300bb97a83ae726597cc13a24
4
- data.tar.gz: dcad48f627a911b4243697ef92550f39c8f40e386bf2c67c11e51b4b3a707a42
3
+ metadata.gz: db64e5d7fcc268dc9ce6f416f7fe118421806cbd2a182e5555454f02aeef5e0e
4
+ data.tar.gz: 7016b846224bc4287b7ea79a4527e8d5aea2a230d746eb11801cf8d335592e1c
5
5
  SHA512:
6
- metadata.gz: e99b9e93e5ea204b8ea9793f1960119c038a1c11dc9c49bc523c69dc887efff3fd810935f3abf5f515ca629cac43e12296cfeb588641ddc12b2f92aaa58c2ea1
7
- data.tar.gz: 6187fb36affafd8baed716441a33f869ca88dfe382098cfde1e3668c01cfa30c1f36c54efdf200580161a161ae43c8f851b7410611673e66eae662ba62fecc3b
6
+ metadata.gz: af7b95318cf456e148e6dd4ebbb150bf1546fc8fcdfac00b628934d5b1ae2d17936055b1d1d5979662310c5b1f7a948b4d5c545b331b8f149129c8f6b72ef1cd
7
+ data.tar.gz: 8d713f56429fc441dfb463e84e74fad2fb95697111e4f00f8d2cef4dbd55f632b8f9afd44c261421a1e3c73c83e4a168f728d016285b13ab9714a09b7a00c7c8
data/docs/heroku.md CHANGED
@@ -36,29 +36,21 @@ After this, you'll be able to deploy updates to your app like so:
36
36
  git push heroku main
37
37
  ````
38
38
 
39
- ### 2. Running Database Migrations and Seeds
40
- We've decided not to configure the application to automatically run database migrations after a deploy for the time being. For that reason, you'll need to run the migrations and seeds manually, like so:
41
-
42
- ```
43
- heroku run rake db:migrate
44
- heroku run rake db:seed
45
- ```
46
-
47
- ### 3. Enabling Runtime Dyno Metadata
39
+ ### 2. Enabling Runtime Dyno Metadata
48
40
  We include [Honeybadger](http://honeybadger.io) and Sentry (both at a free tier) for redundant error tracking by default. Sentry requires the following Heroku labs feature to be enabled:
49
41
 
50
42
  ```
51
43
  heroku labs:enable runtime-dyno-metadata
52
44
  ```
53
45
 
54
- ### 4. Improve Boot Time
46
+ ### 3. Improve Boot Time
55
47
  You can cut your application boot time in half by enabling the following Heroku Labs feature. See [this blog post](https://dev.to/dbackeus/cut-your-rails-boot-times-on-heroku-in-half-with-a-single-command-514d) for more details.
56
48
 
57
49
  ```
58
50
  heroku labs:enable build-in-app-dir
59
51
  ```
60
52
 
61
- ### 5. Adding Your Actual Domain
53
+ ### 4. Adding Your Actual Domain
62
54
 
63
55
  The most common use case for Bullet Train applications is to be hosted at some appropriate subdomain (e.g. `app.YOURDOMAIN.COM`) while a marketing site is hosted with a completely different service at the apex domain (e.g. just `YOURDOMAIN.COM`) or `www.YOURDOMAIN.COM`. To accomplish this, do the following in your shell:
64
56
 
@@ -1,3 +1,3 @@
1
1
  module BulletTrain
2
- VERSION = "1.2.16"
2
+ VERSION = "1.2.17"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bullet_train
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.16
4
+ version: 1.2.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Culver