Skip to content

Commit

Permalink
Gemification
Browse files Browse the repository at this point in the history
  • Loading branch information
cespare committed May 11, 2011
1 parent 0a637d8 commit 518ef7c
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
*.gem
14 changes: 14 additions & 0 deletions Rakefile
@@ -0,0 +1,14 @@
desc "remove built gems"
task :clean do
sh "rm markdown_doctor-*" rescue true
end

desc "build gem"
task :build do
sh "gem build markdown_doctor.gemspec"
end

desc "install gem"
task :install => [:clean, :build] do
sh "gem install `ls markdown_doctor-*`"
end
File renamed without changes.
23 changes: 23 additions & 0 deletions markdown_doctor.gemspec
@@ -0,0 +1,23 @@
Gem::Specification.new do |s|
s.name = "markdown_doctor"
s.version = "0.1.0"

s.required_rubygems_version = Gem::Requirement.new(">=0") if s.respond_to? :required_rubygems_version=
s.specification_version = 2 if s.respond_to? :specification_version=

s.authors = "Daniel MacDougall", "Caleb Spare"
s.email = "dmacdougall@gmail.com", "cespare@gmail.com"

s.description = "An absurdly simple script for rendering markdown with github styles."
s.summary = "An absurdly simple script for rendering markdown with github styles."
s.homepage = "https://github.com/dmacdougall/markdown_doctor"
s.rubyforge_project = "markdown_doctor"

s.executables = %w(markdown_doctor)
s.files = %w(
README.md
markdown_doctor.gemspec
bin/markdown_doctor
)
s.add_dependency("redcarpet", ">=1.13.1")
end

0 comments on commit 518ef7c

Please sign in to comment.