octopress-asset-pipeline 1.1.2 → 1.1.3
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 +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +11 -12
- data/lib/octopress-asset-pipeline/version.rb +1 -1
- data/lib/octopress-asset-pipeline.rb +2 -1
- 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: 2187bc9893b958af5087000cbe6b619492578436
|
|
4
|
+
data.tar.gz: 3266a3f8d575861657ff1b82d8dee2364ddc1e71
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b1e5c135f6665e7451cc53167b30a0b7462c3825ccaec64118d482028dc65438794be1e69a96ba3fc384b62fcb376934e9f27c26a0b9a71830a814680a64945d
|
|
7
|
+
data.tar.gz: 7a9dcb69164705f63f250d3de5a2fb536716e5acba98ca012b0e1931077dc87b56de98fc0114af43deaa54c3995597a7f3728c8212593f4359e4a5006a543115
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -8,27 +8,26 @@ the necessary script or link tags.
|
|
|
8
8
|
|
|
9
9
|
## Installation
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
### Using Bundler
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
Add this gem to your site's Gemfile in the `:jekyll_plugins` group:
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
group :jekyll_plugins do
|
|
16
|
+
gem 'octopress-asset-pipeline'
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
Then install the gem with Bundler
|
|
16
20
|
|
|
17
21
|
$ bundle
|
|
18
22
|
|
|
19
|
-
|
|
23
|
+
### Manual Installation
|
|
20
24
|
|
|
21
25
|
$ gem install octopress-asset-pipeline
|
|
22
26
|
|
|
27
|
+
Then add the gem to your Jekyll configuration.
|
|
23
28
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
Add the gem to Jekyll's configuration file:
|
|
27
|
-
|
|
28
|
-
```yaml
|
|
29
|
-
gems:
|
|
30
|
-
- octopress-asset-pipeline
|
|
31
|
-
```
|
|
29
|
+
gems:
|
|
30
|
+
-octopress-asset-pipeline
|
|
32
31
|
|
|
33
32
|
## Liquid tags
|
|
34
33
|
|
|
@@ -14,10 +14,11 @@ module Octopress
|
|
|
14
14
|
def configuration
|
|
15
15
|
{
|
|
16
16
|
name: "Octopress Asset Pipeline",
|
|
17
|
+
gem: "octopress-asset-pipeline",
|
|
17
18
|
path: File.expand_path(File.join(File.dirname(__FILE__), "../")),
|
|
18
19
|
type: "plugin",
|
|
19
20
|
version: Octopress::AssetPipeline::VERSION,
|
|
20
|
-
description: "Combine and compress
|
|
21
|
+
description: "Combine and compress Stylesheets and Javascripts into a single fingerprinted file.",
|
|
21
22
|
source_url: "https://github.com/octopress/asset-pipeline",
|
|
22
23
|
local: true
|
|
23
24
|
}
|
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: 1.1.
|
|
4
|
+
version: 1.1.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-01-
|
|
11
|
+
date: 2015-01-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: octopress-ink
|