whiskers 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 03f8e1d0a9ab269bb9b31d803ee78d083770a1be
|
|
4
|
+
data.tar.gz: 357a6d9e8d7ac51be9ba8ae1f330ff2445355161
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 73c6775b39333d2509803420d014e48643a98fb6d278b1ae9bb4945e4a6e2f6691e3adc887400e5575cfaf0f90957f55be7b8ec696688c972cdbd925a2349266
|
|
7
|
+
data.tar.gz: 8d37b6d179d027c15524de35ecf12d1ba9b8997c7368144f68d643807ec6a054e1435b4b14cc53e033dbaf83877090a2261e27e77ca3a39aa1e1130878beb0b8
|
data/README.md
CHANGED
|
@@ -11,13 +11,13 @@ This dingus automates a lot of tedious command line work I was doing previously.
|
|
|
11
11
|
If you would like to use it, be my guest.
|
|
12
12
|
|
|
13
13
|
## What does it do?
|
|
14
|
-
You can read the source for yourself if you’re so inclined. If you’re lazy, like me, here is a flyover:
|
|
14
|
+
You can read the source for yourself if you’re so inclined. If you’re lazy, like me, here is a flyover of what Whiskers does:
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
16
|
+
1. Makes a directory structure for organizing your scripts and stylesheets.
|
|
17
|
+
2. Downloads jQuery, require.js, normalize.css
|
|
18
|
+
3. Downloads Bourbon, Neat, Bitters, and some Refills.
|
|
19
|
+
4. Copies over a template to get started on a project
|
|
20
|
+
5. Provides an easy way to live compile CoffeeScript and Sass
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
## Why the Hell would I want that?
|
|
@@ -28,7 +28,7 @@ I apologize, that was curt. You’re a pleasant person and you do a good job.
|
|
|
28
28
|
## How do install it?
|
|
29
29
|
You can run:
|
|
30
30
|
```
|
|
31
|
-
|
|
31
|
+
$ gem install whiskers
|
|
32
32
|
```
|
|
33
33
|
|
|
34
34
|
💥 Boom, you’re done. Though you’ll want to [install CoffeeScript](http://coffeescript.org/#installation) for it to work.
|
|
@@ -37,24 +37,24 @@ You can run:
|
|
|
37
37
|
If you want to get up and running, you can create a new Whiskers site, open the directory, and tell Whiskers to watch for changes like so:
|
|
38
38
|
|
|
39
39
|
```
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
40
|
+
$ whiskers new nameOfMySite
|
|
41
|
+
$ cd nameOfMySite
|
|
42
|
+
$ whiskers watch
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
If you want to create a site with a template beyond the base template you could run:
|
|
46
46
|
```
|
|
47
|
-
|
|
47
|
+
$ whiskers new nameOfMySite nameOfMyTemplate
|
|
48
48
|
```
|
|
49
49
|
|
|
50
50
|
You can see the templates available using:
|
|
51
51
|
```
|
|
52
|
-
|
|
52
|
+
$ whiskers list
|
|
53
53
|
```
|
|
54
54
|
|
|
55
55
|
You can also ask for help using:
|
|
56
56
|
```
|
|
57
|
-
|
|
57
|
+
$ whiskers help
|
|
58
58
|
```
|
|
59
59
|
|
|
60
60
|
## What do all these files and folders do?
|
data/lib/whiskers/version.rb
CHANGED