jekyll-bower 1.0.5 → 1.0.6
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/LICENSE.md +1 -1
- data/README.md +38 -1
- data/lib/jekyll-bower.rb +1 -0
- data/lib/jekyll/plugin_version.rb +1 -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: 384dd79de153b7acfce02b08ec8aa8e9446a67ed
|
4
|
+
data.tar.gz: a5c4a3e658275d3f8fbc926a03a4d40d741d3319
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f87f4e5fb6b1574effebf098d155c0037b3526e3a0c73fc916b9fd807a7141ffe5745a1a3a33d687c004672da1ba311186cc6a1d293e8d5824764126d80870a
|
7
|
+
data.tar.gz: 5d16669adc1de2f8b26bd91b34f8b55d29b110b7fcc9d63397d9b17e6a81391e9c5d25a630aae5669060088f1e0f819595d4a92a07b6e26adcf2b5473380e1ce
|
data/LICENSE.md
CHANGED
data/README.md
CHANGED
@@ -1 +1,38 @@
|
|
1
|
-
# Jekyll Bower
|
1
|
+
# Jekyll Bower [](https://badge.fury.io/rb/jekyll-bower)
|
2
|
+
|
3
|
+
This plugin provides support for resolving JavaScript dependencies using **bower**
|
4
|
+
|
5
|
+
### Installation
|
6
|
+
|
7
|
+
This plugin is available as a [RubyGem](https://rubygems.org/gems/jekyll-bower/)
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```
|
12
|
+
gem 'jekyll-bower'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute the `bundle install` command to install the gem.
|
16
|
+
|
17
|
+
Alternatively, you can also manually install the gem using the following command:
|
18
|
+
|
19
|
+
```
|
20
|
+
$ gem install jekyll-autoprefixer
|
21
|
+
```
|
22
|
+
|
23
|
+
After the plugin has been installed successfully, add the following lines to your _config.yml in order to tell Jekyll to use the plugin:
|
24
|
+
|
25
|
+
```yaml
|
26
|
+
gems:
|
27
|
+
- jekyll-bower
|
28
|
+
```
|
29
|
+
|
30
|
+
### Contribute
|
31
|
+
|
32
|
+
Fork this repository, make your changes and then issue a pull request. If you find bugs or have new ideas that you do not want to implement yourself, file a bug report.
|
33
|
+
|
34
|
+
### Copyright
|
35
|
+
|
36
|
+
Copyright (c) 2016 Rohan Sakhale
|
37
|
+
|
38
|
+
License: MIT
|
data/lib/jekyll-bower.rb
CHANGED
@@ -7,6 +7,7 @@ require 'jekyll/plugin_version'
|
|
7
7
|
Jekyll::Hooks.register :site, :pre_render do |jekyll| # jekyll here acts as site global object
|
8
8
|
Jekyll::Bower.new()
|
9
9
|
print "Reading newly generated bower components"
|
10
|
+
jekyll.reset()
|
10
11
|
jekyll.read()
|
11
12
|
print "Looks like verything is ready"
|
12
13
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-bower
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rohan Sakhale
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-09-
|
11
|
+
date: 2016-09-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|