rack-zippy 2.0.1 → 2.0.2

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.
data/.gitignore CHANGED
@@ -21,3 +21,5 @@ tmp
21
21
  vendor
22
22
  .DS_Store
23
23
  *.tmp
24
+
25
+ bin/rake
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 2.0.2 / 2014-12-15
2
+ - Remove binstub bin/rake permanently, may be causing Heroku issues
3
+
1
4
  ## 2.0.1 / 2014-12-15
2
5
  - New `:max_age_fallback` (in seconds) option
3
6
 
@@ -1,5 +1,5 @@
1
1
  module Rack
2
2
  module Zippy
3
- VERSION = '2.0.1'
3
+ VERSION = '2.0.2'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack-zippy
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -15,8 +15,7 @@ description: Rack middleware for serving static gzipped assets generated by the
15
15
  asset pipeline
16
16
  email:
17
17
  - e@jetbootlabs.com
18
- executables:
19
- - rake
18
+ executables: []
20
19
  extensions: []
21
20
  extra_rdoc_files: []
22
21
  files:
@@ -27,7 +26,6 @@ files:
27
26
  - LICENSE
28
27
  - README.md
29
28
  - Rakefile
30
- - bin/rake
31
29
  - lib/rack-zippy.rb
32
30
  - lib/rack-zippy/asset_compiler.rb
33
31
  - lib/rack-zippy/serveable_file.rb
@@ -67,7 +65,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
67
65
  version: '0'
68
66
  segments:
69
67
  - 0
70
- hash: -1213525352478824492
68
+ hash: 2483500908093930156
71
69
  required_rubygems_version: !ruby/object:Gem::Requirement
72
70
  none: false
73
71
  requirements:
@@ -76,7 +74,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
76
74
  version: '0'
77
75
  segments:
78
76
  - 0
79
- hash: -1213525352478824492
77
+ hash: 2483500908093930156
80
78
  requirements: []
81
79
  rubyforge_project:
82
80
  rubygems_version: 1.8.23.2
data/bin/rake DELETED
@@ -1,16 +0,0 @@
1
- #!/usr/bin/env ruby
2
- #
3
- # This file was generated by Bundler.
4
- #
5
- # The application 'rake' is installed as part of a gem, and
6
- # this file is here to facilitate running it.
7
- #
8
-
9
- require 'pathname'
10
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
- Pathname.new(__FILE__).realpath)
12
-
13
- require 'rubygems'
14
- require 'bundler/setup'
15
-
16
- load Gem.bin_path('rake', 'rake')