funfx 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,11 @@
1
- == 0.2.0 yyyy-mm-dd
1
+ == 0.2.1 (In Git)
2
+
3
+ === New features
4
+ * 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)
5
+
6
+ === Bugfixes
7
+
8
+ == 0.2.0 2008-12-15
2
9
 
3
10
  Complete rewrite of FunFX.
4
11
 
@@ -5,7 +5,6 @@ README.txt
5
5
  Rakefile
6
6
  config/hoe.rb
7
7
  config/requirements.rb
8
- ext/FunFX.swc
9
8
  lib/funfx.rb
10
9
  lib/funfx/browser/firewatir.rb
11
10
  lib/funfx/browser/flex_app_lookup.rb
@@ -54,7 +54,6 @@ $hoe = Hoe.new(GEM_NAME, VERS) do |p|
54
54
  p.rubyforge_name = RUBYFORGE_PROJECT if RUBYFORGE_PROJECT
55
55
  p.test_globs = ["test/**/test_*.rb"]
56
56
  p.clean_globs |= ['**/.*.sw?', '*.gem', '.config', '**/.DS_Store', 'coverage'] #An array of file patterns to delete on clean.
57
- p.rdoc_pattern = /^(lib|bin)|txt$/ # We don't want the ext/FunFX.swc in RDoc!
58
57
 
59
58
  p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n")
60
59
  p.extra_deps = [ ['fastercsv', '>= 1.4.0'] ]
@@ -2,7 +2,7 @@ module FunFX
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 2
5
- TINY = 0
5
+ TINY = 1
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
@@ -1,11 +1,16 @@
1
1
  task :release do
2
+
3
+ puts "Uploading FunFX.swc....."
4
+ rf = RubyForge.new.configure
5
+ rf.login
6
+ rf.add_file("funfx", "funfx", FunFX::VERSION::STRING, File.dirname(__FILE__) + '/../../flex/FunFX.swc')
7
+
2
8
  puts %{
3
- ************************************
9
+ ****************************************
4
10
  Now it's time to make a tag in Git:
5
11
 
6
- tag -a "v#{FunFX::VERSION::STRING}" -m "Release #{FunFX::VERSION::STRING}"
12
+ git tag -a "v#{FunFX::VERSION::STRING}" -m "Release #{FunFX::VERSION::STRING}"
7
13
  git push --tags
8
- ************************************
14
+ ****************************************
9
15
  }
10
-
11
16
  end
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.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Nicolai Motzfeldt
@@ -54,7 +54,6 @@ files:
54
54
  - Rakefile
55
55
  - config/hoe.rb
56
56
  - config/requirements.rb
57
- - ext/FunFX.swc
58
57
  - lib/funfx.rb
59
58
  - lib/funfx/browser/firewatir.rb
60
59
  - lib/funfx/browser/flex_app_lookup.rb
@@ -142,7 +141,6 @@ rdoc_options:
142
141
  - README.txt
143
142
  require_paths:
144
143
  - lib
145
- - ext
146
144
  required_ruby_version: !ruby/object:Gem::Requirement
147
145
  requirements:
148
146
  - - ">="
Binary file