Skip to content

Commit 22dd2f2

Browse files
committed
Make mondough/slate private
0 parents  commit 22dd2f2

39 files changed

+6350
-0
lines changed

.gitignore

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
*.gem
2+
*.rbc
3+
.bundle
4+
.config
5+
coverage
6+
InstalledFiles
7+
lib/bundler/man
8+
pkg
9+
rdoc
10+
spec/reports
11+
test/tmp
12+
test/version_tmp
13+
tmp
14+
*.DS_STORE
15+
build/
16+
.cache
17+
18+
# YARD artifacts
19+
.yardoc
20+
_yardoc
21+
doc/
22+
.idea/

.travis.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
sudo: false
2+
3+
language: ruby
4+
5+
rvm:
6+
- 1.9.3
7+
- 2.0.0
8+
9+
cache: bundler

CHANGELOG.md

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Changelog
2+
3+
## Version 1.2
4+
5+
*June 20, 2015*
6+
7+
**Fixes:**
8+
9+
- Remove crash on invalid languages
10+
- Update Tocify to scroll to the highlighted header in the Table of Contents
11+
- Fix variable leak and update search algorithms
12+
- Update Python examples to be valid Python
13+
- Update gems
14+
- More misc. bugfixes of Javascript errors
15+
- Add Dockerfile
16+
- Remove unused gems
17+
- Optimize images, fonts, and generated asset files
18+
- Add chinese font support
19+
- Remove RedCarpet header ID patch
20+
- Update language tabs to not disturb existing query strings
21+
22+
## Version 1.1
23+
24+
*July 27th, 2014*
25+
26+
**Fixes:**
27+
28+
- Finally, a fix for the redcarpet upgrade bug
29+
30+
## Version 1.0
31+
32+
*July 2, 2014*
33+
34+
[View Issues](https://github.com/tripit/slate/issues?milestone=1&state=closed)
35+
36+
**Features:**
37+
38+
- Responsive designs for phones and tablets
39+
- Started tagging versions
40+
41+
**Fixes:**
42+
43+
- Fixed 'unrecognized expression' error
44+
- Fixed #undefined hash bug
45+
- Fixed bug where the current language tab would be unselected
46+
- Fixed bug where tocify wouldn't highlight the current section while searching
47+
- Fixed bug where ids of header tags would have special characters that caused problems
48+
- Updated layout so that pages with disabled search wouldn't load search.js
49+
- Cleaned up Javascript

CONTRIBUTING.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Contributing to Slate
2+
3+
Thanks for contributing to Slate! A couple of quick guidelines for submitting PRs:
4+
5+
- Please point your pull requests at the `dev` branch, and keep your commit messages clear and informative.
6+
- Please make sure your contributions work in the most recent version of Chrome, Firefox, and IE.
7+
- If you're implementing a new feature, even if it's relatively small, it's nice to open an issue before you start so that others know what you're working on and can help make sure you're on the right track.
8+
9+
Thanks again! Happy coding.

Dockerfile

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
FROM ubuntu:trusty
2+
3+
RUN apt-get update
4+
RUN apt-get install -yq ruby ruby-dev build-essential git
5+
RUN gem install --no-ri --no-rdoc bundler
6+
ADD Gemfile /app/Gemfile
7+
ADD Gemfile.lock /app/Gemfile.lock
8+
RUN cd /app; bundle install
9+
ADD . /app
10+
EXPOSE 4567
11+
WORKDIR /app
12+
CMD ["bundle", "exec", "middleman", "server"]

Gemfile

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
source 'https://rubygems.org'
2+
3+
# Middleman
4+
gem 'middleman', '~>3.3.10'
5+
gem 'middleman-gh-pages', '~> 0.0.3'
6+
gem 'middleman-syntax', '~> 2.0.0'
7+
gem 'middleman-autoprefixer', '~> 2.4.4'
8+
gem 'rouge', '~> 1.9.0'
9+
gem 'redcarpet', '~> 3.3.2'
10+
11+
gem 'rake', '~> 10.4.2'
12+
gem 'therubyracer', '~> 0.12.1', platforms: :ruby

Gemfile.lock

+140
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
activesupport (4.1.11)
5+
i18n (~> 0.6, >= 0.6.9)
6+
json (~> 1.7, >= 1.7.7)
7+
minitest (~> 5.1)
8+
thread_safe (~> 0.1)
9+
tzinfo (~> 1.1)
10+
autoprefixer-rails (5.2.0.1)
11+
execjs
12+
json
13+
celluloid (0.16.0)
14+
timers (~> 4.0.0)
15+
chunky_png (1.3.4)
16+
coffee-script (2.4.1)
17+
coffee-script-source
18+
execjs
19+
coffee-script-source (1.9.1.1)
20+
compass (1.0.3)
21+
chunky_png (~> 1.2)
22+
compass-core (~> 1.0.2)
23+
compass-import-once (~> 1.0.5)
24+
rb-fsevent (>= 0.9.3)
25+
rb-inotify (>= 0.9)
26+
sass (>= 3.3.13, < 3.5)
27+
compass-core (1.0.3)
28+
multi_json (~> 1.0)
29+
sass (>= 3.3.0, < 3.5)
30+
compass-import-once (1.0.5)
31+
sass (>= 3.2, < 3.5)
32+
erubis (2.7.0)
33+
execjs (2.5.2)
34+
ffi (1.9.8)
35+
haml (4.0.6)
36+
tilt
37+
hike (1.2.3)
38+
hitimes (1.2.2)
39+
hooks (0.4.0)
40+
uber (~> 0.0.4)
41+
i18n (0.7.0)
42+
json (1.8.3)
43+
kramdown (1.7.0)
44+
libv8 (3.16.14.7)
45+
listen (2.10.1)
46+
celluloid (~> 0.16.0)
47+
rb-fsevent (>= 0.9.3)
48+
rb-inotify (>= 0.9)
49+
middleman (3.3.12)
50+
coffee-script (~> 2.2)
51+
compass (>= 1.0.0, < 2.0.0)
52+
compass-import-once (= 1.0.5)
53+
execjs (~> 2.0)
54+
haml (>= 4.0.5)
55+
kramdown (~> 1.2)
56+
middleman-core (= 3.3.12)
57+
middleman-sprockets (>= 3.1.2)
58+
sass (>= 3.4.0, < 4.0)
59+
uglifier (~> 2.5)
60+
middleman-autoprefixer (2.4.4)
61+
autoprefixer-rails (~> 5.2.0)
62+
middleman-core (>= 3.3.3)
63+
middleman-core (3.3.12)
64+
activesupport (~> 4.1.0)
65+
bundler (~> 1.1)
66+
erubis
67+
hooks (~> 0.3)
68+
i18n (~> 0.7.0)
69+
listen (>= 2.7.9, < 3.0)
70+
padrino-helpers (~> 0.12.3)
71+
rack (>= 1.4.5, < 2.0)
72+
rack-test (~> 0.6.2)
73+
thor (>= 0.15.2, < 2.0)
74+
tilt (~> 1.4.1, < 2.0)
75+
middleman-gh-pages (0.0.3)
76+
rake (> 0.9.3)
77+
middleman-sprockets (3.4.2)
78+
middleman-core (>= 3.3)
79+
sprockets (~> 2.12.1)
80+
sprockets-helpers (~> 1.1.0)
81+
sprockets-sass (~> 1.3.0)
82+
middleman-syntax (2.0.0)
83+
middleman-core (~> 3.2)
84+
rouge (~> 1.0)
85+
minitest (5.7.0)
86+
multi_json (1.11.1)
87+
padrino-helpers (0.12.5)
88+
i18n (~> 0.6, >= 0.6.7)
89+
padrino-support (= 0.12.5)
90+
tilt (~> 1.4.1)
91+
padrino-support (0.12.5)
92+
activesupport (>= 3.1)
93+
rack (1.6.4)
94+
rack-test (0.6.3)
95+
rack (>= 1.0)
96+
rake (10.4.2)
97+
rb-fsevent (0.9.5)
98+
rb-inotify (0.9.5)
99+
ffi (>= 0.5.0)
100+
redcarpet (3.3.2)
101+
ref (1.0.5)
102+
rouge (1.9.0)
103+
sass (3.4.14)
104+
sprockets (2.12.3)
105+
hike (~> 1.2)
106+
multi_json (~> 1.0)
107+
rack (~> 1.0)
108+
tilt (~> 1.1, != 1.3.0)
109+
sprockets-helpers (1.1.0)
110+
sprockets (~> 2.0)
111+
sprockets-sass (1.3.1)
112+
sprockets (~> 2.0)
113+
tilt (~> 1.1)
114+
therubyracer (0.12.2)
115+
libv8 (~> 3.16.14.0)
116+
ref
117+
thor (0.19.1)
118+
thread_safe (0.3.5)
119+
tilt (1.4.1)
120+
timers (4.0.1)
121+
hitimes
122+
tzinfo (1.2.2)
123+
thread_safe (~> 0.1)
124+
uber (0.0.13)
125+
uglifier (2.7.1)
126+
execjs (>= 0.3.0)
127+
json (>= 1.8.0)
128+
129+
PLATFORMS
130+
ruby
131+
132+
DEPENDENCIES
133+
middleman (~> 3.3.10)
134+
middleman-autoprefixer (~> 2.4.4)
135+
middleman-gh-pages (~> 0.0.3)
136+
middleman-syntax (~> 2.0.0)
137+
rake (~> 10.4.2)
138+
redcarpet (~> 3.3.2)
139+
rouge (~> 1.9.0)
140+
therubyracer (~> 0.12.1)

LICENSE

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Copyright 2008-2013 Concur Technologies, Inc.
2+
3+
Licensed under the Apache License, Version 2.0 (the "License"); you may
4+
not use this file except in compliance with the License. You may obtain
5+
a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11+
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12+
License for the specific language governing permissions and limitations
13+
under the License.

0 commit comments

Comments
 (0)