Skip to content

Commit

Permalink
Suddenly, jekyll everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
henrycatalinismith committed Aug 25, 2014
1 parent 789df6a commit b573e29
Show file tree
Hide file tree
Showing 5 changed files with 74 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
@@ -1,2 +1,4 @@
node_modules
_site
.DS_Store
bower_components/
5 changes: 5 additions & 0 deletions Gemfile
@@ -0,0 +1,5 @@
source "https://rubygems.org"
gem "jekyll", "1.0.0"
gem "jekyll-assets"
gem "rake"
gem "sass"
61 changes: 61 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,61 @@
GEM
remote: https://rubygems.org/
specs:
classifier (1.3.4)
fast-stemmer (>= 1.0.0)
colorator (0.1)
commander (4.1.6)
highline (~> 1.6.11)
directory_watcher (1.4.1)
fast-stemmer (1.0.2)
highline (1.6.21)
hike (1.2.3)
jekyll (1.0.0)
classifier (~> 1.3)
colorator (~> 0.1)
commander (~> 4.1.3)
directory_watcher (~> 1.4.1)
kramdown (~> 0.14)
liquid (~> 2.3)
maruku (~> 0.5)
pygments.rb (~> 0.4.2)
safe_yaml (~> 0.7.0)
jekyll-assets (0.9.2)
jekyll (>= 1.0.0, < 3.0.0)
sass (~> 3.2)
sprockets (~> 2.10)
sprockets-helpers
sprockets-sass
kramdown (0.14.2)
liquid (2.6.1)
maruku (0.7.2)
multi_json (1.10.1)
posix-spawn (0.3.9)
pygments.rb (0.4.2)
posix-spawn (~> 0.3.6)
yajl-ruby (~> 1.1.0)
rack (1.5.2)
rake (10.3.2)
safe_yaml (0.7.1)
sass (3.4.1)
sprockets (2.12.1)
hike (~> 1.2)
multi_json (~> 1.0)
rack (~> 1.0)
tilt (~> 1.1, != 1.3.0)
sprockets-helpers (1.1.0)
sprockets (~> 2.0)
sprockets-sass (1.2.0)
sprockets (~> 2.0)
tilt (~> 1.1)
tilt (1.4.1)
yajl-ruby (1.1.0)

PLATFORMS
ruby

DEPENDENCIES
jekyll (= 1.0.0)
jekyll-assets
rake
sass
3 changes: 2 additions & 1 deletion Rakefile
Expand Up @@ -2,5 +2,6 @@ task :deploy do
dot_git = File.expand_path(File.join(File.dirname(__FILE__), ".git"))
system "git --git-dir #{dot_git} remote update origin"
system "git --git-dir #{dot_git} reset --hard origin/master"
system "bundle install"
system "bundle exec jekyll build"
end

4 changes: 4 additions & 0 deletions _config.yml
@@ -0,0 +1,4 @@
source: .
destination: _site
plugins: ./_plugins
exclude: [.git, Gemfile, Gemfile.lock, Rakefile, test, node_modules]

0 comments on commit b573e29

Please sign in to comment.