Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: SciRuby/iruby
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7bf78b47ce2eceac9859efb3293ebfd0c44bde87
Choose a base ref
..
head repository: SciRuby/iruby
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ea7409279cbacc3b325b50a8455b3a66c4ecebeb
Choose a head ref
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -78,7 +78,7 @@ jobs:
run: |
for adapter in $ADAPTERS; do
export IRUBY_TEST_SESSION_ADAPTER_NAME=$adapter
bundle exec rake test TESTOPTS="-v"
bundle exec rake test TESTOPTS=-v
done
windows:
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.7.4 (2021-08-18)
# 0.7.4 (2021-08-16)

## Enhancements

3 changes: 1 addition & 2 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -9,9 +9,8 @@ FileList['tasks/**.rake'].each {|f| load f }

desc "Run tests"
task :test do
test_opts = ENV.fetch("TESTOPTS", "").split
cd(base_dir) do
ruby("test/run-test.rb", *test_opts)
ruby("test/run-test.rb")
end
end

5 changes: 5 additions & 0 deletions bin/iruby
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env ruby

$:.unshift File.expand_path(__dir__ + '/../lib')
require 'iruby/command'
IRuby::Command.new(ARGV).run
7 changes: 0 additions & 7 deletions exe/iruby

This file was deleted.

3 changes: 1 addition & 2 deletions iruby.gemspec
Original file line number Diff line number Diff line change
@@ -11,8 +11,7 @@ Gem::Specification.new do |s|
s.license = 'MIT'

s.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
s.bindir = "exe"
s.executables = %w[iruby]
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^test/})
s.require_paths = %w[lib]
s.extensions = %w[ext/Rakefile]
Loading