Skip to content

Commit

Permalink
release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mislav committed Jul 30, 2009
1 parent 49b16ac commit f811e77
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@ desc "generates .gemspec file"
task :gemspec do
spec = Gem::Specification.new do |gem|
gem.name = "remark"
gem.version = '0.3.0'

gem.summary = "HTML to Markdown converter"
gem.email = "mislav.marohnic@gmail.com"
gem.homepage = "http://github.com/mislav/remark"
gem.authors = ["Mislav Marohnić"]
gem.has_rdoc = false

gem.version = '0.2.1'
gem.files = FileList['Rakefile', '{bin,lib,rails,spec}/**/*', 'README*', 'LICENSE*'] & `git ls-files`.split("\n")
gem.executables = Dir['bin/*'].map { |f| File.basename(f) }
end
Expand Down
8 changes: 4 additions & 4 deletions remark.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@

Gem::Specification.new do |s|
s.name = %q{remark}
s.version = "0.2.1"
s.version = "0.3.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Mislav Marohni\304\207"]
s.date = %q{2009-06-24}
s.date = %q{2009-07-30}
s.default_executable = %q{remark}
s.email = %q{mislav.marohnic@gmail.com}
s.executables = ["remark"]
s.files = ["Rakefile", "bin/remark", "lib/remark.rb", "spec/remark_spec.rb", "spec/sample.html", "README.markdown"]
s.files = ["Rakefile", "bin/remark", "lib/remark/core_ext.rb", "lib/remark/hpricot_ext.rb", "lib/remark.rb", "spec/hpricot_ext_spec.rb", "spec/remark_spec.rb", "spec/sample.html", "README.markdown"]
s.homepage = %q{http://github.com/mislav/remark}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.3}
s.rubygems_version = %q{1.3.5}
s.summary = %q{HTML to Markdown converter}

if s.respond_to? :specification_version then
Expand Down

0 comments on commit f811e77

Please sign in to comment.