|
126 | 126 | # README.md
|
127 | 127 | readme = <<~EXPECTED
|
128 | 128 | # #{inflector.camelize(app)}
|
| 129 | +
|
| 130 | + Welcome to your Hanami app! |
| 131 | +
|
| 132 | + ## Getting Started |
| 133 | +
|
| 134 | + - Run the server with `bin/dev` |
| 135 | + - View the app at [http://localhost:2300](http://localhost:2300) |
| 136 | + - Run the tests with `bundle exec rake` |
| 137 | +
|
| 138 | + ## Useful Links |
| 139 | +
|
| 140 | + - [Hanami Home](http://hanamirb.org) |
| 141 | + - [Hanami Guides](https://guides.hanamirb.org/) |
| 142 | + - [Hanami API Doc](https://gemdocs.org/gems/hanami/latest) |
129 | 143 | EXPECTED
|
130 | 144 | expect(fs.read("README.md")).to eq(readme)
|
131 | 145 | expect(output).to include("Created README.md")
|
@@ -590,6 +604,20 @@ class Operation < Dry::Operation
|
590 | 604 | # README.md
|
591 | 605 | readme = <<~EXPECTED
|
592 | 606 | # #{inflector.camelize(app)}
|
| 607 | +
|
| 608 | + Welcome to your Hanami app! |
| 609 | + |
| 610 | + ## Getting Started |
| 611 | + |
| 612 | + - Run the server with `bin/dev` |
| 613 | + - View the app at [http://localhost:2300](http://localhost:2300) |
| 614 | + - Run the tests with `bundle exec rake` |
| 615 | + |
| 616 | + ## Useful Links |
| 617 | + |
| 618 | + - [Hanami Home](http://hanamirb.org) |
| 619 | + - [Hanami Guides](https://guides.hanamirb.org/) |
| 620 | + - [Hanami API Doc](https://gemdocs.org/gems/hanami/latest) |
593 | 621 | EXPECTED
|
594 | 622 | expect(fs.read("README.md")).to eq(readme)
|
595 | 623 | expect(output).to include("Created README.md")
|
@@ -1125,6 +1153,20 @@ module Types
|
1125 | 1153 | # README.md
|
1126 | 1154 | readme = <<~EXPECTED
|
1127 | 1155 | # #{inflector.camelize(app)}
|
| 1156 | +
|
| 1157 | + Welcome to your Hanami app! |
| 1158 | +
|
| 1159 | + ## Getting Started |
| 1160 | +
|
| 1161 | + - Run the server with `bin/dev` |
| 1162 | + - View the app at [http://localhost:2300](http://localhost:2300) |
| 1163 | + - Run the tests with `bundle exec rake` |
| 1164 | +
|
| 1165 | + ## Useful Links |
| 1166 | +
|
| 1167 | + - [Hanami Home](http://hanamirb.org) |
| 1168 | + - [Hanami Guides](https://guides.hanamirb.org/) |
| 1169 | + - [Hanami API Doc](https://gemdocs.org/gems/hanami/latest) |
1128 | 1170 | EXPECTED
|
1129 | 1171 | expect(fs.read("README.md")).to eq(readme)
|
1130 | 1172 |
|
|
0 commit comments