funfx 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,10 @@
1
- == 0.2.1 (In Git)
1
+ == 0.2.2 2008-12-15
2
+
3
+ === New features
4
+ * FunFX.swc renamed to funfx-0.2.2.swc to avoid upload conflicts at RubyForge (Aslak Hellesøy)
5
+ * Better automation of the release process (Aslak Hellesøy)
6
+
7
+ == 0.2.1 2008-12-15
2
8
 
3
9
  === New features
4
10
  * The FunFX.swc is no longer part of the gem, but must be downloaded from http://rubyforge.org/frs/?group_id=3898 (Aslak Hellesøy)
@@ -20,6 +26,6 @@ Complete rewrite of FunFX.
20
26
  * Full demo app included in the source tree
21
27
  * Moved to Git
22
28
  * Automated build using Rake
23
- * Proper packaging as a Ruby gem (NEEDS WORK TO INCLUDE THE FUNFX.SWC)
29
+ * Proper packaging as a Ruby gem
24
30
  * Automated testing using RSpec
25
31
  * The code is largely based on Adobe's AutoQuick example
@@ -2,7 +2,7 @@ module FunFX
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 2
5
- TINY = 1
5
+ TINY = 2
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
@@ -1,9 +1,9 @@
1
1
  task :release do
2
-
3
- puts "Uploading FunFX.swc....."
2
+ swc = "funfx-#{FunFX::VERSION::STRING}.swc"
3
+ puts "Uploading #{swc}"
4
4
  rf = RubyForge.new.configure
5
5
  rf.login
6
- rf.add_file("funfx", "funfx", FunFX::VERSION::STRING, File.dirname(__FILE__) + '/../../flex/FunFX.swc')
6
+ rf.add_file("funfx", "funfx", FunFX::VERSION::STRING, File.dirname(__FILE__) + "/../../flex/bin/#{swc}")
7
7
 
8
8
  puts %{
9
9
  ****************************************
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: funfx
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Nicolai Motzfeldt