google_storage 0.0.3 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -3,5 +3,8 @@
3
3
  Gemfile.lock
4
4
  pkg/*
5
5
  .idea
6
+ .yardoc
7
+ .yardoc/*
8
+
6
9
 
7
10
 
data/.yardopts ADDED
@@ -0,0 +1 @@
1
+ --no-private lib/**/*.rb - README.textile
data/Rakefile CHANGED
@@ -1,3 +1,16 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+ require 'rake/rdoctask'
1
4
  require 'bundler'
5
+
2
6
  Bundler::GemHelper.install_tasks
3
7
 
8
+
9
+ desc 'Generate documentation for the google_storage gem'
10
+ Rake::RDocTask.new(:rdoc) do |rdoc|
11
+ rdoc.rdoc_dir = 'rdoc'
12
+ rdoc.title = 'Google Storage'
13
+ rdoc.options << '--line-numbers' << '--inline-source'
14
+ rdoc.rdoc_files.include('README.textile')
15
+ rdoc.rdoc_files.include('lib/**/*.rb')
16
+ end