sprockets-rails 3.2.0 → 3.2.1

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: 233f747991d3fc5bd6219a99e3eedf0f04460ef2
4
- data.tar.gz: 0398d6281cd9879088a43fa35707a09485c7bd4d
3
+ metadata.gz: d671d520900799dfead3c800f71b8cd5be242dbe
4
+ data.tar.gz: 65301c0eb28b55f83cb9782d0d086bdd0b21cbf4
5
5
  SHA512:
6
- metadata.gz: fb5fa5f828fac3bb652a1981134be5dc2983b936858da7ec8e336a70da0739df1a90c551ec6e80de45a8aec18c40f58a6ce5a885dc157c97c98d88291e57268c
7
- data.tar.gz: 129def55fa022f362bc3280801a99fe7cd984470777015386ce3ecd9ecdb52d00aa1d5e35ab8f6d0b5f80907103bb32db96c99fe6a512b4faebfd16d8d90afb0
6
+ metadata.gz: 98c1b63972086b59bcd065d6508aa3f5367ff69a1ed61e758b053c5c911735d667859623c7ce59f5f314169f02689f354c1815ec9ca97f5d2d0d5fd505a21a2a
7
+ data.tar.gz: b2b9a8b0d26554a21880ff43da22879100d5a66348b2c66fd3f0dde316abd3b8c1bf9acbc4384ed8b82c5bbe23c3bd1abc5830f2cacb0432d0cf511e91a0bc83
data/README.md CHANGED
@@ -187,6 +187,6 @@ Sprockets Rails is released under the [MIT License](MIT-LICENSE).
187
187
 
188
188
  ## Code Status
189
189
 
190
- * [![Travis CI](https://api.travis-ci.org/rails/sprockets-rails.svg)](http://travis-ci.org/rails/sprockets-rails)
190
+ * [![Travis CI](https://travis-ci.org/rails/sprockets-rails.svg?branch=master)](http://travis-ci.org/rails/sprockets-rails)
191
191
  * [![Gem Version](https://badge.fury.io/rb/sprockets-rails.svg)](http://badge.fury.io/rb/sprockets-rails)
192
192
  * [![Dependencies](https://gemnasium.com/rails/sprockets-rails.svg)](https://gemnasium.com/rails/sprockets-rails)
@@ -1,4 +1,4 @@
1
- require 'action_view'
1
+ require 'action_view/helpers'
2
2
  require 'sprockets'
3
3
 
4
4
  module Sprockets
@@ -88,7 +88,7 @@ module Sprockets
88
88
  message << "To bypass the asset pipeline and preserve this behavior,\n"
89
89
  message << "use the `skip_pipeline: true` option.\n"
90
90
 
91
- call_stack = respond_to?(:caller_locations) ? caller_locations : caller
91
+ call_stack = Kernel.respond_to?(:caller_locations) && ::Rails::VERSION::MAJOR >= 5 ? caller_locations : caller
92
92
  ActiveSupport::Deprecation.warn(message, call_stack)
93
93
  end
94
94
  super
@@ -1,5 +1,5 @@
1
1
  module Sprockets
2
2
  module Rails
3
- VERSION = "3.2.0"
3
+ VERSION = "3.2.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sprockets-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.0
4
+ version: 3.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joshua Peek
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-09-01 00:00:00.000000000 Z
11
+ date: 2017-08-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sprockets
@@ -145,7 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
145
145
  version: '0'
146
146
  requirements: []
147
147
  rubyforge_project:
148
- rubygems_version: 2.6.4
148
+ rubygems_version: 2.5.2
149
149
  signing_key:
150
150
  specification_version: 4
151
151
  summary: Sprockets Rails integration