cyaml 0.0.43 → 0.0.44
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.mkdn +7 -0
- data/templates/project/Gemfile +9 -0
- data/templates/project/Guardfile +16 -0
- data/templates/project/custom.scss +6 -0
- data/templates/project/index.html.haml +3 -1
- data/templates/project/manifest.rb +5 -0
- metadata +71 -4
data/README.mkdn
CHANGED
@@ -0,0 +1,16 @@
|
|
1
|
+
# A sample Guardfile
|
2
|
+
# More info at https://github.com/guard/guard#readme
|
3
|
+
|
4
|
+
|
5
|
+
guard 'livereload' do
|
6
|
+
watch(%r{.+\.(html)})
|
7
|
+
watch(%r{stylesheets/.+\.(css)})
|
8
|
+
end
|
9
|
+
|
10
|
+
guard 'haml' do
|
11
|
+
watch(%r{^.+(\.haml)})
|
12
|
+
end
|
13
|
+
|
14
|
+
guard 'compass' do
|
15
|
+
watch(%r{.s[ac]ss})
|
16
|
+
end
|
@@ -7,7 +7,9 @@
|
|
7
7
|
%meta{:content => "width=device-width, initial-scale=1.0", :name => "viewport"}/
|
8
8
|
/ (en) Add your meta data here
|
9
9
|
/ (de) Fuegen Sie hier ihre Meta-Daten ein
|
10
|
-
%link{:href => "./stylesheets/
|
10
|
+
%link{:href => "./stylesheets/custom.css", :rel => "stylesheet", :type => "text/css"}/
|
11
|
+
%script{:type=>'text/javascript', :src=>"https://github.com/livereload/livereload-js/raw/master/dist/livereload.js?host=localhost"}
|
12
|
+
|
11
13
|
/[if lte IE 7]
|
12
14
|
<link href="./stylesheets/iehacks.css" rel="stylesheet" type="text/css" />
|
13
15
|
/[if lt IE 9]
|
@@ -4,12 +4,17 @@ discover :images
|
|
4
4
|
discover :javascripts
|
5
5
|
file 'config.scss', :to =>'config.scss'
|
6
6
|
file 'basemod.scss', :to =>'basemod.scss'
|
7
|
+
file 'custom.scss', :to =>'custom.scss'
|
8
|
+
file 'Guardfile', :to =>'Guardfile'
|
9
|
+
file 'index.html.haml', :to=>'index.html.haml'
|
10
|
+
|
7
11
|
stylesheet 'default_includes.scss'
|
8
12
|
|
9
13
|
if Compass.configuration.project_type == :rails
|
10
14
|
file 'application.html.haml', :to => 'app/views/layouts/application.html.haml'
|
11
15
|
else
|
12
16
|
html 'index.html.haml'
|
17
|
+
file 'Gemfile', :to =>'Gemfile'
|
13
18
|
end
|
14
19
|
help %Q{
|
15
20
|
This is a Compass extension for the YAML Framework. It's written and maintained by Michael Gerber.
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cyaml
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 71
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 44
|
10
|
+
version: 0.0.44
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Michael Gerber
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2012-02-
|
18
|
+
date: 2012-02-24 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: compass
|
@@ -33,6 +33,70 @@ dependencies:
|
|
33
33
|
version: 0.10.5
|
34
34
|
type: :runtime
|
35
35
|
version_requirements: *id001
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: guard-livereload
|
38
|
+
prerelease: false
|
39
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
41
|
+
requirements:
|
42
|
+
- - ">="
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
hash: 15
|
45
|
+
segments:
|
46
|
+
- 0
|
47
|
+
- 4
|
48
|
+
- 0
|
49
|
+
version: 0.4.0
|
50
|
+
type: :runtime
|
51
|
+
version_requirements: *id002
|
52
|
+
- !ruby/object:Gem::Dependency
|
53
|
+
name: guard-compass
|
54
|
+
prerelease: false
|
55
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
56
|
+
none: false
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
hash: 19
|
61
|
+
segments:
|
62
|
+
- 0
|
63
|
+
- 0
|
64
|
+
- 6
|
65
|
+
version: 0.0.6
|
66
|
+
type: :runtime
|
67
|
+
version_requirements: *id003
|
68
|
+
- !ruby/object:Gem::Dependency
|
69
|
+
name: guard-haml
|
70
|
+
prerelease: false
|
71
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
72
|
+
none: false
|
73
|
+
requirements:
|
74
|
+
- - ">="
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
hash: 23
|
77
|
+
segments:
|
78
|
+
- 0
|
79
|
+
- 3
|
80
|
+
- 2
|
81
|
+
version: 0.3.2
|
82
|
+
type: :runtime
|
83
|
+
version_requirements: *id004
|
84
|
+
- !ruby/object:Gem::Dependency
|
85
|
+
name: nokogiri
|
86
|
+
prerelease: false
|
87
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
88
|
+
none: false
|
89
|
+
requirements:
|
90
|
+
- - ">="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
hash: 3
|
93
|
+
segments:
|
94
|
+
- 1
|
95
|
+
- 5
|
96
|
+
- 0
|
97
|
+
version: 1.5.0
|
98
|
+
type: :runtime
|
99
|
+
version_requirements: *id005
|
36
100
|
description: the YAML Framework ( http://www.yaml.de/ ) as compass gem. https://github.com/firemind/cyaml
|
37
101
|
email: mike@citrin.ch
|
38
102
|
executables: []
|
@@ -69,9 +133,11 @@ files:
|
|
69
133
|
- templates/project/yaml/core/yaml-focusfix.js
|
70
134
|
- templates/project/yaml/add-ons/syncheight/jquery.syncheight.js
|
71
135
|
- templates/project/yaml/add-ons/accessible-tabs/jquery.tabs.js
|
136
|
+
- templates/project/Guardfile
|
72
137
|
- templates/project/index.html.haml
|
73
138
|
- templates/project/default_includes.scss
|
74
139
|
- templates/project/application.html.haml
|
140
|
+
- templates/project/custom.scss
|
75
141
|
- templates/project/config.scss
|
76
142
|
- templates/project/add-ons/microformats/xfn/xfn-sweetheart.png
|
77
143
|
- templates/project/add-ons/microformats/xfn/xfn-sweetheart-met.png
|
@@ -125,6 +191,7 @@ files:
|
|
125
191
|
- templates/project/add-ons/microformats/icon-hcalendar.png
|
126
192
|
- templates/project/add-ons/microformats/icon-hcard.png
|
127
193
|
- templates/project/add-ons/microformats/icon-xfn.png
|
194
|
+
- templates/project/Gemfile
|
128
195
|
- templates/project/basemod.scss
|
129
196
|
- templates/project/manifest.rb
|
130
197
|
homepage: http://www.citrin.ch/
|