gitdocs 0.4.11 → 0.4.12
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/CHANGELOG +6 -0
- data/README.md +10 -0
- data/lib/gitdocs/public/css/tilt.css +1 -1
- data/lib/gitdocs/rendering.rb +1 -1
- data/lib/gitdocs/version.rb +1 -1
- data/lib/gitdocs/views/app.haml +1 -0
- metadata +1 -1
data/CHANGELOG
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
0.4.12 (1/05/2011)
|
|
2
|
+
|
|
3
|
+
* Fixes incorrect padding style on rendered code blocks (thanks chris kempson)
|
|
4
|
+
* Fixes encoding issues in markdown files
|
|
5
|
+
* Tag documents as utf-8 in meta for web frontend (thanks chris kempson)
|
|
6
|
+
|
|
1
7
|
0.4.11 (1/04/2011)
|
|
2
8
|
|
|
3
9
|
* Add line-height to code blocks in file displays
|
data/README.md
CHANGED
|
@@ -164,6 +164,16 @@ Gitdocs is a young project but we have many plans for it including:
|
|
|
164
164
|
- Tagging and organizing of files within the web front-end
|
|
165
165
|
- Better access to the versions for a particular file within the web front-end
|
|
166
166
|
|
|
167
|
+
## Contributors
|
|
168
|
+
|
|
169
|
+
Gitdocs was created at [Miso](http://engineering.gomiso.com) by [Joshua Hull](https://github.com/joshbuddy) and [Nathan Esquenazi](https://github.com/nesquena).
|
|
170
|
+
We also have had several contributors:
|
|
171
|
+
|
|
172
|
+
* [Chris Kempson](https://github.com/ChrisKempson) - Encoding issues
|
|
173
|
+
* [Evan Tatarka](https://github.com/evant) - Browser fixes
|
|
174
|
+
|
|
175
|
+
Gitdocs is still a young project with a lot of opportunity for contributions. Patches welcome!
|
|
176
|
+
|
|
167
177
|
## Prior Projects
|
|
168
178
|
|
|
169
179
|
Gitdocs is a fresh project that we originally spiked on in a few days time. Our primary goals are to keep the code as simple as possible,
|
data/lib/gitdocs/rendering.rb
CHANGED
|
@@ -17,7 +17,7 @@ require 'redcarpet'
|
|
|
17
17
|
# Markdown.
|
|
18
18
|
class RedcarpetCompat
|
|
19
19
|
def to_html(*_dummy)
|
|
20
|
-
@text = @text.
|
|
20
|
+
@text = @text.force_encoding('utf-8') if @text.respond_to?(:force_encoding)
|
|
21
21
|
@markdown.render(@text)
|
|
22
22
|
end
|
|
23
23
|
end
|
data/lib/gitdocs/version.rb
CHANGED
data/lib/gitdocs/views/app.haml
CHANGED