Skip to content

Commit

Permalink
combobulating the reticulations
Browse files Browse the repository at this point in the history
  • Loading branch information
moutons committed Jul 31, 2016
1 parent 0cad96d commit fa25bd8
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 13 deletions.
13 changes: 13 additions & 0 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2016-07-30 20:22:22 -0500 using RuboCop version 0.39.0.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.

# Offense count: 1
# Configuration parameters: ExpectMatchingDefinition, Regex, IgnoreExecutableScripts.
Style/FileName:
Exclude:
- 'Gemfile'
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ rvm:
- "2.1.8"
- "2.2.5"
- "2.3.1"
script:
- echo YOLO straight to prod
notifications:
slack:
secure: ppR6E8Tzxf+o2Ump0dEE2Xp0GMvDDnq8YN9ll+WCIwGlwVgsvH4jW0vD7to9+tl6Yx5w9cW/YxmF4CDQszUpGH6rAF8CLjXMwD/QgiHjkjkGNPoIU+/sr6oAzvD0iUWOZ8BU7n9FuGI0T/z4MPNH8k16XoxLrYGjAKpKyG0mj502OQTI/BAsAJyXMSeu6wUAyc6iFWdcs36cpOuFT58Dt/3vNrfFqXHZf61mPjKNXzWstIEaglsnVc/t1aOGiN/o2DETm1ysGcVrqIXeSv3wEWIrHUVwoOI3vSe4DvWW93br0aQWDJ2JucMEzvX1K2Jcx1WWMnGiG5tVeQXrWA1tYYXGyfWXYdZrfVJf7WvkLHV4JX2j3AgKAaUMvFA1AZeApM4DPHM+3tGZpZwzHZD992rQhyzjqydFzxuIya6nwwmS/LwH4J4nHvs0OQalC8A6zEX9EMhte/WBgAYr+mWQqamKjdv1JQd8vEQQZweUDc51WBdkodRYjmBcJNak/+5KcSL5ecw+GTqpCtnSEd4s+h3PKFX90AR5Gxeorju3KYAPuH6nqp1S3zdv5QlJQH9VDkUqPeH9zsI8pyqypHgJdO/wNf1HfRvYPvodxrRBrON+1OQkAn3pCjEs7zVRQMTraUQ6w2ptIhAhwAk7w1gIABEbmLoj1s0I/54co328828=
Expand Down
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
source 'https://rubygems.org'

gem 'html-proofer'
gem 'jekyll'
gem 'jekyll-redirect-from'
gem 'jekyll-paginate'
gem 'jekyll-sitemap'
gem 'jekyll-feed'
gem 'jemoji'
gem 'kramdown'
gem 'rake'
gem 'rubocop'
17 changes: 10 additions & 7 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,16 @@
load '_rake-configuration.rb' if File.exist?('_rake-configuration.rb')
load '_rake_configuration.rb' if File.exist?('_rake_configuration.rb')
#
# OK now starting main engines
#
# Specify default values for variables NOT set by the user
puts 'Starting main engines!'

# post_ext ||= '.md'
# post_dir ||= '_posts/'
# git_check ||= true
# git_autopush ||= false
#

desc 'Test site using HTML::Proofer'
task :proof_sitedir do
system 'bundle exec jekyll build'
# system 'bundle exec htmlproofer --allow-hash-href --assume-extension ./_site'
jekyll('build')
HTMLProofer.check_directory(
'./_site/',
allow_hash_href: true,
Expand All @@ -32,9 +28,16 @@ task :proof_sitedir do
'http://validator.w3.org/check?uri=referer'
]
).run
puts 'YOLO that shit straight to prod, son!'
end

desc 'Test site'
task test: [:proof_sitedir] do
cleanup
end

#
# and the rest
# and the rest of the tasks
#
desc 'Clean up generated site'
task :clean do
Expand Down
6 changes: 3 additions & 3 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ twitter_username: tirefirebot
github_username: tirefire

# Build settings
gems:
- jekyll-sitemap
- jekyll-feed
markdown: kramdown

kramdown:
input: GFM
syntax_highlighter: rouge

exclude:
- Gemfile
- Gemfile.lock
- Rakefile
- README.md
- vendor

google_analytics_tracking_id: UA-79918240-1

0 comments on commit fa25bd8

Please sign in to comment.