Hexadecimal color changed to capital letters

The default colors in event_types and difficulty levels are in capital letters and the ones that comes from the color picker were not. Now colors are capitalized before saving the track, level or type. A rake task has also been created to capitalize color from old tracks, levels or types.
This commit is contained in:
Ana 2016-07-04 17:53:21 +02:00
parent 0deaf1abc7
commit 8d9bb56f06
11 changed files with 72 additions and 15 deletions

View file

@ -426,7 +426,7 @@ describe Conference do
result = {}
result['Hard'] = {
'value' => 1,
'color' => '#ffffff',
'color' => '#FFFFFF',
}
result['Easy'] = {
'value' => 2,
@ -476,7 +476,7 @@ describe Conference do
result = {}
result['Hard'] = {
'value' => 1,
'color' => '#ffffff'
'color' => '#FFFFFF'
}
result['Easy'] = {
'value' => 1,
@ -526,7 +526,7 @@ describe Conference do
}
result['Lecture'] = {
'value' => 1,
'color' => '#ffffff',
'color' => '#FFFFFF',
}
expect(subject.event_type_distribution).to eq(result)
end
@ -572,7 +572,7 @@ describe Conference do
result = {}
result['Lecture'] = {
'value' => 1,
'color' => '#ffffff'
'color' => '#FFFFFF'
}
result['Workshop'] = {
'value' => 1,
@ -622,7 +622,7 @@ describe Conference do
}
result['Track Two'] = {
'value' => 1,
'color' => '#ffffff',
'color' => '#FFFFFF',
}
expect(subject.tracks_distribution).to eq(result)
end
@ -672,7 +672,7 @@ describe Conference do
}
result['Track Two'] = {
'value' => 1,
'color' => '#ffffff'
'color' => '#FFFFFF'
}
expect(subject.tracks_distribution(:confirmed)).to eq(result)
end