capucine 0.2.5 → 0.2.9
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.
- data/README.md +16 -10
- data/VERSION +1 -1
- data/bin/capucine +2 -19
- data/capucine.gemspec +1 -3
- data/content/default.yaml +16 -18
- data/content/shared/capucine.yaml +22 -20
- data/content/shared/index.html +4 -5
- data/content/shared/sass/_main.scss +1 -14
- data/content/shared/sass/screen.scss +2 -5
- data/content/templates/compass_config.erb +2 -9
- data/examples/with-all/.compass_config.rb +8 -3
- data/examples/with-all/capucine.yaml +21 -19
- data/examples/with-all/public/css_generated/screen.css +60 -105
- data/examples/with-all/sass/_main.scss +1 -14
- data/examples/with-all/sass/screen.scss +2 -5
- data/examples/with-coffeescript/capucine.yaml +21 -19
- data/examples/with-incloudr/capucine.yaml +19 -17
- data/examples/with-sass-and-compass/.compass_config.rb +8 -3
- data/examples/with-sass-and-compass/capucine.yaml +18 -16
- data/examples/with-sass-and-compass/public/css_generated/screen.css +1 -105
- data/examples/with-sass-and-compass/sass/_main.scss +1 -14
- data/examples/with-sass-and-compass/sass/screen.scss +2 -5
- data/lib/coffeescript.rb +1 -1
- data/lib/compass-sass.rb +17 -5
- data/lib/settings.rb +23 -14
- data/lib/tools.rb +1 -3
- data/spec/capucine/capucine_spec.rb +6 -6
- data/spec/capucine_coffee.yaml +20 -18
- data/spec/capucine_incloudr.yaml +29 -3
- data/spec/capucine_incloudr2.yaml +28 -3
- data/spec/capucine_incloudr3.yaml +30 -4
- metadata +2 -4
- data/content/options.yaml +0 -11
- data/examples/with-incloudr/.compass_config.rb +0 -13
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Capucine
|
2
2
|
|
3
|
-
Capucine is a command line tool for using **
|
3
|
+
Capucine is a command line tool for using **Compass**, **CoffeeScript** and **Incloudr** in any project.
|
4
4
|
It is completely agnostic and there are few configuration (just a simple and understandable **YAML** file).
|
5
5
|
|
6
6
|
**The first goal of
|
@@ -11,7 +11,7 @@ frontend tools. **
|
|
11
11
|
|
12
12
|
This meta-languages really solve big problems in frontend development. Some people are using them every day for a cleaner code and better collaboration.
|
13
13
|
|
14
|
-
* **
|
14
|
+
* **Compass**
|
15
15
|
|
16
16
|
Maybe you already know Sass (and Compass).
|
17
17
|
If it's not the case, this blog post can be really helpful.
|
@@ -258,21 +258,25 @@ Quick Help :
|
|
258
258
|
|
259
259
|
All directories are relative to the root project (the parent directory of the `capucine.yaml` file)
|
260
260
|
|
261
|
-
###
|
261
|
+
### Compass :
|
262
262
|
|
263
|
+
All the option are from the official Gem : [Documentation here](http://compass-style.org/help/tutorials/configuration-reference/)
|
264
|
+
But, there are the basics :
|
263
265
|
|
264
|
-
- `
|
265
|
-
- `
|
266
|
+
- `sass_dir` : Directory where you place your `.scss / .sass` files.
|
267
|
+
- `css_dir` : Where your Sass will be compiled.
|
268
|
+
- `images_dir` : For Compass helpers.
|
269
|
+
- `line_comments` : Remove line comments for the output.
|
270
|
+
- `output_style` : expanded (dev), compact, or compressed (prod).
|
271
|
+
- `sass_options` : Raw Sass options. Will be passed to Compass configuration.
|
272
|
+
|
273
|
+
And :
|
266
274
|
|
267
275
|
- `use_libsass` : For the future.
|
268
|
-
- `sass_images_dir` : For Compass.
|
269
|
-
- `sass_line_comments` : Remove line comments for the output.
|
270
|
-
- `sass_css_generated_style` : expanded (dev), compact, or compressed (prod).
|
271
|
-
- `sass_options` : Raw Sass options. Will be passed to Compass configuration.
|
272
|
-
- `compass_config` : Passed to Compass config.
|
273
276
|
- `compass_plugins` : A list of plugins. `gem_name` or `plugin_name|gem_name`
|
274
277
|
Ex : `- compass-capucine` or `- compass_twitter_bootstrap`.
|
275
278
|
|
279
|
+
Import:
|
276
280
|
|
277
281
|
- `sass_import_css` : True or False. For using the import system.
|
278
282
|
- `sass_import_formats` : Can be `css to scss`, `css to sass`, `scss to sass`, or `sass to scss`.
|
@@ -315,6 +319,8 @@ Ex : `- compass-capucine` or `- compass_twitter_bootstrap`.
|
|
315
319
|
|
316
320
|
# TODO
|
317
321
|
- Add NPM support for Incloudr
|
322
|
+
- Add JSDelivr support for Incloudr
|
323
|
+
|
318
324
|
- Add the `clean` option
|
319
325
|
- Make rake tasks
|
320
326
|
- Switch from FSSM to guard-listen
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.9
|
data/bin/capucine
CHANGED
@@ -1,24 +1,7 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
-
require 'rubygems' unless defined?(Gem)
|
3
|
-
require 'bundler/setup' if %w(Gemfile .components).all? { |f| File.exist?(f) }
|
4
2
|
|
5
|
-
|
6
|
-
|
7
|
-
begin
|
8
|
-
yield
|
9
|
-
rescue LoadError
|
10
|
-
unless retried
|
11
|
-
$: << path
|
12
|
-
retried = true
|
13
|
-
retry
|
14
|
-
end
|
15
|
-
raise
|
16
|
-
end
|
17
|
-
end
|
18
|
-
|
19
|
-
fallback_load_path(File.join(File.dirname(__FILE__), '..', 'lib')) do
|
20
|
-
require 'capucine.rb'
|
21
|
-
end
|
3
|
+
file = File.join File.dirname(__FILE__), '..', 'lib', 'capucine.rb'
|
4
|
+
require file
|
22
5
|
|
23
6
|
@cap = Capucine::Main.new
|
24
7
|
@cap.run_command(ARGV)
|
data/capucine.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "capucine"
|
8
|
-
s.version = "0.2.
|
8
|
+
s.version = "0.2.9"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Damian Le Nouaille"]
|
@@ -27,7 +27,6 @@ Gem::Specification.new do |s|
|
|
27
27
|
"capucine-logo-mini.png",
|
28
28
|
"capucine.gemspec",
|
29
29
|
"content/default.yaml",
|
30
|
-
"content/options.yaml",
|
31
30
|
"content/shared/capucine.yaml",
|
32
31
|
"content/shared/coffeescript/app.coffee",
|
33
32
|
"content/shared/index.html",
|
@@ -65,7 +64,6 @@ Gem::Specification.new do |s|
|
|
65
64
|
"examples/with-coffeescript/coffeescript/app.coffee",
|
66
65
|
"examples/with-coffeescript/public/js_generated/app.js",
|
67
66
|
"examples/with-coffeescript/public/js_generated/app.min.js",
|
68
|
-
"examples/with-incloudr/.compass_config.rb",
|
69
67
|
"examples/with-incloudr/capucine.yaml",
|
70
68
|
"examples/with-incloudr/public/js_generated/modules/jquery.js",
|
71
69
|
"examples/with-incloudr/public/js_generated/modules/jquery.min.js",
|
data/content/default.yaml
CHANGED
@@ -1,27 +1,25 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
# ---------------[ SASS ]------------------------
|
6
|
-
sass_files_dir: sass
|
7
|
-
sass_output_dir: public/css_generated
|
1
|
+
use_compass: false
|
2
|
+
use_coffeescript: false
|
3
|
+
use_incloudr: false
|
8
4
|
|
5
|
+
# ---------------[ COMPASS ]------------------------
|
9
6
|
use_libsass: false
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
7
|
+
compass:
|
8
|
+
sass_dir: sass
|
9
|
+
css_dir: public/css_generated
|
10
|
+
images_dir: public/images
|
11
|
+
|
12
|
+
output_style: compressed # compact | expanded | compressed
|
13
|
+
line_comments: false
|
14
|
+
sass_options: '{:cache => false}' # please use this format (a string)
|
14
15
|
|
16
|
+
compass_plugins: []
|
17
|
+
# ---------------[ IMPORT ]------------------------
|
15
18
|
sass_import_css: false
|
16
|
-
sass_import_formats: css to
|
19
|
+
sass_import_formats: css to scss
|
17
20
|
sass_import_css_dir: public/css/import
|
18
21
|
sass_import_output_dir: sass/converted
|
19
22
|
|
20
|
-
# ---------------[ COMPASS ]------------------------
|
21
|
-
compass_config: {}
|
22
|
-
compass_plugins:
|
23
|
-
- compass-capucine
|
24
|
-
|
25
23
|
# ---------------[ COFFEESCRIPT ]--------------------------
|
26
24
|
coffeescript_bare: false
|
27
25
|
coffeescript_files_dir: coffeescript
|
@@ -31,4 +29,4 @@ coffeescript_output_dir: public/js_generated
|
|
31
29
|
incloudr_output_dir: public/js_generated/modules
|
32
30
|
incloudr_libs: []
|
33
31
|
|
34
|
-
# DOCUMENTATION : http:// capucine.dln.name
|
32
|
+
# DOCUMENTATION : http:// capucine.dln.name
|
@@ -1,34 +1,36 @@
|
|
1
|
-
|
2
|
-
#
|
3
|
-
#
|
1
|
+
use_compass: true
|
2
|
+
# use_coffeescript: true
|
3
|
+
# use_incloudr: true
|
4
4
|
|
5
|
-
#
|
6
|
-
|
7
|
-
|
5
|
+
# ---------------[ COMPASS ]------------------------
|
6
|
+
use_libsass: false
|
7
|
+
compass:
|
8
|
+
sass_dir: sass
|
9
|
+
css_dir: public/css_generated
|
10
|
+
images_dir: public/images
|
8
11
|
|
9
|
-
#
|
10
|
-
#
|
11
|
-
#
|
12
|
-
# sass_options: '{:cache => false}'
|
12
|
+
# output_style: expanded # compact | expanded | compressed
|
13
|
+
# line_comments: false
|
14
|
+
# sass_options: '{:cache => false}' # please use this format (a string)
|
13
15
|
|
14
|
-
#
|
15
|
-
#
|
16
|
+
# compass_plugins:
|
17
|
+
# - compass_twitter_bootstrap
|
18
|
+
# - compass-capucine
|
19
|
+
|
20
|
+
# ---------------[ IMPORT ]------------------------
|
21
|
+
# sass_import_css: true
|
22
|
+
# sass_import_formats: css to scss
|
16
23
|
# sass_import_css_dir: public/css/import
|
17
24
|
# sass_import_output_dir: sass/converted
|
18
25
|
|
19
|
-
#
|
20
|
-
# compass_config: {}
|
21
|
-
# compass_plugins:
|
22
|
-
# - compass-capucine
|
23
|
-
|
24
|
-
# # ---------------[ COFFEESCRIPT ]--------------------------
|
26
|
+
# ---------------[ COFFEESCRIPT ]--------------------------
|
25
27
|
# coffeescript_bare: false
|
26
28
|
# coffeescript_files_dir: coffeescript
|
27
29
|
# coffeescript_output_dir: public/js_generated
|
28
30
|
|
29
|
-
#
|
31
|
+
# ---------------[ INCLOUDR ]------------------------
|
30
32
|
# incloudr_output_dir: public/js_generated/modules
|
31
33
|
# incloudr_libs:
|
32
34
|
# - name: jquery
|
33
35
|
|
34
|
-
# DOCUMENTATION : http:// capucine.dln.name
|
36
|
+
# DOCUMENTATION : http:// capucine.dln.name
|
data/content/shared/index.html
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
<head>
|
5
5
|
<meta charset="UTF-8">
|
6
6
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
7
|
-
<title
|
7
|
+
<title>.</title>
|
8
8
|
|
9
9
|
<meta name="description" content="">
|
10
10
|
<meta name="author" content="">
|
@@ -18,18 +18,17 @@
|
|
18
18
|
<!-- <meta property="fb:admins" content=""/> -->
|
19
19
|
|
20
20
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
21
|
+
<link rel="stylesheet" href="public/css_generated/screen.css">
|
22
|
+
|
21
23
|
<link rel="shortcut icon" href="public/images/favicon/favicon.png">
|
22
24
|
<!-- <link rel="apple-touch-icon" href="public/images/favicon/apple-touch-icon-precomposed.png"> -->
|
23
25
|
<!-- <link rel="apple-touch-icon" href="public/images/favicon/apple-touch-icon-57x57-precomposed.png" sizes="57x57"> -->
|
24
26
|
<!-- <link rel="apple-touch-icon" href="public/images/favicon/apple-touch-icon-72x72-precomposed.png" sizes="72x72"> -->
|
25
27
|
<!-- <link rel="apple-touch-icon" href="public/images/favicon/apple-touch-icon-114x114-precomposed.png" sizes="114x114"> -->
|
26
|
-
<link rel="stylesheet" href="public/css_generated/screen.css">
|
27
28
|
</head>
|
28
29
|
<body>
|
29
|
-
<div
|
30
|
+
<div id="page_wrap">
|
30
31
|
|
31
|
-
<div role="main" id="content">
|
32
|
-
</div>
|
33
32
|
|
34
33
|
</div>
|
35
34
|
<!-- <script src="public/js_generated/app.js"></script> -->
|
@@ -1,22 +1,9 @@
|
|
1
|
-
// @include font-face('my_font',font-files('../fonts/my_font.ttf', truetype, '../fonts/my_font.otf', opentype), '../fonts/my_font.eot')
|
2
|
-
|
3
|
-
$WIDTH_MIN: 320px;
|
4
|
-
$WIDTH_MAX: 960px;
|
5
|
-
|
6
1
|
$FONT_0: "Lucida Grande", "Tahoma", Arial, sans-serif;
|
7
2
|
$COLOR_0: #111;
|
8
3
|
|
9
|
-
|
10
4
|
body {
|
11
5
|
font: normal 12px $FONT_0;
|
12
6
|
color: $COLOR_0;
|
13
7
|
}
|
14
8
|
|
15
|
-
|
16
|
-
|
17
|
-
p, b, strong, i, blockquote {line-height: 1.5em;}
|
18
|
-
|
19
|
-
.wrap {
|
20
|
-
@include centerX;
|
21
|
-
@include min-max-width($WIDTH_MIN, $WIDTH_MAX);
|
22
|
-
}
|
9
|
+
// FREEDOM
|
@@ -1,8 +1,5 @@
|
|
1
|
-
// @import "compass"; // COMPASS ALL
|
2
|
-
@import "compass/css3"; // COMPASS CSS3
|
3
1
|
@import "compass/reset"; // COMPASS RESET
|
4
|
-
|
5
|
-
@import "compass-capucine"; // CAPUCINE HELPERS =>
|
2
|
+
@import "compass/css3"; // COMPASS CSS3
|
6
3
|
|
7
4
|
@import "./main";
|
8
|
-
@import "./responsive";
|
5
|
+
@import "./responsive";
|
@@ -7,15 +7,8 @@ require "<%= plugin %>"
|
|
7
7
|
<% end %>
|
8
8
|
<% end %>
|
9
9
|
|
10
|
-
|
11
|
-
sass_dir = "<%= config["sass_files_dir"] %>"
|
12
|
-
css_dir = "<%= config["sass_output_dir"] %>"
|
13
|
-
line_comments = <%= config["sass_line_comments"] %>
|
14
|
-
output_style = :<%= config["sass_css_generated_style"] %>
|
15
|
-
sass_options = <%= config["sass_options"] %>
|
10
|
+
project_type = :stand_alone
|
16
11
|
|
17
|
-
<%
|
18
|
-
<% for k, v in config["compass_config"] %>
|
12
|
+
<% for k, v in config["compass_custom"] %>
|
19
13
|
<%= k %> = <%= v %>
|
20
14
|
<% end %>
|
21
|
-
<% end %>
|
@@ -1,13 +1,18 @@
|
|
1
|
+
# !!!! NEVER EDIT THIS FILE !!!!
|
2
|
+
# ALWAYS EDIT : capucine.yaml
|
1
3
|
|
2
4
|
|
3
|
-
require "compass-capucine"
|
4
5
|
|
6
|
+
project_type = :stand_alone
|
5
7
|
|
6
8
|
|
7
|
-
images_dir = "public/images"
|
8
9
|
sass_dir = "sass"
|
10
|
+
|
9
11
|
css_dir = "public/css_generated"
|
12
|
+
|
13
|
+
output_style = :compressed
|
14
|
+
|
10
15
|
line_comments = false
|
11
|
-
|
16
|
+
|
12
17
|
sass_options = {:cache => false}
|
13
18
|
|
@@ -1,30 +1,32 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
use_compass: true
|
2
|
+
use_coffeescript: true
|
3
|
+
use_incloudr: true
|
4
4
|
|
5
|
-
#
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
# sass_line_comments: false
|
10
|
-
# sass_css_generated_style: expanded # compact | expanded | compressed
|
11
|
-
# sass_options: '{:cache => false}'
|
5
|
+
# ---------------[ COMPASS ]------------------------
|
6
|
+
compass:
|
7
|
+
sass_dir: sass
|
8
|
+
css_dir: public/css_generated
|
12
9
|
|
13
|
-
#
|
14
|
-
#
|
15
|
-
#
|
10
|
+
# output_style: expanded # compact | expanded | compressed
|
11
|
+
# line_comments: false
|
12
|
+
# sass_options: '{:cache => false}' # please use this format (a string)
|
16
13
|
|
17
|
-
#
|
18
|
-
#
|
14
|
+
# compass_plugins:
|
15
|
+
# - compass_twitter_bootstrap
|
16
|
+
# ---------------[ IMPORT ]------------------------
|
17
|
+
# sass_import_css: true
|
18
|
+
# sass_import_formats: css to scss
|
19
19
|
# sass_import_css_dir: public/css/import
|
20
20
|
# sass_import_output_dir: sass/converted
|
21
21
|
|
22
|
-
#
|
23
|
-
|
24
|
-
|
22
|
+
# ---------------[ COFFEESCRIPT ]--------------------------
|
23
|
+
coffeescript_bare: false
|
24
|
+
coffeescript_files_dir: coffeescript
|
25
|
+
coffeescript_output_dir: public/js_generated
|
25
26
|
|
27
|
+
# ---------------[ INCLOUDR ]------------------------
|
26
28
|
# incloudr_output_dir: public/js_generated/modules
|
27
29
|
incloudr_libs:
|
28
30
|
- name: jquery
|
29
31
|
|
30
|
-
# DOCUMENTATION : http:// capucine.dln.name
|
32
|
+
# DOCUMENTATION : http:// capucine.dln.name
|
@@ -1,105 +1,60 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
-
|
60
|
-
-
|
61
|
-
-webkit-user-select: none;
|
62
|
-
user-select: none;
|
63
|
-
}
|
64
|
-
|
65
|
-
.cf {
|
66
|
-
clear: both;
|
67
|
-
display: block;
|
68
|
-
*zoom: 1;
|
69
|
-
}
|
70
|
-
.cf:before, .cf:after {
|
71
|
-
content: "\0020";
|
72
|
-
display: table;
|
73
|
-
}
|
74
|
-
.cf:after {
|
75
|
-
clear: both;
|
76
|
-
}
|
77
|
-
|
78
|
-
.scale {
|
79
|
-
max-width: 100%;
|
80
|
-
height: auto;
|
81
|
-
}
|
82
|
-
|
83
|
-
body {
|
84
|
-
font: normal 12px "Lucida Grande", "Tahoma", Arial, sans-serif;
|
85
|
-
color: #111111;
|
86
|
-
}
|
87
|
-
|
88
|
-
a:active, .pressed:active {
|
89
|
-
position: relative;
|
90
|
-
top: 1px;
|
91
|
-
}
|
92
|
-
|
93
|
-
p, b, strong, i, blockquote {
|
94
|
-
line-height: 1.5em;
|
95
|
-
}
|
96
|
-
|
97
|
-
.wrap {
|
98
|
-
margin: 0 auto;
|
99
|
-
text-align: left;
|
100
|
-
min-width: 320px;
|
101
|
-
width: auto !important;
|
102
|
-
width: 320px;
|
103
|
-
max-width: 960px;
|
104
|
-
width: expression(document.body.clientWidth > parseInt("960px") ? "960px" : "auto");
|
105
|
-
}
|
1
|
+
/*
|
2
|
+
Syntax error: File to import not found or unreadable: compass-capucine.
|
3
|
+
Load paths:
|
4
|
+
/Users/damln/Work/capucine/capucine-gem/examples/with-all/sass
|
5
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/compass-0.13.alpha.0/frameworks/blueprint/stylesheets
|
6
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/compass-0.13.alpha.0/frameworks/compass/stylesheets
|
7
|
+
Compass::SpriteImporter
|
8
|
+
on line 5 of /Users/damln/Work/capucine/capucine-gem/examples/with-all/sass/screen.scss
|
9
|
+
|
10
|
+
1: /Users/damln/Work/capucine/capucine-gem/examples/with-all/sass/screen.scss
|
11
|
+
|
12
|
+
Backtrace:
|
13
|
+
/Users/damln/Work/capucine/capucine-gem/examples/with-all/sass/screen.scss:5
|
14
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/sass-3.2.0.alpha.244/lib/sass/tree/import_node.rb:64:in `rescue in import'
|
15
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/sass-3.2.0.alpha.244/lib/sass/tree/import_node.rb:42:in `import'
|
16
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/sass-3.2.0.alpha.244/lib/sass/tree/import_node.rb:25:in `imported_file'
|
17
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/sass-3.2.0.alpha.244/lib/sass/tree/visitors/perform.rb:149:in `rescue in visit_import'
|
18
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/sass-3.2.0.alpha.244/lib/sass/tree/visitors/perform.rb:154:in `visit_import'
|
19
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/sass-3.2.0.alpha.244/lib/sass/tree/visitors/base.rb:37:in `visit'
|
20
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/sass-3.2.0.alpha.244/lib/sass/tree/visitors/perform.rb:20:in `visit'
|
21
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/sass-3.2.0.alpha.244/lib/sass/tree/visitors/base.rb:53:in `block in visit_children'
|
22
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/sass-3.2.0.alpha.244/lib/sass/tree/visitors/base.rb:53:in `map'
|
23
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/sass-3.2.0.alpha.244/lib/sass/tree/visitors/base.rb:53:in `visit_children'
|
24
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/sass-3.2.0.alpha.244/lib/sass/tree/visitors/perform.rb:29:in `block in visit_children'
|
25
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/sass-3.2.0.alpha.244/lib/sass/tree/visitors/perform.rb:41:in `with_environment'
|
26
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/sass-3.2.0.alpha.244/lib/sass/tree/visitors/perform.rb:28:in `visit_children'
|
27
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/sass-3.2.0.alpha.244/lib/sass/tree/visitors/base.rb:37:in `block in visit'
|
28
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/sass-3.2.0.alpha.244/lib/sass/tree/visitors/perform.rb:49:in `visit_root'
|
29
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/sass-3.2.0.alpha.244/lib/sass/tree/visitors/base.rb:37:in `visit'
|
30
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/sass-3.2.0.alpha.244/lib/sass/tree/visitors/perform.rb:20:in `visit'
|
31
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/sass-3.2.0.alpha.244/lib/sass/tree/visitors/perform.rb:7:in `visit'
|
32
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/sass-3.2.0.alpha.244/lib/sass/tree/root_node.rb:20:in `render'
|
33
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/sass-3.2.0.alpha.244/lib/sass/engine.rb:309:in `_render'
|
34
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/sass-3.2.0.alpha.244/lib/sass/engine.rb:256:in `render'
|
35
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/compass-0.13.alpha.0/lib/compass/compiler.rb:140:in `block (2 levels) in compile'
|
36
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/compass-0.13.alpha.0/lib/compass/compiler.rb:126:in `timed'
|
37
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/compass-0.13.alpha.0/lib/compass/compiler.rb:139:in `block in compile'
|
38
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/compass-0.13.alpha.0/lib/compass/logger.rb:45:in `red'
|
39
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/compass-0.13.alpha.0/lib/compass/compiler.rb:138:in `compile'
|
40
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/compass-0.13.alpha.0/lib/compass/compiler.rb:118:in `compile_if_required'
|
41
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/compass-0.13.alpha.0/lib/compass/compiler.rb:103:in `block (2 levels) in run'
|
42
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/compass-0.13.alpha.0/lib/compass/compiler.rb:101:in `each'
|
43
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/compass-0.13.alpha.0/lib/compass/compiler.rb:101:in `block in run'
|
44
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/compass-0.13.alpha.0/lib/compass/compiler.rb:126:in `timed'
|
45
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/compass-0.13.alpha.0/lib/compass/compiler.rb:100:in `run'
|
46
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/compass-0.13.alpha.0/lib/compass/commands/update_project.rb:45:in `perform'
|
47
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/compass-0.13.alpha.0/lib/compass/commands/base.rb:18:in `execute'
|
48
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/compass-0.13.alpha.0/lib/compass/commands/project_base.rb:19:in `execute'
|
49
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/compass-0.13.alpha.0/lib/compass/exec/sub_command_ui.rb:43:in `perform!'
|
50
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/compass-0.13.alpha.0/lib/compass/exec/sub_command_ui.rb:15:in `run!'
|
51
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/compass-0.13.alpha.0/bin/compass:29:in `block in <top (required)>'
|
52
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/compass-0.13.alpha.0/bin/compass:43:in `call'
|
53
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/compass-0.13.alpha.0/bin/compass:43:in `<top (required)>'
|
54
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/bin/compass:19:in `load'
|
55
|
+
/Users/damln/.rvm/gems/ruby-1.9.3-p125/bin/compass:19:in `<main>'
|
56
|
+
*/
|
57
|
+
body:before {
|
58
|
+
white-space: pre;
|
59
|
+
font-family: monospace;
|
60
|
+
content: "Syntax error: File to import not found or unreadable: compass-capucine.\A Load paths:\A /Users/damln/Work/capucine/capucine-gem/examples/with-all/sass\A /Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/compass-0.13.alpha.0/frameworks/blueprint/stylesheets\A /Users/damln/.rvm/gems/ruby-1.9.3-p125/gems/compass-0.13.alpha.0/frameworks/compass/stylesheets\A Compass::SpriteImporter\A on line 5 of /Users/damln/Work/capucine/capucine-gem/examples/with-all/sass/screen.scss\A \A 1: /Users/damln/Work/capucine/capucine-gem/examples/with-all/sass/screen.scss"; }
|