oop_rails_server 0.0.17 → 0.0.18
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/CHANGES.md +4 -0
- data/lib/oop_rails_server/rails_server.rb +5 -0
- data/lib/oop_rails_server/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: 29b80ec1bb5be7a985162051b138b86dcf1ba2df
|
|
4
|
+
data.tar.gz: 5250a68f7067cb3bd77c210673ba05b8623ceb14
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 90699dbfd9174985ad3d9caf94362624d7c32ae2d7246d0488a64675a15a8bc3b13a6930b38d5f8bcc23706235720bb1ee990eaa3632f4e49c6f67b0237aa42b
|
|
7
|
+
data.tar.gz: 34f90b90785bd67871c7dced38dd782128255db383f39c592fffdfd1642c5a705f1fa4ed4cb69224be8630678b7fc4faca605cbb71e561bd7d410705edbc06ea
|
data/CHANGES.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# `oop_rails_server` Releases
|
|
2
2
|
|
|
3
|
+
## 0.0.18, 20 September 2016
|
|
4
|
+
|
|
5
|
+
* Replicate the workaround for `mime-types` into not just the Rails bootstrap Gemfile, but the Rails gemfile, too.
|
|
6
|
+
|
|
3
7
|
## 0.0.17, 19 September 2016
|
|
4
8
|
|
|
5
9
|
* Add workaround for the fact that `mime-types` 3.x depends on `mime-types-data`, which is incompatible with
|
|
@@ -253,6 +253,11 @@ EOS
|
|
|
253
253
|
gemfile_contents.gsub!(/^(.*['"]uglifier['"].*)$/, "\\1, '< 3.0.0'")
|
|
254
254
|
end
|
|
255
255
|
|
|
256
|
+
if RUBY_VERSION =~ /^1\./
|
|
257
|
+
# mime-types 3.x depends on mime-types-data, which is incompatible with Ruby < 1.x
|
|
258
|
+
gemfile_contents << "\ngem 'mime-types', '< 3.0.0'\n"
|
|
259
|
+
end
|
|
260
|
+
|
|
256
261
|
gemfile_contents << additional_gemfile_lines.join("\n")
|
|
257
262
|
gemfile_contents << "\n"
|
|
258
263
|
|