oop_rails_server 0.0.16 → 0.0.17

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: 10eca8dc5cc42c4e8284cde58858ea7b29bb2d28
4
- data.tar.gz: a48c6facce3f1c08c289531a556c63d85f9f417d
3
+ metadata.gz: 9ce268f635d67da7b2c2132f26f5de74c4398878
4
+ data.tar.gz: 16cd8c526693c9c4efa0da4ac4effd152c3569bc
5
5
  SHA512:
6
- metadata.gz: fda371e58a2597d4bebbfd63e2ab49e60205629233338cc89a2e54532d0c91d953fcdf1c676d397cb103ed8237f1fde6f4f1728ab702220b5f43fb2717968952
7
- data.tar.gz: 53bbe9da7d1c2fc0644123678b282326b30cd4a4b5e6dc726667a27bb7176aefd9f7b35acbca6bfc7454f8c52127cda96a292e039b80b41d2103a32ff989de1a
6
+ metadata.gz: d0e02b44cab9f50053b1236cb7047db190f53585fea1672506e3220b7d2a7b471d2e613e709780da150f3b8c29130588733db8d44be1c85fc6c01962e9d05d34
7
+ data.tar.gz: 168c7bfe238634db252821fa64530d70bc66282389479a801b141f3c86ca67bd91f8588184e2d8b92766b6cd3127be78d40e804f487a7beb5c5811c6620e9ba8
data/CHANGES.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # `oop_rails_server` Releases
2
2
 
3
+ ## 0.0.17, 19 September 2016
4
+
5
+ * Add workaround for the fact that `mime-types` 3.x depends on `mime-types-data`, which is incompatible with
6
+ Ruby 1.x.
7
+
3
8
  ## 0.0.16, 19 September 2016
4
9
 
5
10
  * Add workarounds for newer versions of `rake` and `uglifier` that cause problems with Ruby 1.8.7.
@@ -203,6 +203,9 @@ EOS
203
203
  f.puts "gem 'i18n', '< 0.7.0'" if RUBY_VERSION =~ /^1\.8\./
204
204
  f.puts "gem 'rack-cache', '< 1.3.0'" if RUBY_VERSION =~ /^1\./
205
205
  f.puts "gem 'rake', '< 11.0.0'" if RUBY_VERSION =~ /^1\.8\./
206
+
207
+ # mime-types 3.x depends on mime-types-data, which is incompatible with Ruby < 1.x
208
+ f.puts "gem 'mime-types', '< 3.0.0'" if RUBY_VERSION =~ /^1\./
206
209
  end
207
210
 
208
211
  run_bundle_install!(:bootstrap)
@@ -1,3 +1,3 @@
1
1
  module OopRailsServer
2
- VERSION = "0.0.16"
2
+ VERSION = "0.0.17"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oop_rails_server
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.16
4
+ version: 0.0.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Geweke
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-09-19 00:00:00.000000000 Z
11
+ date: 2016-09-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json