Sha256: 7986981108b6bc9a640fdcf44a1bef5b3b9ff4dfc8cefe28750e4fce5b2ce75f

Contents?: true

Size: 841 Bytes

Versions: 13

Compression:

Stored size: 841 Bytes

Contents

Feature: Support components for middleman-presentation

  As a presentator
  I want to use bower components in all my presentation
  In order to use them in all my presentations

  Scenario: Add components
    Given a user config file for middleman-presentation with:
    """
    components:
      - name: :bootstrap
        version: latest
        importable_files: 
          - dist/js/bootstrap.js 
          - !ruby/regexp '/dist\/css\/bootstrap.css$/'
    """
    When I create a new presentation with title "My Presentation"
    Then a directory named "vendor/assets/components/bootstrap" should exist
    Given the Server is running
    When I go to "/javascripts/application.js"
    Then I should see:
    """
    Bootstrap
    """
    When I go to "/stylesheets/application.css"
    Then I should see:
    """
    glyphicon
    """

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
middleman-presentation-core-0.17.7 features/components.feature
middleman-presentation-core-0.17.6 features/components.feature
middleman-presentation-core-0.17.5 features/components.feature
middleman-presentation-core-0.17.2 features/components.feature
middleman-presentation-core-0.17.1 features/components.feature
middleman-presentation-core-0.17.0 features/components.feature
middleman-presentation-core-0.16.3 features/components.feature
middleman-presentation-core-0.16.2 features/components.feature
middleman-presentation-core-0.16.0 features/components.feature
middleman-presentation-core-0.16.0.rc2 features/components.feature
middleman-presentation-core-0.16.0.rc1 features/components.feature
middleman-presentation-core-0.16.0.beta features/components.feature
middleman-presentation-core-0.16.0.alpha features/components.feature