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 +4 -4
- data/CHANGELOG.md +3 -0
- data/Gemfile.lock +1 -1
- data/lib/jets/booter.rb +3 -1
- data/lib/jets/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cf0010dec35019800760689c22c39c6bc681f6cb47595a535cd1bf66a09eacbf
|
|
4
|
+
data.tar.gz: fc3eb23ae40583381ba7c11c0cb1e5907a753a664a56e3b0251d2538e52b72c7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
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