-
Notifications
You must be signed in to change notification settings - Fork 1
/
Rakefile
42 lines (34 loc) · 1.1 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env rake
require "bundler/gem_tasks"
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)
# require "rake/testtask"
# require 'rake/gempackagetask'
# Rake::TestTask.new('test') do |t|
# t.pattern = 'test/tc_*.rb'
# t.libs = [File.expand_path("lib")]
# t.warning = true
# end
# desc "Run all rspec examples"
# Spec::Rake::SpecTask.new('spec') do |t|
# t.spec_files = FileList['spec/*_spec.rb']
# end
# spec = Gem::Specification.new do |s|
# s.name = "dataset"
# s.version = "0.11"
# s.author = "Jason May"
# s.email = "[email protected]"
# s.homepage = "http://numbrary.com/"
# s.platform = Gem::Platform::RUBY
# s.summary = "Dataset manipulation routines for Numbrary"
# s.files = FileList["{bin,lib}/**/*"].to_a
# s.require_path = "lib"
# s.test_files = FileList["{test}/**/*test.rb"].to_a
# s.has_rdoc = false # please document me
# # s.extra_rdoc_files = ["README"]
# s.add_dependency("fastercsv", ">= 1.2.3")
# s.rubyforge_project = nil # this isn't going out to the world
# end
# Rake::GemPackageTask.new(spec) do |pkg|
# pkg.need_tar = true
# end