forked from gollum/gollum-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move gollum back end to gollum-lib gollum/gollum#647
- Loading branch information
Jamie Oliver
committed
Mar 15, 2013
1 parent
02dfb0a
commit c33dcdf
Showing
513 changed files
with
104 additions
and
135,122 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
Gem::Specification.new do |s| | ||
s.specification_version = 2 if s.respond_to? :specification_version= | ||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= | ||
s.rubygems_version = '0.0.1' | ||
s.required_ruby_version = ">= 1.8.7" | ||
|
||
s.name = 'gollum-lib' | ||
s.version = '0.0.1' | ||
s.date = '2013-03-13' | ||
s.rubyforge_project = 'gollum-lib' | ||
|
||
s.summary = "A simple, Git-powered wiki." | ||
s.description = "A simple, Git-powered wiki with a sweet API and local frontend." | ||
|
||
s.authors = ["Tom Preston-Werner", "Rick Olson"] | ||
s.email = '[email protected]' | ||
s.homepage = 'http://github.com/gollum/gollum-lib' | ||
|
||
s.require_paths = %w[lib] | ||
|
||
s.rdoc_options = ["--charset=UTF-8"] | ||
s.extra_rdoc_files = %w[README.md LICENSE] | ||
|
||
s.add_dependency('grit', '~> 2.5.0') | ||
s.add_dependency('github-markup', ['>= 0.7.5', '< 1.0.0']) | ||
s.add_dependency('github-markdown', '~> 0.5.3') | ||
s.add_dependency('pygments.rb', '~> 0.4.2') | ||
s.add_dependency('sanitize', '~> 2.0.3') | ||
s.add_dependency('nokogiri', '~> 1.5.6') | ||
s.add_dependency('stringex', '~> 1.5.1') | ||
|
||
s.add_development_dependency('RedCloth', '~> 4.2.9') | ||
s.add_development_dependency('mocha', '~> 0.13.2') | ||
s.add_development_dependency('org-ruby', '~> 0.8.1') | ||
s.add_development_dependency('shoulda', '~> 3.3.2') | ||
s.add_development_dependency('wikicloth', '~> 0.8.0') | ||
s.add_development_dependency('rake', '~> 10.0.3') | ||
s.add_development_dependency('pry', '~> 0.9.12') | ||
# required by pry | ||
s.add_development_dependency('rb-readline', '~> 0.4.2') | ||
s.add_development_dependency('minitest-reporters', '>= 0.5.0') | ||
|
||
# = MANIFEST = | ||
s.files = %w[ | ||
Gemfile | ||
HISTORY.md | ||
LICENSE | ||
README.md | ||
Rakefile | ||
config.rb | ||
docs/sanitization.md | ||
gollum-lib.gemspec | ||
lib/gollum-lib.rb | ||
lib/gollum-lib/blob_entry.rb | ||
lib/gollum-lib/committer.rb | ||
lib/gollum-lib/file.rb | ||
lib/gollum-lib/file_view.rb | ||
lib/gollum-lib/git_access.rb | ||
lib/gollum-lib/gitcode.rb | ||
lib/gollum-lib/helpers.rb | ||
lib/gollum-lib/markup.rb | ||
lib/gollum-lib/markups.rb | ||
lib/gollum-lib/page.rb | ||
lib/gollum-lib/pagination.rb | ||
lib/gollum-lib/sanitization.rb | ||
lib/gollum-lib/web_sequence_diagram.rb | ||
lib/gollum-lib/wiki.rb | ||
licenses/licenses.txt | ||
] | ||
# = MANIFEST = | ||
|
||
s.test_files = s.files.select { |path| path =~ /^test\/test_.*\.rb/ } | ||
end |
Oops, something went wrong.