assets_live_compile 0.1.0 → 0.1.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: 5e88adf500e9fe5c1fea18470692c470c4b28beb
4
- data.tar.gz: 7a6b68b845349ec0d7199136e24632b32c7bfe37
3
+ metadata.gz: 5e28304f4e98f4ac5c3d2c8bd04c3db958f637e6
4
+ data.tar.gz: e01de37fc935f169875d647c999fe4e83af321bb
5
5
  SHA512:
6
- metadata.gz: 5112c1bd76503570605b4e3912b324e97c43465541bca29872e52c9af119fa06fca14a411cbea714f2e6cb82e29643fc54e928e5b63a0b6e480c883493d701c9
7
- data.tar.gz: 47c1d97d8e2f37fa3665285022c56c6b95be05ccb99a8ae53883f694c79e16ec3e7afd886ae674f3492cb2f4547682328af326f7bdabd3f699f2f33637c494e0
6
+ metadata.gz: 31566574ba107908e7a9af8479a56aa52c71fc1148535b94f6f2872f223b66f3f3d219fdf7ef5432c7782e682f5c0ab6021b024e00283c71db71dc695626fdf5
7
+ data.tar.gz: c2ef3ab7b274e0d87ce0018cfe9047b68f2a2a69dccf0c445ff7ec694598fff84ee7fb304a90a0b74df2a309e7a69cbd9e07017c60552e81df76eed1fb2a0e3a
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "assets_live_compile"
5
5
  s.license = "LGPL-3.0"
6
- s.version = '0.1.0'
6
+ s.version = '0.1.1'
7
7
  s.platform = Gem::Platform::RUBY
8
8
  s.authors = ["Braulio Bhavamitra"]
9
9
  s.email = ["brauliobo@gmail.com"]
@@ -1 +1,18 @@
1
- require_relative 'active_support/cache'
1
+ require 'active_support/cache'
2
+
3
+ module ActiveSupport
4
+ module Cache
5
+ autoload :AssetsLiveCompileStore, 'active_support/cache/assets_live_compile_store'
6
+
7
+ class Entry
8
+ attr_accessor :original_value
9
+
10
+ def initialize_with_original_value value, options = {}
11
+ @original_value = value
12
+ initialize_without_original_value value, options
13
+ end
14
+ alias_method_chain :initialize, :original_value
15
+
16
+ end
17
+ end
18
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: assets_live_compile
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Braulio Bhavamitra
@@ -61,7 +61,6 @@ files:
61
61
  - LICENSE
62
62
  - README.md
63
63
  - assets_live_compile.gemspec
64
- - lib/active_support/cache.rb
65
64
  - lib/active_support/cache/assets_live_compile_store.rb
66
65
  - lib/assets_live_compile.rb
67
66
  homepage: http://github.com/coletivoEITA/assets_live_compile
@@ -1,18 +0,0 @@
1
- require 'active_support/cache'
2
-
3
- module ActiveSupport
4
- module Cache
5
- autoload :AssetsLiveCompileStore, 'active_support/cache/assets_live_compile_store'
6
-
7
- class Entry
8
- attr_accessor :original_value
9
-
10
- def initialize_with_original_value value, options = {}
11
- @original_value = value
12
- initialize_without_original_value value, options
13
- end
14
- alias_method_chain :initialize, :original_value
15
-
16
- end
17
- end
18
- end