Sha256: 639e058038ee41ba8d82cacc97d281cce305d78a2f8bee9e4649d6c79265c75b

Contents?: true

Size: 655 Bytes

Versions: 2

Compression:

Stored size: 655 Bytes

Contents

Feature: Setup/Compile Extensions
  In order to install a Ruby project with extensions
  As a Ruby Developer
  I must first use 'setup.rb compile' to buld the extensions

  Scenario: Compile a new project
    Given a setup.rb compliant Ruby project
    And 'setup.rb compile' has been run
    Then the extensions should be compiled

  Scenario: Fail to install project without first running compile
    Given a setup.rb compliant Ruby project
    And 'setup.rb compile' has NOT been run
    When I issue the command 'setup.rb install' unprepared
    Then I will be told that I must first run 'setup.rb config'
    And the extensions will not be compiled

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
setup-5.2.0 test/features/compile.feature
setup-5.1.0 test/features/compile.feature