inferno_core 0.2.0.rc1 → 0.2.0.rc2

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: d4408a2e15cb53d6ceac3b8b91233ef68e445addbcd8b8a410b4af92620d7ebc
4
- data.tar.gz: e53339ad3edd1f341e0f267f88d14e471da2af29cada5e922eddfac39a1b2e68
3
+ metadata.gz: 717a7ae872a0634d4bf6156e3a9c55900bc1695a5073ecbd8112ad3a0c76b1d4
4
+ data.tar.gz: 162800ecccc40c6cda0f6995c83009714fc6ceb459d700e6cccf8aa0255d7719
5
5
  SHA512:
6
- metadata.gz: 999b967b6be7e306697f4ae91800648b52a6efba07a9fff876014d7a568f9bb70da0747d279c8e8b9c6262782eb9315fa9e656b403c460c8a3aec20585ba6b01
7
- data.tar.gz: 74460a748196d27b1616f38fb1883f5685b3c82fd1eaab953ed9a4b87f2f201aae4080f241f583365ea76f5b27e83b1156fc7931f6a131ed18edae23c8c5c95d
6
+ metadata.gz: ecf23fd7edde7878fd1e49e0757f5de140ad1cef871c13eff2769d547684e291dfb945a4c96c1922ff656c255c1413b2f0a1153a4738af9403103156bf70a957
7
+ data.tar.gz: 7c7079365b2838ddc7f82806683ee747cc23ea32679297651562c8d3757f246938bd1261b858cb50b303f12272da59cdea29f72b608add78007a0de824a4e7b9
@@ -40,6 +40,6 @@
40
40
  To begin the development, run `npm start` or `yarn start`.
41
41
  To create a production bundle, use `npm run build` or `yarn build`.
42
42
  -->
43
- <script src='<%= Inferno::Application['js_host'] %>/bundle.js'></script>
43
+ <script src='<%= Inferno::Application['js_host'] %>/bundle.js?<%= Inferno::Application['cache_bust_token']%>'></script>
44
44
  </body>
45
45
  </html>
@@ -21,6 +21,7 @@ module Inferno
21
21
  Application.register('async_jobs', ENV['ASYNC_JOBS'] != 'false')
22
22
  Application.register('inferno_host', ENV.fetch('INFERNO_HOST', 'http://localhost:4567'))
23
23
  Application.register('base_url', URI.join(Application['inferno_host'], base_path).to_s)
24
+ Application.register('cache_bust_token', SecureRandom.uuid)
24
25
 
25
26
  configure do |config|
26
27
  config.root = File.expand_path('../../..', __dir__)