forked from keithmifsud/jekyll-target-blank
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request keithmifsud#44 from keithmifsud/amyspark-jekyll-4
Amyspark jekyll 4
- Loading branch information
Showing
10 changed files
with
218 additions
and
221 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,5 @@ | |
Gemfile.lock | ||
dev_notes.md | ||
.vscode | ||
spec/fixtures/unit/.jekyll-cache | ||
pkg | ||
spec/fixtures/unit/.jekyll-cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
source "https://rubygems.org" | ||
source 'https://rubygems.org' | ||
|
||
gemspec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# frozen_string_literal: true | ||
|
||
require "bundler/gem_tasks" | ||
require "rspec/core/rake_task" | ||
require 'bundler/gem_tasks' | ||
require 'rspec/core/rake_task' | ||
|
||
RSpec::Core::RakeTask.new(:spec) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
# frozen_string_literal: true | ||
|
||
lib = File.expand_path("lib", __dir__) | ||
lib = File.expand_path('lib', __dir__) | ||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | ||
require "jekyll-target-blank/version" | ||
require 'jekyll-target-blank/version' | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = "jekyll-target-blank" | ||
spec.name = 'jekyll-target-blank' | ||
spec.version = JekyllTargetBlank::VERSION | ||
spec.authors = ["Keith Mifsud"] | ||
spec.email = ["[email protected]"] | ||
spec.summary = "Target Blank automatically changes the external links to open in a new browser." | ||
spec.description = "Target Blank automatically changes the external links to open in a new browser for Jekyll sites." | ||
spec.homepage = "https://github.com/keithmifsud/jekyll-target-blank" | ||
spec.license = "MIT" | ||
spec.authors = ['Keith Mifsud'] | ||
spec.email = ['[email protected]'] | ||
spec.summary = 'Target Blank automatically changes the external links to open in a new browser.' | ||
spec.description = 'Target Blank automatically changes the external links to open in a new browser for Jekyll sites.' | ||
spec.homepage = 'https://github.com/keithmifsud/jekyll-target-blank' | ||
spec.license = 'MIT' | ||
spec.files = `git ls-files -z`.split("\x0") | ||
spec.require_paths = ["lib"] | ||
spec.required_ruby_version = ">= 2.3.0" | ||
spec.require_paths = ['lib'] | ||
spec.required_ruby_version = '>= 2.3.0' | ||
spec.add_dependency 'jekyll', '>= 3.0', '<5.0' | ||
spec.add_dependency 'nokogiri', '~> 1.10' | ||
spec.add_development_dependency 'bundler', '~> 2.0' | ||
spec.add_development_dependency 'rake', '~> 12.0' | ||
spec.add_development_dependency 'rspec', '~> 3.0' | ||
spec.add_development_dependency 'rubocop', '>= 0.68.0', '<= 0.72.0' | ||
spec.add_development_dependency "rubocop-jekyll", "~> 0.10.0" | ||
|
||
spec.add_dependency "jekyll", "~> 3.0" | ||
spec.add_dependency "nokogiri", "~> 1.10.4" | ||
|
||
spec.add_development_dependency "bundler", "~> 2.0" | ||
spec.add_development_dependency "rake", "~> 12.0" | ||
spec.add_development_dependency "rspec", "~> 3.0" | ||
spec.add_development_dependency "rubocop", "0.55" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module JekyllTargetBlank | ||
VERSION = "1.2.0" | ||
VERSION = "2.0.0" | ||
end |
Oops, something went wrong.