Sha256: 26351866c13ed570cd29d98982f2faf6aad1362f7f9ce88ce9d266b155484c19

Contents?: true

Size: 936 Bytes

Versions: 6

Compression:

Stored size: 936 Bytes

Contents

Feature: Capistrano generator provides some additional infrastructure

  Scenario: Using the capistrano generator when generating a new daemon
    When I run `daemon-kit vuvuzela -d capistrano`
    And I cd to "vuvuzela"
    Then the following files should exist:
      | Capfile |
      | config/deploy.rb |
      | config/deploy/staging.rb |
      | config/deploy/production.rb |
    And the file "Gemfile" should contain:
    """
    gem 'capistrano'
    gem 'capistrano-ext'
    """

  Scenario: Using AMQP generator on an existing daemon
    Given I have an existing daemon called "vuvuzela"
    And I cd to "vuvuzela"
    When I run `./script/generate capistrano`
    Then the following files should exist:
      | Capfile |
      | config/deploy.rb |
      | config/deploy/staging.rb |
      | config/deploy/production.rb |
    And the file "Gemfile" should contain:
    """
    gem 'capistrano'
    gem 'capistrano-ext'
    """

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
daemon-kit-0.3.3 features/capistrano_generator.feature
daemon-kit-0.3.2 features/capistrano_generator.feature
daemon-kit-0.3.1 features/capistrano_generator.feature
daemon-kit-0.3.0 features/capistrano_generator.feature
daemon-kit-0.3.0.rc2 features/capistrano_generator.feature
daemon-kit-0.3.0.rc1 features/capistrano_generator.feature