Sha256: 089fb0da0c478822e5500377521e3a12cf35adad45572c89d6baf84f5371a20c
Contents?: true
Size: 1.13 KB
Versions: 6
Compression:
Stored size: 1.13 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "markdownizer/version" Gem::Specification.new do |s| s.name = "markdownizer" s.version = Markdownizer::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Josep M. Bach", "Josep Jaume Rey", "Oriol Gual"] s.email = ["info@codegram.com"] s.homepage = "http://github.com/codegram/markdownizer" s.summary = %q{Render any text as markdown, with code highlighting and all!} s.description = %q{Render any text as markdown, with code highlighting and all!} s.rubyforge_project = "markdownizer" s.add_runtime_dependency 'activerecord', '>= 3.0.3' s.add_runtime_dependency 'rdiscount' s.add_runtime_dependency 'coderay' s.add_development_dependency 'rocco' s.add_development_dependency 'git' s.add_development_dependency 'pygments' s.add_development_dependency 'rspec', '~> 2.4.0' s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] end
Version data entries
6 entries across 6 versions & 1 rubygems