semilla 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.textile ADDED
@@ -0,0 +1,58 @@
1
+
2
+ h1. Semilla Gem
3
+
4
+ This gem adds some rake tasks for testing ActionScript applications with the FlexUnit4 testing framework.
5
+
6
+
7
+ h2. Installation
8
+
9
+ To install with rake:
10
+
11
+ <pre><code>$ rake</code></pre>
12
+
13
+ To install with gem:
14
+
15
+ <pre><code>$ gem build semilla.gemspec</code></pre>
16
+ <pre><code>$ gem install semilla-VERSION.gem</code></pre>
17
+
18
+
19
+ h2. Usage
20
+
21
+ Generate a TestRunner
22
+
23
+ <pre><code>
24
+ Semilla::test_runner "outputfile.as", FileList["test-src/**/*Test.as"], 1026
25
+
26
+ </code></pre>
27
+
28
+
29
+ Run the test and obtain a report.
30
+ <pre><code>
31
+
32
+ Semilla::flex_unit :taskname => [dependencies]] do |t|
33
+ t.serverPort = 1026
34
+ t.swf = "app.swf"
35
+ t.reportpath = "reports"
36
+ t.timeout = 10
37
+ end
38
+
39
+ </code></pre>
40
+
41
+ h2. MIT License
42
+
43
+ <pre>
44
+ Copyright (c)2011-2012 Victor G. Rosales
45
+
46
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
47
+ documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
48
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit
49
+ persons to whom the Software is furnished to do so, subject to the following conditions:
50
+
51
+ The above copyright notice and this permission notice shall be included in all copies or substantial
52
+ portions of the Software.
53
+
54
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
55
+ THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
56
+ OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
57
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
58
+ </pre>
@@ -1,3 +1,3 @@
1
1
  module Semilla
2
- VERSION = '0.0.2'
2
+ VERSION = '0.0.3'
3
3
  end
data/semilla.gemspec CHANGED
@@ -1,15 +1,15 @@
1
1
 
2
2
  # -*- encoding: utf-8 -*-
3
- #$:.push('lib')
3
+ $:.push('lib')
4
4
  require "semilla/version"
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "semilla"
8
- s.version = Semilla::VERSION.dup
9
- s.date = "2011-12-26"
8
+ s.version = Semilla::VERSION
9
+ s.date = "2011-12-28"
10
10
  s.summary = "Rake tasks for flexunit4"
11
11
  s.email = "support@semilla.com"
12
- s.homepage = "http://todo.project.com/"
12
+ s.homepage = "https://github.com/Darkoleptiko/semilla"
13
13
  s.authors = ['Victor G. Rosales']
14
14
 
15
15
  s.description = <<-EOF
@@ -21,7 +21,7 @@ EOF
21
21
  # Examples:
22
22
  # [:runtime, "rack", "~> 1.1"],
23
23
  # [:development, "rspec", "~> 2.1"],
24
- [:sprout_flashsdk, "flashsdk", "~> 1.0"]
24
+ [:sprout_flashsdk, "flashsdk", "~> 1.0.29.pre"]
25
25
  ]
26
26
 
27
27
  s.files = Dir['**/*']
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: semilla
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,19 +9,19 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-12-26 00:00:00.000000000Z
12
+ date: 2011-12-28 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: flashsdk
16
- requirement: &21744840 !ruby/object:Gem::Requirement
16
+ requirement: &21882276 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
20
20
  - !ruby/object:Gem::Version
21
- version: '1.0'
21
+ version: 1.0.29.pre
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *21744840
24
+ version_requirements: *21882276
25
25
  description: ! 'Rake tasks for executing flex unit 4 tests.
26
26
 
27
27
  It should be used in addition to the sprout gem.
@@ -39,8 +39,9 @@ files:
39
39
  - lib/semilla/version.rb
40
40
  - lib/semilla.rb
41
41
  - rakefile.rb
42
+ - README.textile
42
43
  - semilla.gemspec
43
- homepage: http://todo.project.com/
44
+ homepage: https://github.com/Darkoleptiko/semilla
44
45
  licenses: []
45
46
  post_install_message:
46
47
  rdoc_options: []