jets 1.1.0 → 1.1.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c16c6b3b6a3226c7512a79011f134db88f544e86944fd96041c43cfa155c949a
4
- data.tar.gz: b598ecc601f5edafb12dc8589be0511e9302b0fb16c61a27a27805612554b1c7
3
+ metadata.gz: cf0010dec35019800760689c22c39c6bc681f6cb47595a535cd1bf66a09eacbf
4
+ data.tar.gz: fc3eb23ae40583381ba7c11c0cb1e5907a753a664a56e3b0251d2538e52b72c7
5
5
  SHA512:
6
- metadata.gz: e590e98ec4f3b6f6b865d678af0bbb519f4c7b41f0ea99b6d607cd948f18dbfba230cadd30a78342b894dc090eb5ac32de191253538f60715e136b7833a675c7
7
- data.tar.gz: 371c670262da7a386880b6a467251c39fa846bb016325eb75b0e0a8e630934c3284134d5e8db27c64a8d62af0e06f927ced345c10faa1fdd862f2c7c84a14cb8
6
+ metadata.gz: 175d11b87fdfdab670311753d3c5c4451defc9f1f1efd9dd091caedc314e14f7493635b33314227bc24386d2dfb5923d3a239ddfc995c6ea714978989350bd0d
7
+ data.tar.gz: 1fbe09dd204c1478e532c2d62b565fabcf6d201a8512241b6efbe86a2bb4c07f2f6689aaf897e33ccc08504894907a327b7e3230c871a29d1d4785becdc44d05
data/CHANGELOG.md CHANGED
@@ -3,6 +3,9 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  This project *loosely tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
5
5
 
6
+ ## [1.1.1]
7
+ - provide instructions to run jets upgrade:v1 for config.ru update
8
+
6
9
  ## [1.1.0]
7
10
  - rack compatibility pull request #72 from tongueroo/rack
8
11
  - remove Jets::Timing pull request #73 from tongueroo/rm-timing
data/Gemfile.lock CHANGED
@@ -11,7 +11,7 @@ GIT
11
11
  PATH
12
12
  remote: .
13
13
  specs:
14
- jets (1.1.0)
14
+ jets (1.1.1)
15
15
  actionpack (>= 5.2.1)
16
16
  actionview (>= 5.2.1)
17
17
  activerecord (>= 5.2.1)
data/lib/jets/booter.rb CHANGED
@@ -105,7 +105,9 @@ class Jets::Booter
105
105
  config_ru = File.read("#{Jets.root}config.ru")
106
106
  unless config_ru.include?("Jets.boot")
107
107
  puts 'The config.ru file is missing Jets.boot. Please add Jets.boot after require "jets"'.colorize(:red)
108
- puts "This was changed as made in Jets v1.1.0"
108
+ puts "This was changed as made in Jets v1.1.0."
109
+ puts "To have Jets update the config.fu file for you, you can run:\n\n"
110
+ puts " jets upgrade:v1"
109
111
  exit 1
110
112
  end
111
113
  end
data/lib/jets/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Jets
2
- VERSION = "1.1.0"
2
+ VERSION = "1.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jets
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen