Skip to content

Commit

Permalink
change order of rake tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
James McKinney committed Apr 16, 2015
1 parent 1bdabc1 commit 5b112f0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Rakefile
@@ -1,11 +1,6 @@
require 'bundler'
Bundler::GemHelper.install_tasks

require 'rake/extensiontask'
Rake::ExtensionTask.new('fastcsv') do |ext|
ext.lib_dir = 'lib/fastcsv'
end

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)

Expand All @@ -19,3 +14,8 @@ rescue LoadError
abort 'YARD is not available. In order to run yard, you must: gem install yard'
end
end

require 'rake/extensiontask'
Rake::ExtensionTask.new('fastcsv') do |ext|
ext.lib_dir = 'lib/fastcsv'
end

0 comments on commit 5b112f0

Please sign in to comment.