mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
rake jshint
works
This commit is contained in:
parent
f661fa609e
commit
26e1cfd12c
4 changed files with 2058 additions and 18 deletions
1
Gemfile
1
Gemfile
|
@ -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'
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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)
|
||||||
}));
|
}));
|
||||||
},
|
},
|
||||||
|
|
2068
db/structure.sql
2068
db/structure.sql
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue