classy_assets 0.1.1 → 0.1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 55b4167e9611dfaacd69733306f940c682bd653e
4
- data.tar.gz: 15f98735560bd291bfa45f0ed1bbe233b2f61899
3
+ metadata.gz: 020219992bb6cd84706306b9ee831574d77d7c8f
4
+ data.tar.gz: 99166227483200b542ce9befa0865a2dbf5a63cd
5
5
  SHA512:
6
- metadata.gz: f3c94124064d2c8dae0bd58c9845bbd95639b792b852e5c15d0cce0a8471a71ed3208ed9311b2b894a094c6bac991c84dfe62459b9badb6bb747ad57eeed2b2a
7
- data.tar.gz: 3a4595dbdf2f740f4d6a14172c8a9f0c33c62e56a50e35e16b7fbb54aacf9ef720599342b8434b14f24eb48901e2636c49edf3e29c09dd3171d17f7c7e7523d1
6
+ metadata.gz: 11ef97793fd1efc886586a03fa73aac4b6779538ecc55f72de6a4acea6bf332cb27ef554a7ddb63c43410e2964a74c4cd1ffae1150be467748ee331beb69d750
7
+ data.tar.gz: 394895fc6514761e6817973c1149ab19ea56357026196607f81d07687a1a24dee72a94c315f331f5ef6e4d92ed3c106a64c1e8a7fc19a623dd2dd73cf583347d
data/lib/classy_assets.rb CHANGED
@@ -88,7 +88,9 @@ module ClassyAssets
88
88
 
89
89
  def self.sprockets
90
90
  @sprockets ||= Sprockets::Environment.new(root_path)
91
- asset_paths.each { |asset_path| @sprockets.append_path asset_path unless @sprockets.paths.include? asset_path }
91
+ asset_paths.each do |asset_path|
92
+ @sprockets.append_path asset_path unless @sprockets.paths.include? asset_path
93
+ end
92
94
  @sprockets
93
95
  end
94
96
  end
@@ -1,3 +1,3 @@
1
1
  module ClassyAssets
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
@@ -14,6 +14,7 @@ module Sinatra
14
14
 
15
15
  config.asset_host = ::ClassyAssets::Configuration.asset_host
16
16
  config.debug = ::ClassyAssets::Configuration.debug_mode
17
+ config.digest = ::ClassyAssets::Configuration.asset_digest
17
18
  config.environment = ::ClassyAssets::Configuration.sprockets
18
19
  config.manifest = ::Sprockets::Manifest.new(::ClassyAssets::Configuration.sprockets, manifest_file) if ::File.exists? manifest_file
19
20
  config.prefix = ::ClassyAssets::Configuration.asset_prefix
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: classy_assets
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - StyleSeek Engineering
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-07-31 00:00:00.000000000 Z
11
+ date: 2013-08-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sinatra