-
-
Save aslakhellesoy/326858 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Feature: developer creates a skeleton Ruby application | |
In order to get to the beach more quickly | |
As a developer | |
I want to instantly create a basic Ruby application skeleton | |
Scenario: create a new application | |
Given there should be a bin/[application_name] file which contains: | |
""" | |
#!/usr/bin/env Ruby | |
$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) | |
require "[application name]" | |
""" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment