Skip to content
This repository was archived by the owner on Dec 14, 2018. It is now read-only.

Commit 3560d26

Browse files
committed
Add automatic bootstrapping script makenew.sh
1 parent ab932e1 commit 3560d26

File tree

5 files changed

+100
-44
lines changed

5 files changed

+100
-44
lines changed

LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) yyyy copyright_owner
3+
Copyright (c) 2016 Evan Sosenko
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

README.md

+25-35
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
# libSass Package Skeleton
22

3-
<!--
43
[![npm](https://img.shields.io/npm/v/makenew-libsass-package.svg)](https://www.npmjs.com/package/makenew-libsass-package)
5-
-->
6-
<!--
74
[![Bower](https://img.shields.io/bower/v/makenew-libsass-package.svg)](http://bower.io/search/?q=makenew-libsass-package)
8-
-->
95
[![GitHub license](https://img.shields.io/github/license/makenew/libsass-package.svg)](./LICENSE.txt)
106
[![Dependency Status](https://img.shields.io/gemnasium/makenew/libsass-package.svg)](https://gemnasium.com/makenew/libsass-package)
117
[![Build Status](https://img.shields.io/travis/makenew/libsass-package.svg)](https://travis-ci.org/makenew/libsass-package)
@@ -23,52 +19,36 @@ For [Ruby Sass][Sass], use [makenew/sass-package].
2319

2420
### Features
2521

26-
* [Bower] package structure.
22+
* [Bower] and [npm] package structure.
2723
* [Grunt] tasks for development.
28-
* Node package management with [npm].
2924
* [Travis CI] ready.
3025
* [EditorConfig].
31-
* Badges from [Shields.io]!
26+
* Badges from [Shields.io].
3227

33-
[Bundler]: http://bundler.io/
28+
[Bower]: http://bower.io/
3429
[EditorConfig]: http://editorconfig.org/
3530
[Grunt]: http://gruntjs.com/
3631
[npm]: https://www.npmjs.com/
3732
[Shields.io]: http://shields.io/
3833
[Travis CI]: https://travis-ci.org/
3934

40-
### Usage
41-
42-
This software can be used freely, see [The Unlicense].
43-
The MIT License text appearing in this software is for
44-
demonstration purposes only and does not apply to this software.
35+
### Bootstrapping a New Project
4536

4637
1. Clone this repository or download a [release][Releases].
4738

48-
2. Customize this README.
49-
- Set the title and summary text.
50-
- Replace the Description section.
51-
- Update the Source section.
52-
- Update the Contributing section.
53-
- Remove or update the badges.
54-
55-
3. Set the copyright year and owner in `LICENSE.txt`.
39+
2. Run `./makenew.sh` and follow the prompts.
40+
This will replace the boilerplate, delete itself,
41+
and stage changes for commit.
42+
This script assumes the project repository will be hosted on GitHub.
43+
For an alternative location, you must update the URLs manually.
5644

57-
4. Customize `bower.json`.
45+
3. Fill in the README Description section.
5846

59-
5. Replace any remaining instances of the placeholder package name.
60-
You can replace the placeholder package name and GitHub username
61-
with your own using
62-
63-
```
64-
$ git ls-files -z | xargs -0 sed -i 's/libsass-package/your-package/g'
65-
$ git ls-files -z | xargs -0 sed -i 's/makenew/your_username/g'
66-
```
67-
68-
Note that `CHANGELOG.md` is just a template for this skeleton.
69-
The actual changes for this project are documented in the commit history
70-
and summarized under [Releases].
47+
4. If [choosing a license][Choose a license] other than the one provided:
48+
update `LICENSE.txt`, the README License section,
49+
`package.json`, and `bower.json` with your chosen license.
7150

51+
[Choose a license]: http://choosealicense.com/
7252
[Releases]: https://github.com/makenew/libsass-package/releases
7353
[The Unlicense]: http://unlicense.org/UNLICENSE
7454

@@ -96,9 +76,15 @@ You can then fetch and merge changes with
9676

9777
```
9878
$ git fetch upstream
99-
$ git merge upstream/libsass
79+
$ git merge upstream/master
10080
```
10181

82+
#### Changelog
83+
84+
Note that `CHANGELOG.md` is just a template for this skeleton.
85+
The actual changes for this project are documented in the commit history
86+
and summarized under [Releases].
87+
10288
## Installation
10389

10490
The recommended method is to add this as a dependency
@@ -189,6 +175,10 @@ To submit a patch:
189175

190176
## License
191177

178+
This software can be used freely, see [The Unlicense].
179+
The copyright text appearing below and elsewhere in this repository
180+
is for demonstration purposes only and does not apply to this software.
181+
192182
This Sass package is licensed under the MIT license.
193183

194184
## Warranty

bower.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"name": "libsass-package",
3-
"version": "0.0.0",
4-
"description": "Package description.",
2+
"name": "makenew-libsass-package",
3+
"version": "2.0.0",
4+
"description": "libSass package skeleton.",
55
"main": "stylesheets/main.sass",
66
"authors": [
7-
"Your Name <you@example.com>"
7+
"Evan Sosenko <razorx@evansosenko.com>"
88
],
99
"keywords": [
1010
"sass",
@@ -24,6 +24,7 @@
2424
"test",
2525
"tests",
2626
"build",
27+
"makenew.sh",
2728
"package.json",
2829
"Gruntfile.coffee"
2930
]

makenew.sh

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
#!/usr/bin/env sh
2+
3+
set -e
4+
set -u
5+
6+
find_replace () {
7+
git ls-files -z | xargs -0 sed -i "$1"
8+
}
9+
10+
check_env () {
11+
test -d .git || (echo 'This is not a Git repository. Exiting.' && exit 1)
12+
for cmd in ${1}; do
13+
command -v ${cmd} >/dev/null 2>&1 || \
14+
(echo "Could not find '$cmd' which is required to continue." && exit 2)
15+
done
16+
echo
17+
echo 'Ready to bootstrap your new project!'
18+
echo
19+
}
20+
21+
stage_env () {
22+
echo
23+
git rm -f makenew.sh
24+
echo
25+
echo 'Staging changes.'
26+
git add --all
27+
echo
28+
echo 'Done!'
29+
echo
30+
}
31+
32+
makenew () {
33+
read -p '> Package title: ' mk_title
34+
read -p '> Package name (slug): ' mk_slug
35+
read -p '> Short package description: ' mk_description
36+
read -p '> Version number: ' mk_version
37+
read -p '> Author name: ' mk_author
38+
read -p '> Author email: ' mk_email
39+
read -p '> Copyright owner: ' mk_owner
40+
read -p '> Copyright year: ' mk_year
41+
read -p '> GitHub user or organization name: ' mk_user
42+
read -p '> GitHub repository name: ' mk_project
43+
44+
sed -i -e '11,86d;177,180d' README.md
45+
sed -i -e "11i ${mk_description}" README.md
46+
sed -i -e '27d' bower.json
47+
48+
find_replace "s/version\": \".*\"/version \": \"${mk_version}\"/g"
49+
find_replace "s/0\.0\.0\.\.\./${mk_version}.../g"
50+
find_replace "s/libSass Package Skeleton/${mk_title}/g"
51+
find_replace "s/libSass package skeleton\./${mk_description}/g"
52+
find_replace "s/2016 Evan Sosenko/${mk_year} ${mk_owner}/g"
53+
find_replace "s/Evan Sosenko/${mk_author}/g"
54+
find_replace "s/razorx@evansosenko\.com/${mk_email}/g"
55+
find_replace "s/makenew\/libsass-package/${mk_user}\/${mk_project}/g"
56+
find_replace "s/makenew-libsass-package/${mk_slug}/g"
57+
58+
echo
59+
echo 'Replacing boilerplate.'
60+
}
61+
62+
check_env 'git read sed xargs'
63+
makenew
64+
stage_env
65+
exit

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "libsass-package",
3-
"version": "0.0.0",
4-
"description": "Package description.",
2+
"name": "makenew-libsass-package",
3+
"version": "2.0.0",
4+
"description": "libSass package skeleton.",
55
"main": "stylesheets/main.sass",
66
"keywords": [
77
"sass",
@@ -13,7 +13,7 @@
1313
"repository": "makenew/libsass-package",
1414
"license": "MIT",
1515
"authors": [
16-
"Your Name <you@example.com>"
16+
"Evan Sosenko <razorx@evansosenko.com>"
1717
],
1818
"scripts": {
1919
"prestart": "bower install",

0 commit comments

Comments
 (0)