Skip to content

Commit

Permalink
Jekyll initial configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
pabloFuente committed Jun 16, 2017
1 parent ffad026 commit c1e0e22
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
language: ruby
rvm:
- 2.3.3

install:
- bundle install
- gem install jekyll
- gem install html-proofer

script: jekyll build && htmlproofer ./_site

branches:
only:
- master

env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer

sudo: false

31 changes: 31 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
source "https://rubygems.org"
ruby RUBY_VERSION

# Hello! This is where you manage which Jekyll version is used to run.
# When you want to use a different version, change it below, save the
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
#
# bundle exec jekyll serve
#
# This will help ensure the proper Jekyll version is running.
# Happy Jekylling!
gem "jekyll"

# This is the default theme for new Jekyll sites. You may change this to anything you like.
gem "minima", "~> 2.0"

# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
# uncomment the line below. To upgrade, run `bundle update github-pages`.
# gem "github-pages", group: :jekyll_plugins

# If you have any plugins, put them here!
group :jekyll_plugins do
gem "jekyll-feed", "~> 0.6"
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]



gem 'jekyll-paginate'
Empty file added css/style.css
Empty file.
Empty file added docs/index.html
Empty file.
Empty file added index.html
Empty file.
Empty file added js/script.js
Empty file.

0 comments on commit c1e0e22

Please sign in to comment.