diff --git a/Rakefile b/Rakefile index e926b92..9956da5 100644 --- a/Rakefile +++ b/Rakefile @@ -1,7 +1,9 @@ #!/usr/bin/env rake -require 'fedux_org/stdlib/rake' +require 'bundler' +Bundler.require :default, :test, :development +require 'fedux_org/stdlib/rake' require 'filegen/version' def software diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index bac5663..97c33a3 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -3,6 +3,11 @@ require 'simplecov' SimpleCov.command_name 'rspec' +SimpleCov.start + +# Pull in all of the gems including those in the `test` group +require 'bundler' +Bundler.require :default, :test, :development require 'filegen' include Filegen