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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d996473e2d24ea76675466ea3a88b1e5617aed34
4
- data.tar.gz: b521e5ac527c5a522b30adf337a21c311d9a21af
3
+ metadata.gz: 384dd79de153b7acfce02b08ec8aa8e9446a67ed
4
+ data.tar.gz: a5c4a3e658275d3f8fbc926a03a4d40d741d3319
5
5
  SHA512:
6
- metadata.gz: 56bc92a9f71c27cafcfa454997c36dd1306465e3117e4730a3ce1864251542e5fc3cfed640be02f61a93693784292a3045ef93875a7e383b4a5a9d563bec886f
7
- data.tar.gz: e41d21ce71d9bcd8bef79b0fa8a232430adfdb83837e00e1fcbf62c89db2b4186d0bd71c3356f8509a3c3f3f64a6781969bbda2bf19139c09caf589ef7d7cf4c
6
+ metadata.gz: 7f87f4e5fb6b1574effebf098d155c0037b3526e3a0c73fc916b9fd807a7141ffe5745a1a3a33d687c004672da1ba311186cc6a1d293e8d5824764126d80870a
7
+ data.tar.gz: 5d16669adc1de2f8b26bd91b34f8b55d29b110b7fcc9d63397d9b17e6a81391e9c5d25a630aae5669060088f1e0f819595d4a92a07b6e26adcf2b5473380e1ce
data/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2016 Chaitali Patil
3
+ Copyright (c) 2016 Rohan Sakhale
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -1 +1,38 @@
1
- # Jekyll Bower
1
+ # Jekyll Bower [![Gem Version](https://badge.fury.io/rb/jekyll-bower.svg)](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
@@ -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
@@ -1,6 +1,6 @@
1
1
 
2
2
  module Jekyll
3
3
  class Bower
4
- VERSION = "1.0.5".freeze
4
+ VERSION = "1.0.6".freeze
5
5
  end
6
6
  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.5
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-18 00:00:00.000000000 Z
11
+ date: 2016-09-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll