Sha256: 555c18da69c9650ad04dce7f98a590969325f53b58085221077a8231296ddf87
Contents?: true
Size: 1003 Bytes
Versions: 5
Compression:
Stored size: 1003 Bytes
Contents
# encoding: utf-8 require 'bundler' begin Bundler.setup rescue Bundler::BundlerError => e $stderr.puts e.message $stderr.puts "Run `bundle install` to install missing gems" exit e.status_code end $:.unshift(File.join(File.dirname(__FILE__), './lib')) require 'csl/version' desc 'Run an IRB session with CSL loaded' task :console, [:script] do |t,args| ARGV.clear require 'irb' require 'csl' IRB.conf[:SCRIPT] = args.script IRB.start end require 'rspec/core' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = FileList['spec/**/*_spec.rb'] end require 'cucumber/rake/task' Cucumber::Rake::Task.new(:cucumber) do |t| t.profile = 'default' end task :release do |t| system "gem build csl.gemspec" system "git tag #{CSL::VERSION}" system "git push --tags" system "gem push csl-#{CSL::VERSION}.gem" end task :default => [:spec, :cucumber] begin require 'yard' YARD::Rake::YardocTask.new rescue LoadError => e # ignore end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
csl-1.0.2 | Rakefile |
csl-1.0.1 | Rakefile |
csl-1.0.0 | Rakefile |
csl-1.0.0.pre23 | Rakefile |
csl-1.0.0.pre22 | Rakefile |