summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2015-03-11 02:12:38 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2015-03-11 02:12:38 +0900
commitb2c423d1ffad3ca51c63efbe94467cde7c905f7e (patch)
tree88c5048073a505ff2c60dcf6040b9127453b404d
parent49c752b1f70a72000662f798bcff7ccf23b96e02 (diff)
Cleanup - no more rubygems
-rw-r--r--.travis.yml2
-rw-r--r--Rakefile12
-rw-r--r--ext/mkrf_conf.rb9
-rw-r--r--fzf.gemspec17
4 files changed, 1 insertions, 39 deletions
diff --git a/.travis.yml b/.travis.yml
index 69086778..cce98fff 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -25,4 +25,4 @@ script: |
cd $FZF_BASE/src && make test fzf/fzf-linux_amd64 install &&
cd $FZF_BASE/bin && ln -sf fzf-linux_amd64 fzf-$(./fzf --version)-linux_amd64 &&
cd $FZF_BASE && yes | ./install &&
- tmux new "rake test > out && touch ok" && cat out && [ -e ok ]
+ tmux new "ruby test/test_go.rb > out && touch ok" && cat out && [ -e ok ]
diff --git a/Rakefile b/Rakefile
deleted file mode 100644
index 5bc903d3..00000000
--- a/Rakefile
+++ /dev/null
@@ -1,12 +0,0 @@
-require "bundler/gem_tasks"
-require 'rake/testtask'
-
-Rake::TestTask.new(:test) do |test|
- test.pattern = 'test/test_go.rb'
-end
-
-Rake::TestTask.new(:testall) do |test|
- test.pattern = 'test/test_*.rb'
-end
-
-task :default => :test
diff --git a/ext/mkrf_conf.rb b/ext/mkrf_conf.rb
deleted file mode 100644
index 8e7bf466..00000000
--- a/ext/mkrf_conf.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-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
diff --git a/fzf.gemspec b/fzf.gemspec
deleted file mode 100644
index 0a6c74da..00000000
--- a/fzf.gemspec
+++ /dev/null
@@ -1,17 +0,0 @@
-# coding: utf-8
-Gem::Specification.new do |spec|
- spec.name = 'fzf'
- spec.version = '0.8.4'
- spec.authors = ['Junegunn Choi']
- spec.email = ['junegunn.c@gmail.com']
- spec.description = %q{Fuzzy finder for your shell}
- spec.summary = %q{Fuzzy finder for your shell}
- spec.homepage = 'https://github.com/junegunn/fzf'
- spec.license = 'MIT'
-
- spec.bindir = '.'
- spec.files = %w[fzf.gemspec]
- spec.executables = 'fzf'
-
- spec.extensions += ['ext/mkrf_conf.rb']
-end