Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save aslakhellesoy/326858 to your computer and use it in GitHub Desktop.
Save aslakhellesoy/326858 to your computer and use it in GitHub Desktop.
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