mirror of
https://github.com/junegunn/fzf.git
synced 2026-04-27 01:40:34 +08:00
1ba50eba98
Reference: https://github.com/tiredpixel/sidekiq-spy/commit/16ead977fa837966736b7dc50b3cfa6a3dd7d3c2
10 lines
261 B
Ruby
10 lines
261 B
Ruby
require 'rubygems/dependency_installer'
|
|
|
|
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.1.0')
|
|
Gem::DependencyInstaller.new.install 'curses', '~> 1.0'
|
|
end
|
|
|
|
File.open(File.expand_path('../Rakefile', __FILE__), 'w') do |f|
|
|
f.puts 'task :default'
|
|
end
|