Skip to content

Commit f348dfc

Browse files
committed
Use sentence case for Experience CS project names
As per this issue [1]. I thought it was worth doing this aspect of that issue now given that it tends to take a while to get changes to editor-api deployed to production. When I ran the rake task, I saw the following output which seemed to make sense: > bundle exec rake projects:create_experience_cs_examples Scratch project with identifier 'experience-cs-example' already exists Scratch project with identifier 'experience-cs-example' updated successfully Scratch project with identifier 'dialogue-in-scratch' already exists Scratch project with identifier 'dialogue-in-scratch' has not changed Scratch project with identifier 'ten-block-mission' already exists Scratch project with identifier 'ten-block-mission' updated successfully Scratch project with identifier 'blank-scratch-starter' already exists Scratch project with identifier 'blank-scratch-starter' updated successfully Scratch project with identifier 'lets-explore-scratch' already exists Scratch project with identifier 'lets-explore-scratch' updated successfully Scratch project with identifier 'transforming-sprites' already exists Scratch project with identifier 'transforming-sprites' updated successfully [1]: RaspberryPiFoundation/experience-cs#454
1 parent ea92c84 commit f348dfc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lib/tasks/projects.rake

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace :projects do
1313
identifier: 'experience-cs-example',
1414
locale: 'en',
1515
project_type: Project::Types::SCRATCH,
16-
name: 'Experience CS Example',
16+
name: 'Experience CS example',
1717
user_id: nil
1818
},
1919
{
@@ -27,28 +27,28 @@ namespace :projects do
2727
identifier: 'ten-block-mission',
2828
locale: 'en',
2929
project_type: Project::Types::SCRATCH,
30-
name: 'Ten Block Mission',
30+
name: 'Ten block mission',
3131
user_id: nil
3232
},
3333
{
3434
identifier: 'blank-scratch-starter',
3535
locale: 'en',
3636
project_type: Project::Types::SCRATCH,
37-
name: 'Blank Scratch Starter',
37+
name: 'Blank Scratch starter',
3838
user_id: nil
3939
},
4040
{
4141
identifier: 'lets-explore-scratch',
4242
locale: 'en',
4343
project_type: Project::Types::SCRATCH,
44-
name: "Let's Explore Scratch",
44+
name: "Let's explore Scratch",
4545
user_id: nil
4646
},
4747
{
4848
identifier: 'transforming-sprites',
4949
locale: 'en',
5050
project_type: Project::Types::SCRATCH,
51-
name: 'Transforming Sprites',
51+
name: 'Transforming sprites',
5252
user_id: nil
5353
}
5454
]

0 commit comments

Comments
 (0)