Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README tiny edit in Usage example #29

Merged
merged 1 commit into from Oct 13, 2011
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.rdoc
Expand Up @@ -36,12 +36,12 @@ Evergreen assumes a file and directory structure, place all your javascript
code inside ./public and all spec files inside ./spec/javascripts. All spec
files should end in _spec.js. For example:

public/widget.js
public/javascripts/widget.js
spec/javascripts/widget_spec.js

You can require files from the public directory inside your spec file:

require('/widget.js')
require('/javascripts/widget.js')

describe('a widget', function() {
...
Expand Down