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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4bf8f52797be308b0fdfa1e554444090d2e33e48
4
- data.tar.gz: e132fd80d5986f4e1dac806697cdea6f1a52e5e6
3
+ metadata.gz: 2dd7b0a1048be31d24bf9817f89ce9ab41785744
4
+ data.tar.gz: f7f6d883910097b1723241fa50ec1da5789f2531
5
5
  SHA512:
6
- metadata.gz: 90610db9e3bd25f1ae9e915839c383a0e8de451f2bd13081408d631fff3a6b138ee680c315b0746095a50a4e0ca8082b2ca6a6c92492bf708e5237641448656d
7
- data.tar.gz: 9edd91e188e815a354261e98275cafeeffba580f78a6043630a04c3a01e07a550b86bf08f976b5c7a9169612d1c72ebea3df45f6d428f61759d7edf413ce35bd
6
+ metadata.gz: 9a5d985c9982ee64907af1c966ca67875f5a78fb38a84f4f50f0a2ccf6d6d0eef6981d80a7005e19a4d4b8a8f4f30d2fb38258b1ef850c1b9f87ea9c9756aa49
7
+ data.tar.gz: 6695edf2be1480d41f2a66e235f5e008c3a772c1f11597ae42b2501d61acebf7310ac1a1cc82bc66f71fa8f556d02c918e27ab3216035d785e1dd341c9ef1c51
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ### 2.0.3 - 2015-03-04
4
+
5
+ - Added plugin reset and compatibility with the latest Octopress Ink.
6
+
3
7
  ### 2.0.2 - 2015-02-15
4
8
 
5
9
  - Now using the default sorting built in to Octopress Ink.
@@ -1,5 +1,5 @@
1
1
  module Octopress
2
2
  module AssetPipeline
3
- VERSION = "2.0.2"
3
+ VERSION = "2.0.3"
4
4
  end
5
5
  end
@@ -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.2
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-02-15 00:00:00.000000000 Z
11
+ date: 2015-03-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: octopress-ink