Last active
September 23, 2017 05:32
-
-
Save ToadJamb/3f628b35c0d9edf026df6ef7c1d129a3 to your computer and use it in GitHub Desktop.
blog post - new gem configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'bundler/gem_tasks' | |
Dir['lib/tasks/**/*.rake'].each{ |f| load f } | |
task :default => [] | |
Rake::Task[:default].clear_prerequisites | |
task :default => [ | |
:spec, | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rspec/core/rake_task' | |
RSpec::Core::RakeTask.new :spec |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment