pretty_face 0.10.1 → 0.10.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5be0ba502aa0e1d300b1f210f8e788f2c71c69c0
4
- data.tar.gz: 263d65d06aa1d41e414c66d02eea594a96830ee5
3
+ metadata.gz: 5fcac730a6081ca4ace109d40718f905952736ca
4
+ data.tar.gz: 855f600e38ef96da9e8e82d29237843b685cadf7
5
5
  SHA512:
6
- metadata.gz: d66f3b9f7c488981054bae2ca1f1dd0c16bd2796da785e4ee22a75a95f9ed007d1cafddffa3d5d454722c55013c28995c9c0eace86b468155cfad8caa949102a
7
- data.tar.gz: 5ebc1646dc06323a0665d1de46f4034eeb1e984e231d15d43dbbecac63a96bc642e3f5c9a4eec9104072af1b23c497fe0e5c0c0e09b2674d234841289debc065
6
+ metadata.gz: 906d1390fbcdb37bc59a771ecac27fa8dfe781a248be4238047106dc97a33fc8e64b21984cddb032aa0d4884d1b61838cee9e7bce38ae00a57f2808e9c7581c5
7
+ data.tar.gz: 7f814fac8069095ac687afcd77b34147bea3a78e77e8ab3287c97ad4f0bd0cdfe33c503de4239d95303a103e3810abe62536c46fe50e9552a694b9cdd6070bdf
data/ChangeLog CHANGED
@@ -1,3 +1,6 @@
1
+ === Release 0.10.2 / 2014-6-2
2
+ * Included explicit require of module Mime due to dependency load changes in ActionPack 4.1.1
3
+
1
4
  === Release 0.10.1 / 2014-4-7
2
5
  * Included handling for unknown files
3
6
  * Removed unused code
@@ -1,6 +1,5 @@
1
1
  require 'fileutils'
2
2
 
3
-
4
3
  When /^I have a logo file in the correct location$/ do
5
4
  FileUtils.cp "features/support/logo.png", "features/support/pretty_face/"
6
5
  end
@@ -8,6 +8,10 @@ require 'cucumber/ast/outline_table'
8
8
  require File.join(File.dirname(__FILE__), 'view_helper')
9
9
  require File.join(File.dirname(__FILE__), 'report')
10
10
 
11
+ # Starting with ActionPack 4.1.1, the module Mime doesn't get initialized before it's needed by PrettyFace and so
12
+ # it would blow up with errors about uninitialized constants. We need to explicitly load it to prevent this problem.
13
+ require 'action_dispatch/http/mime_type'
14
+
11
15
  module PrettyFace
12
16
  module Formatter
13
17
 
@@ -1,3 +1,3 @@
1
1
  module PrettyFace
2
- VERSION = "0.10.1"
2
+ VERSION = "0.10.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pretty_face
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.1
4
+ version: 0.10.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeffrey S. Morgan
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2014-04-07 00:00:00.000000000 Z
15
+ date: 2014-06-02 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: actionpack