jekyll-bower 1.0.2 → 1.0.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/jekyll-bower.gemspec +24 -15
- data/lib/jekyll/plugin_version.rb +1 -1
- data/lib/jekyll_bower.rb +2 -2
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fce8997900fd6df228cf27cbd81ed682e5d06350
|
4
|
+
data.tar.gz: f583ba97b219835c8475f9f0c93c10ebf072720f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7093bd1660e14c580168430035add90675d672df0d466a61a81d5ce34a272c9f4dbe59fe1082db896f0664539d1b87b560c20190cb47c68c1bb88e8cc33bd152
|
7
|
+
data.tar.gz: 5175fcc2a91a6d5c50ede1b9897d0662c1491903fbb1a8fc1f6db6fe56ea64b071ce4e3c65777b4691359eead8bc010d15fd853d9be0532fb52af6d3186ccfd0
|
data/jekyll-bower.gemspec
CHANGED
@@ -3,19 +3,28 @@ lib = File.expand_path('../lib', __FILE__)
|
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
4
|
require 'jekyll/plugin_version'
|
5
5
|
|
6
|
-
Gem::Specification.new do |
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'jekyll-bower'
|
8
|
+
spec.version = Jekyll::Bower::VERSION
|
9
|
+
spec.summary = "This plugin helps install bower that helps resolve JavaScript dependencies"
|
10
|
+
spec.description = "This plugin helps install bower that helps resolve JavaScript dependencies"
|
11
|
+
spec.authors = ["Rohan Sakhale"]
|
12
|
+
spec.email = 'rohansakhale@gmail.com'
|
13
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
14
|
+
spec.require_paths = ['lib']
|
15
|
+
spec.homepage = 'https://gitlab.com/SaiAshirwadInformatia/Jekyll-Bower'
|
16
|
+
spec.license = 'MIT'
|
17
|
+
|
18
|
+
# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
|
19
|
+
# delete this section to allow pushing this gem to any host.
|
20
|
+
if spec.respond_to?(:metadata)
|
21
|
+
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
|
22
|
+
else
|
23
|
+
raise 'RubyGems 2.0 or newer is required to protect against public gem push.'
|
24
|
+
end
|
25
|
+
|
26
|
+
spec.add_dependency 'jekyll', '~> 3.2'
|
27
|
+
spec.add_development_dependency 'bundler', '~> 1.10'
|
28
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
29
|
+
spec.add_development_dependency 'minitest', '~> 5.9.0'
|
21
30
|
end
|
data/lib/jekyll_bower.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Generate script code for Google Analytics with Liquid Tag
|
2
2
|
require 'jekyll'
|
3
|
-
|
4
|
-
|
3
|
+
require 'jekyll/bower_plugin'
|
4
|
+
require 'jekyll/plugin_version'
|
5
5
|
|
6
6
|
# Register Jekyll Site Post Read hook of Bower plugin
|
7
7
|
Jekyll::Hooks.register :site, :post_read do |jekyll| # jekyll here acts as site global object
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rohan Sakhale
|
@@ -84,7 +84,8 @@ files:
|
|
84
84
|
homepage: https://gitlab.com/SaiAshirwadInformatia/Jekyll-Bower
|
85
85
|
licenses:
|
86
86
|
- MIT
|
87
|
-
metadata:
|
87
|
+
metadata:
|
88
|
+
allowed_push_host: https://rubygems.org
|
88
89
|
post_install_message:
|
89
90
|
rdoc_options: []
|
90
91
|
require_paths:
|