jekyll-bower 1.0.3 → 1.0.4

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: fce8997900fd6df228cf27cbd81ed682e5d06350
4
- data.tar.gz: f583ba97b219835c8475f9f0c93c10ebf072720f
3
+ metadata.gz: 524fc03f0de8dc1cf2de95a38446d90f21b9b8c9
4
+ data.tar.gz: 4c33dfea7530843f88dff635597c43cce5e2d0b7
5
5
  SHA512:
6
- metadata.gz: 7093bd1660e14c580168430035add90675d672df0d466a61a81d5ce34a272c9f4dbe59fe1082db896f0664539d1b87b560c20190cb47c68c1bb88e8cc33bd152
7
- data.tar.gz: 5175fcc2a91a6d5c50ede1b9897d0662c1491903fbb1a8fc1f6db6fe56ea64b071ce4e3c65777b4691359eead8bc010d15fd853d9be0532fb52af6d3186ccfd0
6
+ metadata.gz: fe31953a4004a5dc0a8ca93f2c9c31cfa74267ff5bc8af5e1729ae3fb6197afb581fbec140f484aca97bf067ee415984c69fdd7f5d82965ff8e8988b310d55c1
7
+ data.tar.gz: 8af417870527f5e9edfc23517e87703bbbbab3304c79895f29e9b83b68179bf929b15c85dc8da4f93dbd4030a2181e53eec5f1b04b6dc0cd43ae05d225b5754a
data/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Chaitali Patil
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
File without changes
@@ -1,6 +1,6 @@
1
1
 
2
2
  module Jekyll
3
3
  class Bower
4
- VERSION = "1.0.3".freeze
4
+ VERSION = "1.0.4".freeze
5
5
  end
6
6
  end
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.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rohan Sakhale
@@ -72,15 +72,11 @@ executables: []
72
72
  extensions: []
73
73
  extra_rdoc_files: []
74
74
  files:
75
- - ".gitignore"
76
- - ".gitlab-ci.yml"
77
- - Gemfile
75
+ - LICENSE.md
78
76
  - README.md
79
- - Rakefile
80
- - jekyll-bower.gemspec
77
+ - lib/jekyll-bower.rb
81
78
  - lib/jekyll/bower_plugin.rb
82
79
  - lib/jekyll/plugin_version.rb
83
- - lib/jekyll_bower.rb
84
80
  homepage: https://gitlab.com/SaiAshirwadInformatia/Jekyll-Bower
85
81
  licenses:
86
82
  - MIT
data/.gitignore DELETED
@@ -1,68 +0,0 @@
1
-
2
- # Created by https://www.gitignore.io/api/bower,ruby,jekyll
3
-
4
- ### Bower ###
5
- bower_components
6
- .bower-cache
7
- .bower-registry
8
- .bower-tmp
9
-
10
-
11
- ### Ruby ###
12
- *.gem
13
- *.rbc
14
- /.config
15
- /coverage/
16
- /InstalledFiles
17
- /pkg/
18
- /spec/reports/
19
- /spec/examples.txt
20
- /test/tmp/
21
- /test/version_tmp/
22
- /tmp/
23
- .bundler-cache
24
-
25
- # Used by dotenv library to load environment variables.
26
- # .env
27
-
28
- ## Specific to RubyMotion:
29
- .dat*
30
- .repl_history
31
- build/
32
- *.bridgesupport
33
- build-iPhoneOS/
34
- build-iPhoneSimulator/
35
-
36
- ## Specific to RubyMotion (use of CocoaPods):
37
- #
38
- # We recommend against adding the Pods directory to your .gitignore. However
39
- # you should judge for yourself, the pros and cons are mentioned at:
40
- # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
41
- #
42
- # vendor/Pods/
43
-
44
- ## Documentation cache and generated files:
45
- /.yardoc/
46
- /_yardoc/
47
- /doc/
48
- /rdoc/
49
-
50
- ## Environment normalization:
51
- /.bundle/
52
- /vendor/bundle
53
- /lib/bundler/man/
54
-
55
- # for a library or gem, you might want to ignore these files since the code is
56
- # intended to run in multiple environments; otherwise, check them in:
57
- Gemfile.lock
58
- # .ruby-version
59
- # .ruby-gemset
60
-
61
- # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
62
- .rvmrc
63
-
64
-
65
- ### Jekyll ###
66
- _site/
67
- .sass-cache/
68
- .jekyll-metadata
data/.gitlab-ci.yml DELETED
@@ -1,15 +0,0 @@
1
- image: ruby:2.1
2
- before_script:
3
- - gem install jekyll
4
- - gem install bundler
5
- - bundle install --path=.bundler-cache
6
- stages:
7
- - test
8
- cache:
9
- paths:
10
- - .bundler-cache
11
-
12
- test:
13
- stage: test
14
- script:
15
- - rake test
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source "https://rubygems.org"
2
- ruby RUBY_VERSION
3
-
4
- gem "minitest", "5.9.0"
data/Rakefile DELETED
@@ -1,11 +0,0 @@
1
- require 'bundler/gem_tasks'
2
- require 'rake/testtask'
3
-
4
- Rake::TestTask.new do |t|
5
- t.libs << 'test'
6
- t.libs << 'lib'
7
- t.test_files = FileList['test/test_*.rb']
8
- end
9
-
10
- desc "Run tests"
11
- task :default => :test
data/jekyll-bower.gemspec DELETED
@@ -1,30 +0,0 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'jekyll/plugin_version'
5
-
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'
30
- end