mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-11-10 15:50:56 +00:00
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
|