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 end
group :test, :development do group :test, :development do
gem 'jshint_on_rails'
gem 'guard-jshint-on-rails' gem 'guard-jshint-on-rails'
gem 'certified' gem 'certified'
gem 'fabrication' gem 'fabrication'

View file

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

View file

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

File diff suppressed because it is too large Load diff