Corrected with rubocop cop 'Style/IndentationConsistency'.
This commit is contained in:
parent
19d2b9750c
commit
b235aa2a79
2 changed files with 16 additions and 16 deletions
28
Gemfile
28
Gemfile
|
@ -63,24 +63,24 @@ gem 'em-websocket'
|
|||
group :development, :test do
|
||||
|
||||
gem 'test-unit'
|
||||
gem 'spring'
|
||||
gem 'sqlite3'
|
||||
gem 'spring'
|
||||
gem 'sqlite3'
|
||||
|
||||
# code coverage
|
||||
gem 'simplecov'
|
||||
gem 'simplecov-rcov'
|
||||
# code coverage
|
||||
gem 'simplecov'
|
||||
gem 'simplecov-rcov'
|
||||
|
||||
# UI tests w/ Selenium
|
||||
gem 'selenium-webdriver'
|
||||
# UI tests w/ Selenium
|
||||
gem 'selenium-webdriver'
|
||||
|
||||
# livereload on template changes (html, js, css)
|
||||
gem 'guard', '>= 2.2.2', require: false
|
||||
gem 'guard-livereload', require: false
|
||||
gem 'rack-livereload'
|
||||
gem 'rb-fsevent', require: false
|
||||
# livereload on template changes (html, js, css)
|
||||
gem 'guard', '>= 2.2.2', require: false
|
||||
gem 'guard-livereload', require: false
|
||||
gem 'rack-livereload'
|
||||
gem 'rb-fsevent', require: false
|
||||
|
||||
# code QA
|
||||
gem 'rubocop'
|
||||
# code QA
|
||||
gem 'rubocop'
|
||||
end
|
||||
|
||||
gem 'puma'
|
||||
|
|
|
@ -57,8 +57,8 @@ mark online notification as seen
|
|||
|
||||
def self.seen(data)
|
||||
notification = OnlineNotification.find(data[:id])
|
||||
notification.seen = true
|
||||
notification.save
|
||||
notification.seen = true
|
||||
notification.save
|
||||
end
|
||||
|
||||
=begin
|
||||
|
|
Loading…
Reference in a new issue