Sha256: ef28f203d67066481ca6838b582214a8c6cbe3141bea53eefcfe2b56f69ea44c

Contents?: true

Size: 1021 Bytes

Versions: 12

Compression:

Stored size: 1021 Bytes

Contents

# Application template recipe for the rails_apps_composer. Change the recipe here:
# https://github.com/RailsApps/rails_apps_composer/blob/master/recipes/tests4.rb

after_bundler do
  say_wizard "recipe running after 'bundle install'"
  ### RSPEC ###
  if prefer :tests, 'rspec'
    say_wizard "recipe installing RSpec"
    generate 'testing:configure rspec -f'
  end
  ### GUARD ###
  if prefer :continuous_testing, 'guard'
    say_wizard "recipe initializing Guard"
    run 'bundle exec guard init'
  end
  ### GIT ###
  git :add => '-A' if prefer :git, true
  git :commit => '-qm "rails_apps_composer: testing framework"' if prefer :git, true
end # after_bundler

after_everything do
  say_wizard "recipe running after everything"
  if (prefer :authentication, 'devise') && (prefer :tests, 'rspec')
    generate 'testing:configure devise -f'
  end
end # after_everything

__END__

name: tests4
description: "Add testing framework."
author: RailsApps

requires: [setup, gems]
run_after: [setup, gems]
category: testing

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
rails_apps_composer-2.6.11 recipes/tests4.rb
rails_apps_composer-2.6.10 recipes/tests4.rb
rails_apps_composer-2.6.9 recipes/tests4.rb
rails_apps_composer-2.6.8 recipes/tests4.rb
rails_apps_composer-2.6.7 recipes/tests4.rb
rails_apps_composer-2.6.6 recipes/tests4.rb
rails_apps_composer-2.6.5 recipes/tests4.rb
rails_apps_composer-2.6.4 recipes/tests4.rb
rails_apps_composer-2.6.3 recipes/tests4.rb
rails_apps_composer-2.6.2 recipes/tests4.rb
rails_apps_composer-2.6.1 recipes/tests4.rb
rails_apps_composer-2.6.0 recipes/tests4.rb