Skip to content

Commit

Permalink
initial travis auto-deploy steps
Browse files Browse the repository at this point in the history
  • Loading branch information
moredip committed May 26, 2013
1 parent dd98313 commit 665117c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
language: ruby
rvm:
- 1.9.3

install:
- "rake generate"
- "rake deploy"

1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
source 'http://rubygems.org'
gem "rake"
gem "jekyll", "0.11.0"
gem "liquid", "~>2.2.2"
gem "microstatic", "~> 0.1.0"
5 changes: 5 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
require 'aws/s3'
require_relative 'tasks/deploy_tasks.rb'


desc "use jekyll to generate the static site into the `public` dir"
task :generate do
sh "jekyll public"
end

0 comments on commit 665117c

Please sign in to comment.