mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-11-05 21:17:49 +00:00
1ba50eba98
Reference:
16ead977fa
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
|