funfx 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +8 -2
- data/lib/funfx/version.rb +1 -1
- data/rake_tasks/hoe_ext.rake +3 -3
- metadata +1 -1
data/History.txt
CHANGED
@@ -1,4 +1,10 @@
|
|
1
|
-
== 0.2.
|
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
|
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
|
data/lib/funfx/version.rb
CHANGED
data/rake_tasks/hoe_ext.rake
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
task :release do
|
2
|
-
|
3
|
-
puts "Uploading
|
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__) +
|
6
|
+
rf.add_file("funfx", "funfx", FunFX::VERSION::STRING, File.dirname(__FILE__) + "/../../flex/bin/#{swc}")
|
7
7
|
|
8
8
|
puts %{
|
9
9
|
****************************************
|