-
Notifications
You must be signed in to change notification settings - Fork 61
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 59
- Loading branch information
Showing
10 changed files
with
73 additions
and
54 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,6 +1,7 @@ | ||
/vendor/gems | ||
.bundle | ||
bin | ||
.bundle | ||
/*.gem | ||
_site | ||
Gemfile.lock | ||
/pkg | ||
_site | ||
/vendor/gems |
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,2 @@ | ||
--color | ||
--require spec_helper |
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,11 @@ | ||
inherit_gem: | ||
jekyll: .rubocop.yml | ||
|
||
AllCops: | ||
Exclude: | ||
- 'vendor/**/*' | ||
|
||
|
||
Metrics/BlockLength: | ||
Exclude: | ||
- 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,20 +1,19 @@ | ||
Gem::Specification.new do |s| | ||
s.name = 'jemoji' | ||
s.summary = 'GitHub-flavored emoji plugin for Jekyll' | ||
s.version = '0.8.1' | ||
s.authors = ['GitHub, Inc.'] | ||
s.email = 'support@github.com' | ||
s.name = "jemoji" | ||
s.summary = "GitHub-flavored emoji plugin for Jekyll" | ||
s.version = "0.8.1" | ||
s.authors = ["GitHub, Inc."] | ||
s.email = "support@github.com" | ||
|
||
s.homepage = 'https://github.com/jekyll/jemoji' | ||
s.licenses = ['MIT'] | ||
s.files = [ 'lib/jemoji.rb' ] | ||
s.homepage = "https://github.com/jekyll/jemoji" | ||
s.licenses = ["MIT"] | ||
s.files = [ "lib/jemoji.rb" ] | ||
|
||
s.add_dependency 'jekyll', '>= 3.0' | ||
s.add_dependency 'html-pipeline', '~> 2.2' | ||
s.add_dependency 'activesupport', '~> 4.0', '>= 4.2.9' | ||
s.add_dependency 'gemoji', '~> 3.0' | ||
s.add_dependency "jekyll", "~> 3.0" | ||
s.add_dependency "html-pipeline", "~> 2.2" | ||
s.add_dependency "activesupport", "~> 4.0", ">= 4.2.9" | ||
s.add_dependency "gemoji", "~> 3.0" | ||
|
||
s.add_development_dependency 'rake' | ||
s.add_development_dependency 'rdoc' | ||
s.add_development_dependency 'rspec', '~> 3.0' | ||
s.add_development_dependency "rspec", "~> 3.0" | ||
s.add_development_dependency "rubocop", "~> 0.38" | ||
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,3 +1,5 @@ | ||
#! /bin/sh | ||
|
||
bundle exec rspec --color --require spec_helper $@ | ||
bundle exec rspec $@ | ||
script/fmt -S -D | ||
bundle exec gem build jemoji.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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/bin/bash | ||
bundle exec 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
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