summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorFlorian Frank <flori@ping.de>2011-08-31 02:04:55 +0200
committerFlorian Frank <flori@ping.de>2011-08-31 02:22:41 +0200
commit3dab4c5a6a97fac03dacf19446b9ff2a6b397591 (patch)
tree9ddfb92c0c66aef0daaf40d57385e1e921c9a673 /Rakefile
parent0dd975a6ea54b63adc7af4d1fd40b8f9ab95cf46 (diff)
downloadjson-3dab4c5a6a97fac03dacf19446b9ff2a6b397591.tar.gz
Add some documentationv1.5.4
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index 9e15001..dedc09a 100644
--- a/Rakefile
+++ b/Rakefile
@@ -303,7 +303,9 @@ if defined?(RUBY_ENGINE) and RUBY_ENGINE == 'jruby'
task :create_jar => [ :create_parser_jar, :create_generator_jar ]
desc "Build all gems and archives for a new release of the jruby extension."
- task :release => [ :clean, :version, :jruby_gem ]
+ task :build => [ :clean, :version, :jruby_gem ]
+
+ task :release => :build
else
desc "Compiling extension"
task :compile => [ EXT_PARSER_DL, EXT_GENERATOR_DL ]
@@ -405,7 +407,9 @@ else
task :ragel_dot => [ :ragel_dot_png, :ragel_dot_ps ]
desc "Build all gems and archives for a new release of json and json_pure."
- task :release => [ :clean, :gemspec, :package ]
+ task :build => [ :clean, :gemspec, :package ]
+
+ task :release => :build
end
desc "Compile in the the source directory"