Corrected with rubocop cop 'Style/IndentationConsistency'.

This commit is contained in:
Thorsten Eckel 2015-05-01 13:53:35 +02:00
parent 19d2b9750c
commit b235aa2a79
2 changed files with 16 additions and 16 deletions

28
Gemfile
View file

@ -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'

View file

@ -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