zk 0.6.4

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,7 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ pkg/*
5
+ Gemfile.lock
6
+ *.log
7
+ html
data/Gemfile ADDED
@@ -0,0 +1,10 @@
1
+ source "http://rubygems.org"
2
+ source "http://rubygems"
3
+ source "http://localhost:50000"
4
+
5
+ # Specify your gem's dependencies in zk.gemspec
6
+ gemspec
7
+
8
+ gem 'ruby-debug'
9
+
10
+ # vim:ft=ruby
data/Rakefile ADDED
@@ -0,0 +1,13 @@
1
+ require 'bundler'
2
+ Bundler::GemHelper.install_tasks
3
+
4
+ require 'rubygems'
5
+ gem 'rdoc', '~> 2.5'
6
+ require 'rdoc/task'
7
+
8
+ RDoc::Task.new do |rd|
9
+ rd.title = 'ZK Documentation'
10
+ rd.rdoc_files.include("lib/**/*.rb")
11
+ end
12
+
13
+