Merge branch 'master' of github.com:github/gollum

This commit is contained in:
rick
2011-04-25 20:47:46 -04:00
4 changed files with 3 additions and 9 deletions
+3 -2
View File
@@ -5,7 +5,7 @@ Gem::Specification.new do |s|
s.name = 'gollum' s.name = 'gollum'
s.version = '1.2.0' s.version = '1.2.0'
s.date = '2011-03-31' s.date = '2011-04-15'
s.rubyforge_project = 'gollum' s.rubyforge_project = 'gollum'
s.summary = "A simple, Git-powered wiki." s.summary = "A simple, Git-powered wiki."
@@ -697,6 +697,7 @@ Gem::Specification.new do |s|
lib/gollum/frontend/templates/history.mustache lib/gollum/frontend/templates/history.mustache
lib/gollum/frontend/templates/layout.mustache lib/gollum/frontend/templates/layout.mustache
lib/gollum/frontend/templates/page.mustache lib/gollum/frontend/templates/page.mustache
lib/gollum/frontend/templates/pages.mustache
lib/gollum/frontend/templates/search.mustache lib/gollum/frontend/templates/search.mustache
lib/gollum/frontend/templates/searchbar.mustache lib/gollum/frontend/templates/searchbar.mustache
lib/gollum/frontend/views/compare.rb lib/gollum/frontend/views/compare.rb
@@ -707,12 +708,12 @@ Gem::Specification.new do |s|
lib/gollum/frontend/views/history.rb lib/gollum/frontend/views/history.rb
lib/gollum/frontend/views/layout.rb lib/gollum/frontend/views/layout.rb
lib/gollum/frontend/views/page.rb lib/gollum/frontend/views/page.rb
lib/gollum/frontend/views/pages.rb
lib/gollum/frontend/views/search.rb lib/gollum/frontend/views/search.rb
lib/gollum/git_access.rb lib/gollum/git_access.rb
lib/gollum/markup.rb lib/gollum/markup.rb
lib/gollum/page.rb lib/gollum/page.rb
lib/gollum/pagination.rb lib/gollum/pagination.rb
lib/gollum/ruby1.8.rb
lib/gollum/sanitization.rb lib/gollum/sanitization.rb
lib/gollum/wiki.rb lib/gollum/wiki.rb
templates/formatting.html templates/formatting.html
-3
View File
@@ -7,9 +7,6 @@ require 'grit'
require 'github/markup' require 'github/markup'
require 'sanitize' require 'sanitize'
# ruby 1.8 compatibility
require 'gollum/ruby1.8'
# internal # internal
require 'gollum/git_access' require 'gollum/git_access'
require 'gollum/committer' require 'gollum/committer'
@@ -42,7 +42,6 @@ a:hover, a:visited {
line-height: normal; line-height: normal;
margin: 0; margin: 0;
padding: 0.08em 0 0 0; padding: 0.08em 0 0 0;
width: 50%;
} }
#head ul.actions { #head ul.actions {
-3
View File
@@ -1,3 +0,0 @@
class String
alias :lines :to_a if defined?(RUBY_VERSION) && RUBY_VERSION < '1.9'
end