geoffrey 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +2 -2
- data/Gemfile.lock +1 -1
- data/Rakefile +9 -1
- data/lib/geoffrey/version.rb +1 -1
- metadata +2 -2
data/.gitignore
CHANGED
data/Gemfile.lock
CHANGED
data/Rakefile
CHANGED
@@ -10,5 +10,13 @@ end
|
|
10
10
|
|
11
11
|
desc "Generate docs"
|
12
12
|
task :docs do
|
13
|
-
puts `bundle exec yardoc
|
13
|
+
puts `bundle exec yardoc -o ./site/docs`
|
14
14
|
end
|
15
|
+
|
16
|
+
desc "Generate and publish docs"
|
17
|
+
task :publish_docs => :docs do
|
18
|
+
puts `cd site ; git add --all ; git commit -m 'Updated docs to #{Geoffrey::VERSION}' ; git push origin gh-pages`
|
19
|
+
end
|
20
|
+
|
21
|
+
desc "Build new version and push docs"
|
22
|
+
task :ship_this_shit => [:release,:publish_docs]
|
data/lib/geoffrey/version.rb
CHANGED