Skip to content

Commit 2324a11

Browse files
committed
Remove use of chandler
1 parent abe9b41 commit 2324a11

File tree

1 file changed

+4
-12
lines changed

1 file changed

+4
-12
lines changed

Rakefile

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
begin
22
require 'bundler/setup'
3+
4+
require 'bundler/gem_tasks'
5+
require "minitest/test_task"
6+
require 'rdoc/task'
37
require 'rubocop/rake_task'
48
rescue LoadError
59
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
610
end
711

8-
require 'rdoc/task'
9-
1012
RDoc::Task.new(:rdoc) do |rdoc|
1113
rdoc.rdoc_dir = 'rdoc'
1214
rdoc.title = 'BootstrapForm'
@@ -15,23 +17,13 @@ RDoc::Task.new(:rdoc) do |rdoc|
1517
rdoc.rdoc_files.include('lib/**/*.rb')
1618
end
1719

18-
require 'bundler/gem_tasks'
19-
20-
require "minitest/test_task"
21-
2220
Minitest::TestTask.create(:test) do |t|
2321
t.libs << "test"
2422
t.libs << "lib"
2523
t.warning = false
2624
t.test_globs = ["test/**/*_test.rb"]
2725
end
2826

29-
# This automatically updates GitHub Releases whenever we `rake release` the gem
30-
task "release:rubygem_push" do
31-
require "chandler/tasks"
32-
Rake.application.invoke_task("chandler:push")
33-
end
34-
3527
desc 'Run RuboCop checks'
3628
RuboCop::RakeTask.new(:rubocop)
3729

0 commit comments

Comments
 (0)