Skip to content

Commit 8db1aff

Browse files
committed
Rename app
1 parent 6f0542e commit 8db1aff

File tree

20 files changed

+31
-31
lines changed

20 files changed

+31
-31
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ This is an Ember app, so the usual steps follow:
1313

1414
1. Fork and clone this repo.
1515
```bash
16-
git clone git@github.com:<your GitHub handle>/ember-octane-vs-classic-cheat-sheet.git
16+
git clone git@github.com:<your GitHub handle>/ember-data-request-service-cheat-sheet.git
1717
```
1818
1. Change directory.
1919
```bash
20-
cd ember-octane-vs-classic-cheat-sheet
20+
cd ember-data-request-service-cheat-sheet
2121
```
2222
1. Install packages.
2323
```bash

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
[![This project uses GitHub Actions for continuous integration.](https://github.com/ember-learn/ember-octane-vs-classic-cheat-sheet/workflows/CI/CD/badge.svg)](https://github.com/ember-learn/ember-octane-vs-classic-cheat-sheet/actions?query=workflow%3ACI%2FCD)
2-
[![This project uses Percy.io for visual regression testing.](https://percy.io/static/images/percy-badge.svg)](https://percy.io/Ember/ember-octane-vs-classic-cheat-sheet)
1+
[![This project uses GitHub Actions for continuous integration.](https://github.com/ember-learn/ember-data-request-service-cheat-sheet/workflows/CI/CD/badge.svg)](https://github.com/ember-learn/ember-data-request-service-cheat-sheet/actions?query=workflow%3ACI%2FCD)
2+
[![This project uses Percy.io for visual regression testing.](https://percy.io/static/images/percy-badge.svg)](https://percy.io/Ember/ember-data-request-service-cheat-sheet)
33

4-
# Ember Octane vs Classic Cheat Sheet
4+
# EmberData Request Service Cheat Sheet
55

6-
Check out [the deployed app](https://ember-learn.github.io/ember-octane-vs-classic-cheat-sheet/). Yep, it uses Ember Octane!
6+
Check out [the deployed app](https://ember-learn.github.io/ember-data-request-service-cheat-sheet/). Yep, it uses Ember Octane!
77

88
You can see side-by-side examples of [Ember Octane](https://emberjs.com/editions/octane) and Ember Classic.
99

app/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Application from '@ember/application';
22
import Resolver from 'ember-resolver';
33
import loadInitializers from 'ember-load-initializers';
4-
import config from 'ember-octane-vs-classic-cheat-sheet/config/environment';
4+
import config from 'ember-data-request-service-cheat-sheet/config/environment';
55

66
export default class App extends Application {
77
modulePrefix = config.modulePrefix;

app/components/guide-section/subsection.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
<div local-class="edit-link-container">
9090
<a
9191
data-test-link="Edit Translation"
92-
href="https://github.com/ember-learn/ember-octane-vs-classic-cheat-sheet/edit/main/translations/{{@sectionId}}/{{subsectionId}}/{{this.intl.locale}}.yaml"
92+
href="https://github.com/ember-learn/ember-data-request-service-cheat-sheet/edit/main/translations/{{@sectionId}}/{{subsectionId}}/{{this.intl.locale}}.yaml"
9393
local-class="edit-link"
9494
rel="noopener noreferrer"
9595
target="_blank"

app/controllers/application.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import Controller from '@ember/controller';
2-
import config from 'ember-octane-vs-classic-cheat-sheet/config/environment';
2+
import config from 'ember-data-request-service-cheat-sheet/config/environment';
33

44
export default class ApplicationController extends Controller {
55
rootURL = config.rootURL.replace(/\/$/, '');

app/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
{{content-for "head"}}
1010

1111
<link integrity="" rel="stylesheet" href="{{rootURL}}assets/vendor.css">
12-
<link integrity="" rel="stylesheet" href="{{rootURL}}assets/ember-octane-vs-classic-cheat-sheet.css">
12+
<link integrity="" rel="stylesheet" href="{{rootURL}}assets/ember-data-request-service-cheat-sheet.css">
1313

1414
{{content-for "head-footer"}}
1515
</head>
1616
<body>
1717
{{content-for "body"}}
1818

1919
<script src="{{rootURL}}assets/vendor.js"></script>
20-
<script src="{{rootURL}}assets/ember-octane-vs-classic-cheat-sheet.js"></script>
20+
<script src="{{rootURL}}assets/ember-data-request-service-cheat-sheet.js"></script>
2121

2222
{{content-for "body-footer"}}
2323
</body>

app/router.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import EmberRouter from '@ember/routing/router';
2-
import config from 'ember-octane-vs-classic-cheat-sheet/config/environment';
2+
import config from 'ember-data-request-service-cheat-sheet/config/environment';
33

44
export default class Router extends EmberRouter {
55
location = config.locationType;

config/deploy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module.exports = function (deployTarget) {
77

88
// include other plugin configuration that applies to all deploy targets here
99
git: {
10-
repo: 'https://github.com/ember-learn/ember-octane-vs-classic-cheat-sheet.git',
10+
repo: 'https://github.com/ember-learn/ember-data-request-service-cheat-sheet.git',
1111
},
1212
};
1313

config/environment.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
module.exports = function (environment) {
44
let ENV = {
5-
modulePrefix: 'ember-octane-vs-classic-cheat-sheet',
5+
modulePrefix: 'ember-data-request-service-cheat-sheet',
66
environment,
77
rootURL: '/',
88
locationType: 'history',
@@ -47,7 +47,7 @@ module.exports = function (environment) {
4747
}
4848

4949
if (environment === 'production') {
50-
ENV.rootURL = '/ember-octane-vs-classic-cheat-sheet';
50+
ENV.rootURL = '/ember-data-request-service-cheat-sheet';
5151
ENV.locationType = 'hash';
5252
}
5353

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)