Sha256: 188a13193f503d6c48bf0cf4cbf44bb607ee4c75e847fd5e445a8d9ded7e5f78
Contents?: true
Size: 892 Bytes
Versions: 29
Compression:
Stored size: 892 Bytes
Contents
require 'rubygems' require 'bundler/setup' require 'rspec/core/rake_task' # Immediately sync all stdout so that tools like buildbot can # immediately load in the output. $stdout.sync = true $stderr.sync = true # Change to the directory of this file. Dir.chdir(File.expand_path("../", __FILE__)) # This installs the tasks that help with gem creation and # publishing. Bundler::GemHelper.install_tasks # Install the `spec` task so that we can run tests. RSpec::Core::RakeTask.new # Default task is to run the unit tests task :default => "spec" # Load all the rake tasks from the "tasks" folder. This folder # allows us to nicely separate rake tasks into individual files # based on their role, which makes development and debugging easier # than one monolithic file. task_dir = File.expand_path("../tasks", __FILE__) Dir["#{task_dir}/**/*.rake"].each do |task_file| load task_file end
Version data entries
29 entries across 29 versions & 1 rubygems