`rake jshint` works

This commit is contained in:
Robin Ward 2013-02-20 19:09:27 -05:00
parent f661fa609e
commit 26e1cfd12c
4 changed files with 2058 additions and 18 deletions

View File

@ -77,6 +77,7 @@ group :test do
end
group :test, :development do
gem 'jshint_on_rails'
gem 'guard-jshint-on-rails'
gem 'certified'
gem 'fabrication'

View File

@ -477,6 +477,7 @@ DEPENDENCIES
image_optim
jasminerice
jquery-rails
jshint_on_rails
librarian (>= 0.0.25)
message_bus!
mocha

View File

@ -109,9 +109,9 @@
return;
}
return this.showView(Discourse.CreateAccountView.create({
accountEmail: options['email'],
accountUsername: options['username'],
accountName: options['name'],
accountEmail: options.email,
accountUsername: options.username,
accountName: options.name,
authOptions: Em.Object.create(options)
}));
},

File diff suppressed because it is too large Load Diff