tabs replaced with 2-spaces

This commit is contained in:
scibb 2016-08-10 08:36:58 +02:00
parent a6d39762db
commit 6b0b2b0df7

View file

@ -1,12 +1,12 @@
class UpdateMyModuleCoordinate < ActiveRecord::Migration
def change
MyModule.all.each do |my_module|
x = my_module.x
y = my_module.y
x = x * 32
y = y * 16
my_module.update(x: x)
my_module.update(y: y)
def change
MyModule.all.each do |my_module|
x = my_module.x
y = my_module.y
x *= 32
y *= 16
my_module.update(x: x)
my_module.update(y: y)
end
end
end
end