Skip to content

Commit

Permalink
Version 0.2.1
Browse files Browse the repository at this point in the history
Added history file to track progress.
Bumped version and details about RDoc.
  • Loading branch information
luislavena committed Nov 30, 2008
1 parent 7909bdd commit b6df669
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 5 deletions.
14 changes: 14 additions & 0 deletions History.txt
@@ -0,0 +1,14 @@
=== 0.2.1 / 2008-11-30

* 2 Major Enhancements:

* Allow cross compilation (cross compile) using mingw32 on Linux or OSX.
* Allow packaging of gems for Windows on Linux or OSX.

* 1 Minor Enhancement:

* Made generation of extensions safe and target folders per-platform

* 1 Bug Fix:

* Ensure binaries for the specific platform are copied before packaging.
6 changes: 4 additions & 2 deletions rake-compiler.gemspec
@@ -1,15 +1,15 @@
--- !ruby/object:Gem::Specification
name: rake-compiler
version: !ruby/object:Gem::Version
version: 0.2.0
version: 0.2.1
platform: ruby
authors:
- Luis Lavena
autorequire:
bindir: bin
cert_chain: []

date: 2008-11-29 00:00:00 -02:00
date: 2008-11-30 00:00:00 -05:00
default_executable:
dependencies:
- !ruby/object:Gem::Dependency
Expand All @@ -34,6 +34,7 @@ extensions: []
extra_rdoc_files:
- README.rdoc
- LICENSE.txt
- History.txt
files:
- features/compile.feature
- features/cross-compile.feature
Expand All @@ -59,6 +60,7 @@ files:
- tasks/rubygems.rake
- Rakefile
- README.rdoc
- History.txt
- LICENSE.txt
- cucumber.yml
has_rdoc: true
Expand Down
2 changes: 1 addition & 1 deletion tasks/rdoc.rake
Expand Up @@ -5,5 +5,5 @@ Rake::RDocTask.new(:rdoc) do |rd|
rd.main = 'README.rdoc'
rd.rdoc_dir = 'doc/api'
rd.options << '--main' << 'README.rdoc' << '--title' << 'rake-compiler -- Documentation'
rd.rdoc_files.include %w(README.rdoc LICENSE.txt lib/**/*.rb)
rd.rdoc_files.include %w(README.rdoc LICENSE.txt History.txt lib/**/*.rb)
end
4 changes: 2 additions & 2 deletions tasks/rubygems.rake
Expand Up @@ -3,7 +3,7 @@ require 'rake/gempackagetask'
spec = Gem::Specification.new do |s|
# basic information
s.name = "rake-compiler"
s.version = "0.2.0"
s.version = "0.2.1"
s.platform = Gem::Platform::RUBY

# description and details
Expand Down Expand Up @@ -34,7 +34,7 @@ spec = Gem::Specification.new do |s|
s.has_rdoc = true
s.rdoc_options << '--main' << 'README.rdoc' << '--title' << 'rake-compiler -- Documentation'

s.extra_rdoc_files = %w(README.rdoc LICENSE.txt)
s.extra_rdoc_files = %w(README.rdoc LICENSE.txt History.txt)

# project information
s.homepage = 'http://github.com/luislavena/rake-compiler'
Expand Down

0 comments on commit b6df669

Please sign in to comment.