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

Fix typo. #120

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/generators/jasminerice/templates/jasminerice.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# Specify a path where your specs can be found. Defaults to 'spec'
#config.spec_path = 'spec'

# Specify a path where your fixutures can be found. Defaults to 'spec/javascripts/fixtures'
# Specify a path where your fixtures can be found. Defaults to 'spec/javascripts/fixtures'
#config.fixture_path = 'spec/javascripts/fixtures'
end
end
2 changes: 1 addition & 1 deletion lib/jasminerice.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module Jasminerice
mattr_accessor :spec_path
@@spec_path = 'spec'

#Specify the path for fixutures, defaults to 'spec/javascripts/fixtures'
#Specify the path for fixtures, defaults to 'spec/javascripts/fixtures'
mattr_accessor :fixture_path
@@fixture_path = 'spec/javascripts/fixtures'

Expand Down
2 changes: 1 addition & 1 deletion spec/dummy/config/initializers/jasminerice.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
# Specify a path where your specs can be found. Defaults to 'spec'
#config.spec_path = 'spec'

# Specify a path where your fixutures can be found. Defaults to 'spec/javascripts/fixtures'
# Specify a path where your fixtures can be found. Defaults to 'spec/javascripts/fixtures'
config.fixture_path = 'spec/dummy/spec/javascripts/fixtures'
end