Skip to content

Commit

Permalink
[ruby/io-console] Move FFI console under lib
Browse files Browse the repository at this point in the history
Having the separate dir makes testing difficult and doesn't
reflect the structure the gem will eventually have. We can filter
these files out if necessary when building the CRuby gem.

ruby/io-console@881010447c
  • Loading branch information
headius authored and hsbt committed Apr 22, 2021
1 parent 042860b commit 270b16e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions ext/io/console/io-console.gemspec
Expand Up @@ -25,15 +25,15 @@ Gem::Specification.new do |s|
if Gem::Platform === s.platform and s.platform =~ 'java'
s.files.delete_if {|f| f.start_with?("ext/")}
s.extensions.clear
s.require_paths.unshift("jruby")
s.files.concat(%w[
jruby/io/console.rb
jruby/io/console/bsd_console.rb
jruby/io/console/common.rb
jruby/io/console/linux_console.rb
jruby/io/console/native_console.rb
jruby/io/console/stty_console.rb
jruby/io/console/stub_console.rb
lib/io/console.rb
lib/io/console/ffi/bsd_console.rb
lib/io/console/ffi/common.rb
lib/io/console/ffi/console.rb
lib/io/console/ffi/linux_console.rb
lib/io/console/ffi/native_console.rb
lib/io/console/ffi/stty_console.rb
lib/io/console/ffi/stub_console.rb
])
end

Expand Down

0 comments on commit 270b16e

Please sign in to comment.