2010-12-08 02:30:38 -05:00
|
|
|
require 'rake/clean'
|
2011-12-11 17:30:54 -05:00
|
|
|
require 'rubygems/package_task'
|
2011-04-29 11:16:53 -04:00
|
|
|
|
|
|
|
$:.unshift 'lib'
|
2011-04-29 11:13:44 -04:00
|
|
|
require 'pry/version'
|
2010-12-08 02:30:38 -05:00
|
|
|
|
2011-12-11 17:32:29 -05:00
|
|
|
CLOBBER.include('**/*~', '**/*#*', '**/*.log')
|
|
|
|
CLEAN.include('**/*#*', '**/*#*.*', '**/*_flymake*.*', '**/*_flymake', '**/*.rbc', '**/.#*.*')
|
2010-12-08 02:30:38 -05:00
|
|
|
|
2011-09-20 15:38:18 -04:00
|
|
|
desc "Set up and run tests"
|
|
|
|
task :default => [:test]
|
|
|
|
|
2012-12-11 10:05:03 -05:00
|
|
|
def run_specs paths
|
Switch test suite to RSpec
Removes Bacon and Mocha
Reasoning explained in this comment: https://github.com/pry/pry/issues/277#issuecomment-51708712
Mostly this went smoothly. There were a few errors that I fixed along
the way, e.g. tests that were failing but for various reasons still
passed. Should have documented them, but didn't think about it until
very near the end. But generaly, I remember 2 reasons this would happen:
`lambda { raise "omg" }.should.raise(RuntimeError, /not-omg/)` will pass
because the second argument is ignored by Bacon. And `1.should == 2`
will return false instead of raising an error when it is not in an it
block (e.g. if stuck in a describe block, that would just return false)
The only one that I felt unsure about was spec/helpers/table_spec.rb
`Pry::Helpers.tablify_or_one_line('head', %w(ing)).should == 'head: ing'`
This is wrong, but was not failing because it was in a describe block
instead of an it block. In reality, it returns `"head: ing\n"`,
I updated the test to reflect this, though I don't know for sure
this is the right thing to do
This will fail on master until https://github.com/pry/pry/pull/1281 is merged.
This makes https://github.com/pry/pry/pull/1278 unnecessary.
2014-08-10 18:26:47 -04:00
|
|
|
format = ENV['VERBOSE'] ? '--format documentation ' : ''
|
2015-01-22 13:24:59 -05:00
|
|
|
sh "rspec -w #{format}#{paths.join ' '}"
|
2012-12-11 10:05:03 -05:00
|
|
|
end
|
|
|
|
|
2011-06-09 07:18:21 -04:00
|
|
|
desc "Run tests"
|
2010-12-08 02:30:38 -05:00
|
|
|
task :test do
|
2012-12-11 10:05:03 -05:00
|
|
|
paths =
|
2012-12-08 10:08:54 -05:00
|
|
|
if explicit_list = ENV['run']
|
|
|
|
explicit_list.split(',')
|
|
|
|
else
|
2014-03-14 01:22:21 -04:00
|
|
|
Dir['spec/**/*_spec.rb'].shuffle!
|
2012-12-08 10:08:54 -05:00
|
|
|
end
|
2012-12-11 10:05:03 -05:00
|
|
|
run_specs paths
|
2010-12-08 02:30:38 -05:00
|
|
|
end
|
2012-11-15 00:37:37 -05:00
|
|
|
task :spec => :test
|
2010-12-08 02:30:38 -05:00
|
|
|
|
2012-12-11 10:05:03 -05:00
|
|
|
task :recspec do
|
|
|
|
all = Dir['spec/**/*_spec.rb'].sort_by{|path| File.mtime(path)}.reverse
|
|
|
|
warn "Running all, sorting by mtime: #{all[0..2].join(' ')} ...etc."
|
|
|
|
run_specs all
|
|
|
|
end
|
|
|
|
|
2013-01-27 04:20:39 -05:00
|
|
|
desc "Run pry (you can pass arguments using _ in place of -)"
|
2011-01-26 05:13:46 -05:00
|
|
|
task :pry do
|
2013-01-27 04:20:39 -05:00
|
|
|
ARGV.shift if ARGV.first == "pry"
|
|
|
|
ARGV.map! do |arg|
|
|
|
|
arg.sub(/^_*/) { |m| "-" * m.size }
|
|
|
|
end
|
2011-05-29 23:54:42 -04:00
|
|
|
load 'bin/pry'
|
2011-01-26 05:13:46 -05:00
|
|
|
end
|
|
|
|
|
2013-02-12 06:08:38 -05:00
|
|
|
desc "Show pry version."
|
2011-01-26 13:05:40 -05:00
|
|
|
task :version do
|
|
|
|
puts "Pry version: #{Pry::VERSION}"
|
|
|
|
end
|
|
|
|
|
2011-12-17 22:12:18 -05:00
|
|
|
desc "Profile pry's startup time"
|
|
|
|
task :profile do
|
|
|
|
require 'profile'
|
|
|
|
require 'pry'
|
|
|
|
Pry.start(TOPLEVEL_BINDING, :input => StringIO.new('exit'))
|
|
|
|
end
|
|
|
|
|
2013-01-01 05:38:08 -05:00
|
|
|
def modify_base_gemspec
|
|
|
|
eval(File.read('pry.gemspec')).tap { |s| yield s }
|
|
|
|
end
|
2011-12-29 06:32:34 -05:00
|
|
|
|
2010-12-08 02:30:38 -05:00
|
|
|
namespace :ruby do
|
2013-01-01 05:38:08 -05:00
|
|
|
spec = modify_base_gemspec do |s|
|
2010-12-08 02:30:38 -05:00
|
|
|
s.platform = Gem::Platform::RUBY
|
|
|
|
end
|
2011-04-24 07:56:47 -04:00
|
|
|
|
2011-12-11 17:30:54 -05:00
|
|
|
Gem::PackageTask.new(spec) do |pkg|
|
2010-12-08 02:30:38 -05:00
|
|
|
pkg.need_zip = false
|
|
|
|
pkg.need_tar = false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-09-06 13:20:04 -04:00
|
|
|
namespace :jruby do
|
2013-01-01 05:38:08 -05:00
|
|
|
spec = modify_base_gemspec do |s|
|
2011-12-11 17:32:29 -05:00
|
|
|
s.add_dependency('spoon', '~> 0.0')
|
|
|
|
s.platform = 'java'
|
2011-09-06 13:20:04 -04:00
|
|
|
end
|
|
|
|
|
2011-12-11 17:30:54 -05:00
|
|
|
Gem::PackageTask.new(spec) do |pkg|
|
2011-09-06 13:20:04 -04:00
|
|
|
pkg.need_zip = false
|
|
|
|
pkg.need_tar = false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2015-04-09 18:41:08 -04:00
|
|
|
['mswin32', 'mingw32'].each do |platform|
|
2014-05-15 03:22:28 -04:00
|
|
|
namespace platform do
|
2013-01-01 05:38:08 -05:00
|
|
|
spec = modify_base_gemspec do |s|
|
2011-12-11 17:32:29 -05:00
|
|
|
s.add_dependency('win32console', '~> 1.3')
|
2015-04-09 18:41:08 -04:00
|
|
|
s.platform = Gem::Platform.new [nil, platform, nil]
|
2011-03-02 06:18:26 -05:00
|
|
|
end
|
|
|
|
|
2011-12-11 17:30:54 -05:00
|
|
|
Gem::PackageTask.new(spec) do |pkg|
|
2011-03-02 06:18:26 -05:00
|
|
|
pkg.need_zip = false
|
|
|
|
pkg.need_tar = false
|
|
|
|
end
|
|
|
|
end
|
2015-04-09 18:41:08 -04:00
|
|
|
|
|
|
|
task gems: "#{platform}:gem"
|
2011-03-02 06:18:26 -05:00
|
|
|
end
|
|
|
|
|
2010-12-08 02:30:38 -05:00
|
|
|
desc "build all platform gems at once"
|
2015-04-09 18:41:08 -04:00
|
|
|
task :gems => [:clean, :rmgems, 'ruby:gem', 'jruby:gem']
|
2010-12-08 02:30:38 -05:00
|
|
|
|
|
|
|
desc "remove all platform gems"
|
2011-12-11 17:32:29 -05:00
|
|
|
task :rmgems => ['ruby:clobber_package']
|
2013-02-02 11:41:25 -05:00
|
|
|
task :rm_gems => :rmgems
|
|
|
|
task :rm_pkgs => :rmgems
|
2010-12-08 02:30:38 -05:00
|
|
|
|
2011-12-14 21:05:52 -05:00
|
|
|
desc "reinstall gem"
|
|
|
|
task :reinstall => :gems do
|
2011-12-15 03:43:47 -05:00
|
|
|
sh "gem uninstall pry" rescue nil
|
2011-12-16 23:59:13 -05:00
|
|
|
sh "gem install #{File.dirname(__FILE__)}/pkg/pry-#{Pry::VERSION}.gem"
|
2011-12-14 21:05:52 -05:00
|
|
|
end
|
|
|
|
|
2013-02-02 11:41:25 -05:00
|
|
|
task :install => :reinstall
|
|
|
|
|
2010-12-08 02:30:38 -05:00
|
|
|
desc "build and push latest gems"
|
|
|
|
task :pushgems => :gems do
|
2011-05-04 10:19:32 -04:00
|
|
|
chdir("#{File.dirname(__FILE__)}/pkg") do
|
2010-12-08 02:30:38 -05:00
|
|
|
Dir["*.gem"].each do |gemfile|
|
|
|
|
sh "gem push #{gemfile}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2014-07-20 12:35:37 -04:00
|
|
|
|
|
|
|
namespace :docker do
|
|
|
|
desc "build a docker container with multiple rubies"
|
|
|
|
task :build do
|
|
|
|
system "docker build -t pry/pry ."
|
|
|
|
end
|
|
|
|
|
|
|
|
desc "test pry on multiple ruby versions"
|
|
|
|
task :test => :build do
|
|
|
|
system "docker run -i -t -v /tmp/prytmp:/tmp/prytmp pry/pry ./multi_test_inside_docker.sh"
|
|
|
|
end
|
|
|
|
end
|