We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a703a1 commit 3becd7eCopy full SHA for 3becd7e
Gemfile
@@ -0,0 +1,9 @@
1
+source 'https://rubygems.org'
2
+
3
+gem 'rake'
4
+gem 'multi_json'
5
+gem 'hashie'
6
+gem 'awesome_print'
7
+gem 'jekyll'
8
+gem 'rdiscount'
9
+gem 'RedCloth'
Rakefile
@@ -47,3 +47,15 @@ YAML
47
end
48
49
50
51
+desc "Run jekyll serve"
52
+task :serve do
53
+ puts "Startup web service"
54
+ `jekyll serve`
55
+end
56
57
+desc "Run jekyll build"
58
+task :build do
59
+ puts "Start to build web pages"
60
+ `jekyll build`
61
0 commit comments