Sha256: 48f133e4487536922afa91608f65c90bfe706b45de3b586ca76426a9c53394af

Contents?: true

Size: 1.04 KB

Versions: 18

Compression:

Stored size: 1.04 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "chicago-etl"
  gem.homepage = "http://github.com/notonthehighstreet/chicago-etl"
  gem.license = "MIT"
  gem.summary = "Chicago ETL"
  gem.description = "ETL tools for Chicago"
  gem.email = "roland.swingler@gmail.com"
  gem.authors = ["Roland Swingler"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = FileList['spec/**/*_spec.rb']
end

RSpec::Core::RakeTask.new(:rcov) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end

task :default => :spec

require 'yard'
YARD::Rake::YardocTask.new

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
chicago-etl-0.3.0 Rakefile
chicago-etl-0.2.7 Rakefile
chicago-etl-0.2.5 Rakefile
chicago-etl-0.2.4 Rakefile
chicago-etl-0.2.3 Rakefile
chicago-etl-0.2.2 Rakefile
chicago-etl-0.2.1 Rakefile
chicago-etl-0.2.0 Rakefile
chicago-etl-0.1.4 Rakefile
chicago-etl-0.1.3 Rakefile
chicago-etl-0.1.2 Rakefile
chicago-etl-0.1.1 Rakefile
chicago-etl-0.1.0 Rakefile
chicago-etl-0.0.13 Rakefile
chicago-etl-0.0.12 Rakefile
chicago-etl-0.0.11 Rakefile
chicago-etl-0.0.10 Rakefile
chicago-etl-0.0.9 Rakefile