From a6948ec413337e71ba9beb0cf8d307275af78a95 Mon Sep 17 00:00:00 2001 From: Antoine Proulx Date: Wed, 7 Mar 2012 09:55:07 -0500 Subject: [PATCH] Ability to add the date and the version number from the command line. --- README.md | 2 +- Thorfile | 26 +++++++++++++++----------- dist/kinetic.js | 1 + license.js | 6 +++--- 4 files changed, 20 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 4c3138dc..06500588 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Check out the official [KineticJS Tutorials](http://www.html5canvastutorials.com # Building the library To build the library, you need to have Ruby and Rubygems installed. After that, install the dependencies by running `bundle install`. -To build a development version of the library, run `thor build:dev`. To build a minify version of the library, run `thor build:prod`. +To build a development version of the library, run `thor build:dev VERSION`, where VERSION is in the format MAJOR.MINOR.PATCH. To build a minify version of the library, run `thor build:prod VERSION`. If you want to add a release date other than the current day, use `-d="DATE"` (e.g. `-d="Mar 07 2012`). # Adding a new file in the src directory If you add a file in the src directory, add into the array in the Thorfile. diff --git a/Thorfile b/Thorfile index 36944721..daa60449 100644 --- a/Thorfile +++ b/Thorfile @@ -9,21 +9,23 @@ class Build < Thor ] desc "dev", "Concatenate all the js files into /dist/kinetic.js." - def dev + method_option :date, aliases: "-d", required: false, type: :string, desc: "The release date" + def dev(version) puts ":: Building the file /dist/kinetic.js..." File.open("dist/kinetic.js", "w") do |file| - file.puts concatenate() + file.puts concatenate(version, options[:date]) end puts " -> Done!" end desc "prod", "Concatenate all the js files in into /dist/kinetic.min.js and minify it." - def prod + method_option :date, aliases: "-d", required: false, type: :string, desc: "The release date" + def prod(version) puts ":: Building the file /dist/kinetic.min.js..." require 'json/pure' require 'uglifier' File.open("dist/kinetic.min.js", "w") do |file| - uglify = Uglifier.compile(concatenate()) + uglify = Uglifier.compile(concatenate(version, options[:date])) uglify.sub!(/\*\/ .+ \*\//xm, "*/") file.puts uglify end @@ -31,21 +33,23 @@ class Build < Thor puts " -> Done!" end - desc "all", "Build the development and the production files." - def all - invoke :dev - invoke :prod - end - private - def concatenate + def concatenate(version, date) + date ||= Time.now.strftime("%b %d %Y") content = "" FILES.each do |file| content << IO.read(File.expand_path(file)) << "\n" end + # Add the version number + content.sub!("@version", version) + + # Add the date + content.sub!("@date", date) + return content end + end diff --git a/dist/kinetic.js b/dist/kinetic.js index 7c417362..6196cf1f 100644 --- a/dist/kinetic.js +++ b/dist/kinetic.js @@ -25,6 +25,7 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ + /////////////////////////////////////////////////////////////////////// // Global Object /////////////////////////////////////////////////////////////////////// diff --git a/license.js b/license.js index 4e5f8754..31ea6815 100644 --- a/license.js +++ b/license.js @@ -1,9 +1,9 @@ /** - * KineticJS JavaScript Library v3.8.3 + * KineticJS JavaScript Library v@version * http://www.kineticjs.com/ * Copyright 2012, Eric Rowell * Licensed under the MIT or GPL Version 2 licenses. - * Date: Mar 03 2012 + * Date: @date * * Copyright (C) 2011 - 2012 by Eric Rowell * @@ -24,4 +24,4 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. - */ \ No newline at end of file + */