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: ff07bb1245c21d2c87e4305babd9ce1c294bedb7
4
- data.tar.gz: b5beeffa02679480d8842e66edde4d841f14021c
3
+ metadata.gz: 03f8e1d0a9ab269bb9b31d803ee78d083770a1be
4
+ data.tar.gz: 357a6d9e8d7ac51be9ba8ae1f330ff2445355161
5
5
  SHA512:
6
- metadata.gz: 046522cfa642db7926ae1f6013839e031bb2bac1713851844fd51671eed3575e53414300a803849ea6625c9ec1e94347988f88988c1fcc9260bad14619628f7f
7
- data.tar.gz: 462855f08fc3b4c0c168339125058f4ea1f7e570f9692981a719bbd1f3bc7b87cb599005b109fe547787f9a6709d964e82d75ae2adda3af5746417c4571a3cc4
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
- 1. Make a directory structure for organizing your scripts and stylesheets.
17
- 2. Download jQuery, require.js, normalize.css
18
- 3. Download Bourbon, Neat, Bitters, and some Refills.
19
- 4. Copy over a template to get started on a project
20
- 5. Provide an easy way to live compile CoffeeScript and Sass
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
- $ gem install whiskers
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
- $ whiskers new nameOfMySite
41
- $ cd nameOfMySite
42
- $ whiskers watch
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
- $ whiskers new nameOfMySite nameOfMyTemplate
47
+ $ whiskers new nameOfMySite nameOfMyTemplate
48
48
  ```
49
49
 
50
50
  You can see the templates available using:
51
51
  ```
52
- $ whiskers list
52
+ $ whiskers list
53
53
  ```
54
54
 
55
55
  You can also ask for help using:
56
56
  ```
57
- $ whiskers help
57
+ $ whiskers help
58
58
  ```
59
59
 
60
60
  ## What do all these files and folders do?
@@ -1,7 +1,7 @@
1
1
  # Do any app-wide setup here
2
2
 
3
3
  requirejs.config({
4
- baseUrl: 'js/lib',
4
+ baseUrl: 'scripts/lib',
5
5
  paths: {
6
6
  jquery: 'jquery-2.2.2'
7
7
  }
@@ -1,7 +1,7 @@
1
1
  # Do any app-wide setup here
2
2
 
3
3
  requirejs.config({
4
- baseUrl: 'js/lib',
4
+ baseUrl: 'scripts/lib',
5
5
  paths: {
6
6
  jquery: 'jquery-2.2.2'
7
7
  }
@@ -1,7 +1,7 @@
1
1
  # Do any app-wide setup here
2
2
 
3
3
  requirejs.config({
4
- baseUrl: 'js/lib',
4
+ baseUrl: 'scripts/lib',
5
5
  paths: {
6
6
  jquery: 'jquery-2.2.2'
7
7
  }
@@ -1,3 +1,3 @@
1
1
  module Whiskers
2
- VERSION = '0.0.2'
2
+ VERSION = '0.0.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: whiskers
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zane Swafford