forked from klandergren/jekyll-last-modified-at
-
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.
- Loading branch information
1 parent
fdf77b3
commit 51396fe
Showing
17 changed files
with
190 additions
and
132 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
inherit_gem: | ||
rubocop-standard: | ||
- config/default.yml | ||
|
||
Style/StringLiterals: | ||
Enabled: true | ||
EnforcedStyle: single_quotes | ||
|
||
RequireParentheses: | ||
Enabled: true | ||
|
||
Naming/FileName: | ||
Enabled: false | ||
|
||
Style/Documentation: | ||
Enabled: false |
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,7 @@ | ||
source "https://rubygems.org" | ||
# frozen_string_literal: true | ||
|
||
source 'https://rubygems.org' | ||
|
||
gemspec | ||
|
||
gem "jekyll", ENV["JEKYLL_VERSION"] if ENV["JEKYLL_VERSION"] | ||
gem 'jekyll', ENV['JEKYLL_VERSION'] if ENV['JEKYLL_VERSION'] |
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,8 +1,14 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'bundler' | ||
Bundler::GemHelper.install_tasks | ||
|
||
require 'rspec/core/rake_task' | ||
|
||
RSpec::Core::RakeTask.new(:spec) | ||
|
||
task :default => :spec | ||
task default: :spec | ||
|
||
require 'rubocop/rake_task' | ||
|
||
RuboCop::RakeTask.new(:rubocop) |
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,17 +1,22 @@ | ||
require File.expand_path('../lib/jekyll-last-modified-at/version.rb', __FILE__) | ||
# frozen_string_literal: true | ||
|
||
require File.expand_path('lib/jekyll-last-modified-at/version.rb', __dir__) | ||
Gem::Specification.new do |s| | ||
s.name = "jekyll-last-modified-at" | ||
s.name = 'jekyll-last-modified-at' | ||
s.version = Jekyll::LastModifiedAt::VERSION | ||
s.summary = "A liquid tag for Jekyll to indicate the last time a file was modified." | ||
s.authors = "Garen J. Torikian" | ||
s.homepage = "https://github.com/gjtorikian/jekyll-last-modified-at" | ||
s.license = "MIT" | ||
s.files = Dir["lib/**/*.rb"] | ||
s.summary = 'A liquid tag for Jekyll to indicate the last time a file was modified.' | ||
s.authors = 'Garen J. Torikian' | ||
s.homepage = 'https://github.com/gjtorikian/jekyll-last-modified-at' | ||
s.license = 'MIT' | ||
s.files = Dir['lib/**/*.rb'] | ||
|
||
s.add_dependency "jekyll", ">= 3.7", " < 5.0" | ||
s.add_dependency "posix-spawn", "~> 0.3.9" | ||
s.add_dependency 'jekyll', '>= 3.7', ' < 5.0' | ||
s.add_dependency 'posix-spawn', '~> 0.3.9' | ||
|
||
s.add_development_dependency "rspec", "~> 3.4" | ||
s.add_development_dependency "rake" | ||
s.add_development_dependency "spork" | ||
s.add_development_dependency 'rake' | ||
s.add_development_dependency 'rspec', '~> 3.4' | ||
s.add_development_dependency 'rubocop' | ||
s.add_development_dependency 'rubocop-performance' | ||
s.add_development_dependency 'rubocop-standard' | ||
s.add_development_dependency 'spork' | ||
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
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,3 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module Jekyll | ||
module LastModifiedAt | ||
module Hook | ||
|
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,7 @@ | ||
# frozen_string_literal: true | ||
|
||
module Jekyll | ||
module LastModifiedAt | ||
VERSION = "1.1.0" | ||
VERSION = '1.1.0' | ||
end | ||
end |
Oops, something went wrong.