summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorAbinoam P. Marques Jr <abinoam@gmail.com>2017-09-24 06:09:44 -0300
committerAbinoam P. Marques Jr <abinoam@gmail.com>2017-09-25 06:49:33 -0300
commit7063e71f864d9afbfb296495ec01b19233ff9c8c (patch)
tree6b3a33409b9d2b81330445a238a52e3b202280f8 /Rakefile
parent2db872c17887e3de54b364b5c87977e247980183 (diff)
downloadhighline-7063e71f864d9afbfb296495ec01b19233ff9c8c.tar.gz
Update Gemfile and gemspec to current defaults
* Remove deprecated has_rdoc option * Remove test_files option * Remove platform. Has already a default. * Update files option * Move some basic dependencies into gemspec file * Call gemspec on Gemfile so we can test gem source at console
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile8
1 files changed, 0 insertions, 8 deletions
diff --git a/Rakefile b/Rakefile
index 248701e..45def2d 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,11 +1,7 @@
# encoding: utf-8
require "rake/testtask"
-require "rubygems/package_task"
require "bundler/gem_tasks"
-require "code_statistics"
-
-require "rubygems"
task default: [:test]
@@ -16,10 +12,6 @@ Rake::TestTask.new do |test|
test.test_files = FileList["test/test*.rb"]
end
-Gem::PackageTask.new(SPEC) do |package|
- # do nothing: I just need a gem but this block is required
-end
-
desc "Run some interactive acceptance tests"
task :acceptance do
load "test/acceptance/acceptance.rb"