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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b809bd049469967e964cb0a297e30f4e91280dca
4
- data.tar.gz: 09bb7953fb1ccd2f2df40d66f3ece78e3497db21
3
+ metadata.gz: 8754c26366ad40b6fddb9a91b0b882ff2002324c
4
+ data.tar.gz: 3f3bbe14914d07b696c7c61c19e2f85a21592a85
5
5
  SHA512:
6
- metadata.gz: f0899306cbace9f03fc8713e2dcdcfa377b59c8b793d962e68a29ab219b50510641d06fba955ce4ffa8a142cb09e6c3e129b3a3eada10b87dfeb298ce9a80894
7
- data.tar.gz: a1f336edbb033a1c6f62cfb3644f15f8f140dc73fa93b284fd9278371141cf688a3bc229b5943e776bbf4c6b1c674c6a899405fbfc920d38a029434e075404df
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<!-- and concatenates scripts and stylesheets-->. It also provides a mechanism to push either the `master` or `gh-pages` branch to GitHub.
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
-    ├── assets
46
-    ├── pages
47
-    ├── scripts
48
-    └── stylesheets
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).
@@ -13,6 +13,7 @@ module Ecstatic
13
13
  init_git_if_not_already
14
14
  directory 'site'
15
15
  copy_file '.gitignore'
16
+ copy_file 'config.rb'
16
17
 
17
18
  if options.ghpages?
18
19
  empty_directory 'gh-pages'
@@ -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
+
@@ -1,3 +1,3 @@
1
1
  module Ecstatic
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
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
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