ecstatic 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -5
- data/lib/ecstatic/command.rb +1 -0
- data/lib/ecstatic/templates/config.rb +28 -0
- data/lib/ecstatic/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8754c26366ad40b6fddb9a91b0b882ff2002324c
|
4
|
+
data.tar.gz: 3f3bbe14914d07b696c7c61c19e2f85a21592a85
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 819b700ba9fe73a07905d5fe6ba56497b047a982691a40eb3243b7f7ac6ee8047d9fbf558c2eab76fbfad66c8663f224d9d53da92c18a41675c904a37385993d
|
7
|
+
data.tar.gz: 703ec7b5385b738561e4f3823a251de5a31c9ad658423cb44d904145d8d9f7b7e19245e6fc0e5b7f69a365a72c685d065e8bd978f7f0c50c0db8c91f3c28277c
|
data/README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Ecstatic is a static site generator focused on simplicity. It uses just enough of the right tools, leaving as much power in your hands while still providing plenty of value. Ecstatic is opinionated in favor of [HAML](http://haml.info/), [SASS](http://sass-lang.com/), and [CoffeeScript](http://coffeescript.org/).
|
4
4
|
|
5
|
-
Ecstatic provides a straight-forward directory structure for your site
|
5
|
+
Ecstatic provides a straight-forward directory structure for your site. It also provides a mechanism to push either the `master` or `gh-pages` branch to GitHub.
|
6
6
|
|
7
7
|
Ecstatic does **not** provide an automatic mechanism for blogging. If you want to use Ecstatic for blogging, you will have to curate your own site structure. Not ideal, but it's not a core feature. Perhaps someone will write a plugin that provides automatic blogging functionality (hint, hint).
|
8
8
|
|
@@ -42,10 +42,10 @@ After installation and initialization, you should have the following directory t
|
|
42
42
|
├── config.rb
|
43
43
|
├── gh-pages
|
44
44
|
└── site
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
45
|
+
├── assets
|
46
|
+
│ ├── scripts
|
47
|
+
│ └── stylesheets
|
48
|
+
└── pages
|
49
49
|
```
|
50
50
|
|
51
51
|
When writing your website, you will focus almost exclusively on the `site` directory. While you're working on your site, you'll want to run `ecstatic server` and view its contents at [localhost:4567](http://localhost:4567).
|
data/lib/ecstatic/command.rb
CHANGED
@@ -0,0 +1,28 @@
|
|
1
|
+
# Require any additional compass plugins here.
|
2
|
+
|
3
|
+
# Set this to the root of your project when deployed:
|
4
|
+
http_path = "/"
|
5
|
+
http_javascripts_path = http_path + 'javascripts/'
|
6
|
+
http_images_path = http_path + 'images/'
|
7
|
+
|
8
|
+
css_dir = "gh-pages/css"
|
9
|
+
sass_dir = "site/assets/stylesheets"
|
10
|
+
images_dir = "site/assets/images"
|
11
|
+
javascripts_dir = "site/assets/scripts"
|
12
|
+
|
13
|
+
# You can select your preferred output style here (can be overridden via the command line):
|
14
|
+
# output_style = :expanded or :nested or :compact or :compressed
|
15
|
+
|
16
|
+
# To enable relative paths to assets via compass helper functions. Uncomment:
|
17
|
+
# relative_assets = true
|
18
|
+
|
19
|
+
# To disable debugging comments that display the original location of your selectors. Uncomment:
|
20
|
+
# line_comments = false
|
21
|
+
|
22
|
+
|
23
|
+
# If you prefer the indented syntax, you might want to regenerate this
|
24
|
+
# project again passing --syntax sass, or you can uncomment this:
|
25
|
+
# preferred_syntax = :sass
|
26
|
+
# and then run:
|
27
|
+
# sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass
|
28
|
+
|
data/lib/ecstatic/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ecstatic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bradley Grzesiak
|
@@ -201,6 +201,7 @@ files:
|
|
201
201
|
- lib/ecstatic/command.rb
|
202
202
|
- lib/ecstatic/server.rb
|
203
203
|
- lib/ecstatic/templates/.gitignore
|
204
|
+
- lib/ecstatic/templates/config.rb
|
204
205
|
- lib/ecstatic/templates/site/.gitkeep
|
205
206
|
- lib/ecstatic/templates/site/assets/.gitkeep
|
206
207
|
- lib/ecstatic/templates/site/assets/scripts/.gitkeep
|