Sha256: 73eafb5d7b329b3962dd90cd765db59e8a83ebbc9269111bdaadc720f681961a

Contents?: true

Size: 920 Bytes

Versions: 7

Compression:

Stored size: 920 Bytes

Contents

Feature: scaffolding a site

  Scenario: Scaffold a new site
    When I run `bundle exec starch new foo`
    Then the following directories should exist:
      | foo |
      | foo/node_modules |
      | foo/app |
      | foo/app/assets/files |
      | foo/app/assets/fonts |
      | foo/app/assets/images |
      | foo/app/assets/js |
      | foo/app/assets/stylesheets |
      | foo/app/pages |
      | foo/app/partials |
      | foo/app/templates |
    And the following files should exist:
      | foo/Gruntfile.js |
      | foo/package.json |
      | foo/bower.json |
      | foo/app/assets/stylesheets/main.scss |
      | foo/app/helpers.js |
      | foo/app/templates/default.hbt |
    And the file "foo/package.json" should contain:
      """
      "name": "foo",
      """
    And the file "foo/bower.json" should contain:
      """
      "name": "foo",
      """
    And the output should contain "foo created"

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
starch-1.3.4 features/new.feature
starch-1.3.3 features/new.feature
starch-1.3.2 features/new.feature
starch-1.3.1 features/new.feature
starch-1.3.0 features/new.feature
starch-1.2.0 features/new.feature
starch-1.1.0 features/new.feature