Skip to content

Commit 123d147

Browse files
committed
Initial commit
0 parents  commit 123d147

21 files changed

+1881
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/_site
2+
/.sass-cache

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
www.symfony.se

Gemfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
source 'http://rubygems.org'
2+
3+
gem 'jekyll', '=0.12.0'
4+
gem 'liquid', '=2.4.1'
5+
gem 'redcarpet', '=2.1.1'
6+
gem 'maruku', '=0.6.0'
7+
gem 'rdiscount', '=1.6.8'
8+
gem 'RedCloth', '=4.2.9'
9+
10+
group :development do
11+
gem 'guard'
12+
gem 'guard-jekyll'
13+
gem 'guard-sass'
14+
gem 'guard-livereload'
15+
end

Gemfile.lock

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
GEM
2+
remote: http://rubygems.org/
3+
specs:
4+
RedCloth (4.2.9)
5+
classifier (1.3.3)
6+
fast-stemmer (>= 1.0.0)
7+
coderay (1.0.9)
8+
directory_watcher (1.4.1)
9+
em-websocket (0.5.0)
10+
eventmachine (>= 0.12.9)
11+
http_parser.rb (~> 0.5.3)
12+
eventmachine (1.0.3)
13+
fast-stemmer (1.0.2)
14+
ffi (1.7.0)
15+
formatador (0.2.4)
16+
guard (1.8.0)
17+
formatador (>= 0.2.4)
18+
listen (>= 1.0.0)
19+
lumberjack (>= 1.0.2)
20+
pry (>= 0.9.10)
21+
thor (>= 0.14.6)
22+
guard-jekyll (0.2.1)
23+
guard (>= 1.1.0)
24+
jekyll
25+
guard-livereload (1.3.0)
26+
em-websocket (>= 0.2.0)
27+
guard (>= 1.5.0)
28+
multi_json (~> 1.0)
29+
guard-sass (1.0.5)
30+
guard (>= 1.1.0)
31+
sass (>= 3.1)
32+
http_parser.rb (0.5.3)
33+
jekyll (0.12.0)
34+
classifier (~> 1.3)
35+
directory_watcher (~> 1.1)
36+
kramdown (~> 0.13.4)
37+
liquid (~> 2.3)
38+
maruku (~> 0.5)
39+
pygments.rb (~> 0.3.2)
40+
kramdown (0.13.7)
41+
liquid (2.4.1)
42+
listen (1.0.2)
43+
rb-fsevent (>= 0.9.3)
44+
rb-inotify (>= 0.9)
45+
rb-kqueue (>= 0.2)
46+
lumberjack (1.0.3)
47+
maruku (0.6.0)
48+
syntax (>= 1.0.0)
49+
method_source (0.8.1)
50+
multi_json (1.7.2)
51+
posix-spawn (0.3.6)
52+
pry (0.9.12.1)
53+
coderay (~> 1.0.5)
54+
method_source (~> 0.8)
55+
slop (~> 3.4)
56+
pygments.rb (0.3.7)
57+
posix-spawn (~> 0.3.6)
58+
yajl-ruby (~> 1.1.0)
59+
rb-fsevent (0.9.3)
60+
rb-inotify (0.9.0)
61+
ffi (>= 0.5.0)
62+
rb-kqueue (0.2.0)
63+
ffi (>= 0.5.0)
64+
rdiscount (1.6.8)
65+
redcarpet (2.1.1)
66+
sass (3.2.8)
67+
slop (3.4.4)
68+
syntax (1.0.0)
69+
thor (0.18.1)
70+
yajl-ruby (1.1.0)
71+
72+
PLATFORMS
73+
ruby
74+
75+
DEPENDENCIES
76+
RedCloth (= 4.2.9)
77+
guard
78+
guard-jekyll
79+
guard-livereload
80+
guard-sass
81+
jekyll (= 0.12.0)
82+
liquid (= 2.4.1)
83+
maruku (= 0.6.0)
84+
rdiscount (= 1.6.8)
85+
redcarpet (= 2.1.1)

Guardfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
guard 'jekyll' do
2+
watch %r{^(?!_site/|_includes/sass)}
3+
end
4+
5+
guard 'sass', :input => '_includes/sass', :output => '_includes/css'
6+
7+
guard 'livereload' do
8+
watch '_site/index.html'
9+
end
10+
11+
# vim:ft=ruby

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Webbplats för [Symfony Sverige](http://www.symfony.se/).

_config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
markdown: rdiscount
2+
exclude: [README.md, CNAME, Gemfile, Gemfile.lock, Guardfile]
3+
permalink: /:categories/:title/
4+
assets_version: 1
5+
title: Symfony Sverige
6+
domain: www.symfony.se

0 commit comments

Comments
 (0)