Skip to content
This repository has been archived by the owner on Mar 19, 2019. It is now read-only.

Commit

Permalink
Clean up description and code
Browse files Browse the repository at this point in the history
Use proper grammar and format for generator description.  Ensure
semicolons are used in TypeScript code.
  • Loading branch information
David Dooling committed Mar 26, 2017
1 parent cd15bc2 commit bbeb8db
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 15 deletions.
15 changes: 8 additions & 7 deletions .atomist/generators/NewSpringBootRestService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,19 @@
* limitations under the License.
*/

import { PopulateProject } from '@atomist/rug/operations/ProjectGenerator'
import { Project } from '@atomist/rug/model/Core'
import { Pattern } from '@atomist/rug/operations/RugOperation'
import { Generator, Parameter, Tags } from '@atomist/rug/operations/Decorators'
import { File } from '@atomist/rug/model/File'
import { cleanReadMe, cleanChangeLog, removeUnnecessaryFiles, updatePom, movePackage, renameClass } from './RugGeneratorFunctions'
import { PopulateProject } from '@atomist/rug/operations/ProjectGenerator';
import { Project } from '@atomist/rug/model/Core';
import { Pattern } from '@atomist/rug/operations/RugOperation';
import { Generator, Parameter, Tags } from '@atomist/rug/operations/Decorators';
import { File } from '@atomist/rug/model/File';

import { cleanReadMe, cleanChangeLog, removeUnnecessaryFiles, updatePom, movePackage, renameClass } from './RugGeneratorFunctions';

/**
* Atomist Rug generator for creating a new Spring Boot REST service
* project.
*/
@Generator("NewSpringBootRestService", "create a new Spring Boot Rest Service project")
@Generator("NewSpringBootRestService", "creates a new Spring Boot REST service project")
@Tags("java", "spring", "spring-boot", "spring-rest")
export class NewSpringBootRestService implements PopulateProject {

Expand Down
12 changes: 6 additions & 6 deletions .atomist/generators/RugGeneratorFunctions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
* limitations under the License.
*/

import { Project } from '@atomist/rug/model/Core'
import { File } from '@atomist/rug/model/File'
import { PathExpressionEngine } from '@atomist/rug/tree/PathExpression'
import { Pom } from '@atomist/rug/model/Pom'
import { JavaSource } from '@atomist/rug/model/JavaSource'
import { JavaType } from '@atomist/rug/model/JavaType'
import { Project } from '@atomist/rug/model/Core';
import { File } from '@atomist/rug/model/File';
import { PathExpressionEngine } from '@atomist/rug/tree/PathExpression';
import { Pom } from '@atomist/rug/model/Pom';
import { JavaSource } from '@atomist/rug/model/JavaSource';
import { JavaType } from '@atomist/rug/model/JavaType';

/**
* Remove content from README specific to this project.
Expand Down
2 changes: 1 addition & 1 deletion .atomist/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group: atomist-rugs
artifact: spring-boot-rest-service
version: "0.8.0"
version: "0.9.0"
requires: "0.17.3"
dependencies:
extensions:
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

[Unreleased]: https://github.com/atomist-rugs/spring-boot-rest-service/compare/0.8.0...HEAD
[Unreleased]: https://github.com/atomist-rugs/spring-boot-rest-service/compare/0.9.0...HEAD

## [0.9.0] - 2017-03-26

[0.9.0]: https://github.com/atomist-rugs/spring-boot-rest-service/compare/0.8.0...0.9.0

Tidy release

### Changed

- Clean up Rug descriptions and code

## [0.8.0] - 2017-03-24

Expand Down

0 comments on commit bbeb8db

Please sign in to comment.