octopress-asset-pipeline 2.0.2 → 2.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/octopress-asset-pipeline/version.rb +1 -1
- data/lib/octopress-asset-pipeline.rb +10 -14
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2dd7b0a1048be31d24bf9817f89ce9ab41785744
|
4
|
+
data.tar.gz: f7f6d883910097b1723241fa50ec1da5789f2531
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9a5d985c9982ee64907af1c966ca67875f5a78fb38a84f4f50f0a2ccf6d6d0eef6981d80a7005e19a4d4b8a8f4f30d2fb38258b1ef850c1b9f87ea9c9756aa49
|
7
|
+
data.tar.gz: 6695edf2be1480d41f2a66e235f5e008c3a772c1f11597ae42b2501d61acebf7310ac1a1cc82bc66f71fa8f556d02c918e27ab3216035d785e1dd341c9ef1c51
|
data/CHANGELOG.md
CHANGED
@@ -11,20 +11,8 @@ require 'octopress-asset-pipeline/assets/coffeescript'
|
|
11
11
|
module Octopress
|
12
12
|
module AssetPipeline
|
13
13
|
class Plugin < Ink::Plugin
|
14
|
-
def configuration
|
15
|
-
{
|
16
|
-
name: "Octopress Asset Pipeline",
|
17
|
-
gem: "octopress-asset-pipeline",
|
18
|
-
path: File.expand_path(File.join(File.dirname(__FILE__), "../")),
|
19
|
-
type: "plugin",
|
20
|
-
version: Octopress::AssetPipeline::VERSION,
|
21
|
-
description: "Combine and compress Stylesheets and Javascripts into a single fingerprinted file.",
|
22
|
-
source_url: "https://github.com/octopress/asset-pipeline",
|
23
|
-
local: true
|
24
|
-
}
|
25
|
-
end
|
26
|
-
|
27
14
|
def register
|
15
|
+
reset
|
28
16
|
# Tell Jekyll to read static files and pages
|
29
17
|
# This is necessary when Jekyll isn't being asked to build a site,
|
30
18
|
# like when a user runs the list command to list assets
|
@@ -160,4 +148,12 @@ module Octopress
|
|
160
148
|
end
|
161
149
|
end
|
162
150
|
|
163
|
-
Octopress::Ink.register_plugin(Octopress::AssetPipeline::Plugin
|
151
|
+
Octopress::Ink.register_plugin(Octopress::AssetPipeline::Plugin, {
|
152
|
+
name: "Octopress Asset Pipeline",
|
153
|
+
gem: "octopress-asset-pipeline",
|
154
|
+
path: File.expand_path(File.join(File.dirname(__FILE__), "../")),
|
155
|
+
version: Octopress::AssetPipeline::VERSION,
|
156
|
+
description: "Combine and compress Stylesheets and Javascripts into a single fingerprinted file.",
|
157
|
+
source_url: "https://github.com/octopress/asset-pipeline",
|
158
|
+
local: true
|
159
|
+
})
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: octopress-asset-pipeline
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brandon Mathis
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-03-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: octopress-ink
|