Rakefile in aws-cfn-stacker-0.0.5 vs Rakefile in aws-cfn-stacker-0.0.6

- old
+ new

@@ -1,2 +1,23 @@ -require "bundler/gem_tasks" +# Add your own tasks in files placed in lib/tasks ending in .rake, +# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. +begin + require 'bundler/setup' +rescue LoadError => e + abort e.message +end + +require 'rake' + +require 'rubygems/tasks' +Gem::Tasks.new + +require 'cucumber/rake/task' + +Cucumber::Rake::Task.new do |t| + t.cucumber_opts = %w[--format pretty] +end + +require File.expand_path('../config/application', __FILE__) + +Rails.application.load_tasks