-
Notifications
You must be signed in to change notification settings - Fork 31
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 #23 from janosrusiczki/rubocop-fixes
Rubocop fixes.
- Loading branch information
Showing
17 changed files
with
192 additions
and
181 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 |
---|---|---|
@@ -1,4 +1,2 @@ | ||
inherit_from: .rubocop_todo.yml | ||
|
||
Encoding: | ||
EnforcedStyle: when_needed |
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,7 +1,7 @@ | ||
language: ruby | ||
|
||
rvm: | ||
- 2.1.0 | ||
- 2.2 | ||
|
||
script: | ||
- bundle exec rake test | ||
|
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 |
---|---|---|
|
@@ -7,28 +7,28 @@ Gem::Specification.new do |s| | |
s.name = 'japr' | ||
s.version = JAPR::VERSION | ||
s.date = Time.now | ||
s.summary = <<-EOF | ||
s.summary = <<-SUMMARY | ||
A powerful asset pipeline for Jekyll that bundles, converts, and minifies | ||
CSS and JavaScript assets. | ||
EOF | ||
s.description = <<-EOF | ||
SUMMARY | ||
s.description = <<-DESCRIPTION | ||
Jekyll Asset Pipeline reborn adds asset preprocessing (CoffeeScript, Sass, | ||
Less, ERB, etc.) and asset compression / minification / gzip (Yahoo YUI | ||
Compressor, Google Closure Compiler, etc.) to Jekyll.' | ||
EOF | ||
DESCRIPTION | ||
s.authors = ['Matt Hodan'] | ||
s.email = '[email protected]' | ||
s.homepage = 'https://github.com/kitsched/japr' | ||
s.license = 'MIT' | ||
s.required_ruby_version = '>= 2.1.0' | ||
s.required_ruby_version = '>= 2.2.0' | ||
|
||
# Runtime dependencies | ||
s.add_runtime_dependency 'jekyll', '~> 3.5' | ||
s.add_runtime_dependency 'liquid', '~> 4.0' | ||
|
||
# Development dependencies | ||
s.add_development_dependency 'rake', '~> 10.0' | ||
s.add_development_dependency 'minitest', '~> 5.2' | ||
s.add_development_dependency 'rake', '~> 10.0' | ||
|
||
# Files | ||
s.files = Dir['lib/**/*.rb', 'LICENSE', 'README.md'].to_a | ||
|
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 |
---|---|---|
|
@@ -50,5 +50,5 @@ module JAPR | |
'bundle' => true, | ||
'compress' => true, | ||
'gzip' => false | ||
} | ||
}.freeze | ||
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
Oops, something went wrong.