Skip to content

Commit

Permalink
Finializing 0.3 release.
Browse files Browse the repository at this point in the history
Updated gemfile and documentation.
  • Loading branch information
nene committed Feb 8, 2011
1 parent 7806da3 commit fb032b7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ JsDuck was developed by [Rene Saarsoo](http://triin.net).
Changelog
---------

* Development version
* 0.3 - Performance improvements
* Significant peed improvements - most importantly utilizing
multiple CPU-s (if available) to speed things up. On my 4-core
box JsDuck is now even faster than ext-doc.
Expand Down
9 changes: 6 additions & 3 deletions jsduck.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,19 @@ Gem::Specification.new do |s|
s.required_rubygems_version = ">= 1.3.7"

s.name = 'jsduck'
s.version = '0.2'
s.date = '2011-01-10'
s.version = '0.3'
s.date = '2011-02-08'
s.summary = "Simple JavaScript Duckumentation generator"
s.description = "Better ext-doc like JavaScript documentation generator for ExtJS"
s.homepage = "https://github.com/nene/jsduck"
s.authors = ["Rene Saarsoo"]
s.email = "nene@triin.net"
s.rubyforge_project = s.name

s.files = `git ls-files`.split("\n").find_all {|file| file !~ /spec.rb$/ }
s.files = `git ls-files`.split("\n").find_all do |file|
file !~ /spec.rb$/ && file !~ /benchmark/
end

s.executables = ["jsduck"]

s.add_dependency 'rdiscount'
Expand Down

0 comments on commit fb032b7

Please sign in to comment.