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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9ce268f635d67da7b2c2132f26f5de74c4398878
4
- data.tar.gz: 16cd8c526693c9c4efa0da4ac4effd152c3569bc
3
+ metadata.gz: 29b80ec1bb5be7a985162051b138b86dcf1ba2df
4
+ data.tar.gz: 5250a68f7067cb3bd77c210673ba05b8623ceb14
5
5
  SHA512:
6
- metadata.gz: d0e02b44cab9f50053b1236cb7047db190f53585fea1672506e3220b7d2a7b471d2e613e709780da150f3b8c29130588733db8d44be1c85fc6c01962e9d05d34
7
- data.tar.gz: 168c7bfe238634db252821fa64530d70bc66282389479a801b141f3c86ca67bd91f8588184e2d8b92766b6cd3127be78d40e804f487a7beb5c5811c6620e9ba8
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
 
@@ -1,3 +1,3 @@
1
1
  module OopRailsServer
2
- VERSION = "0.0.17"
2
+ VERSION = "0.0.18"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oop_rails_server
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.17
4
+ version: 0.0.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Geweke