sprout-flex4sdk-tool 4.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/LICENSE.htm ADDED
@@ -0,0 +1,33 @@
1
+ Adobe Flex SDK License Agreement:
2
+
3
+ All files contained in this Adobe Flex SDK download are subject to and governed by the Adobe Flex SDK License Agreement specified here: Adobe Flex SDK License Agreement (http://adobe.com/go/flex3_sdk_eula), EXCEPT those files specifically identified below as "Mozilla Public License Files".
4
+
5
+ By downloading, modifying, distributing, using and/or accessing any files in this Adobe Flex SDK, you agree to the terms and conditions of the applicable end user license agreement.
6
+
7
+ In addition to the Adobe license terms, you also agree to be bound by the third-party terms specified here: Third Party Software Notices (http://adobe.com/go/thirdparty). Adobe recommends that you review these third-party terms.
8
+
9
+ Mozilla Public License Files:
10
+
11
+ The files located in the following directory locations of the Adobe Flex SDK are governed by the "Mozilla Public License Version 1.1" found below.
12
+
13
+ ant
14
+
15
+ asdoc
16
+
17
+ frameworks/javascript
18
+
19
+ frameworks/locale
20
+
21
+ frameworks/projects
22
+
23
+ frameworks/themes
24
+
25
+ The contents of such above files are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use these files except in compliance with the License. You may obtain a copy of the License here: http:/www.mozilla.org/MPL/
26
+
27
+ Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.
28
+
29
+ The Original Code consists of the files listed above.
30
+
31
+ The Initial Developer of the Original Code is Adobe Systems Incorporated.
32
+
33
+ By downloading, modifying, distributing, using and/or accessing any files in this Adobe Flex SDK, you agree to the terms and conditions of the applicable end user license agreement.
data/bin/adl ADDED
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # Created by Luke Bayes on 2007-4-29.
4
+ # Copyright (c) 2007. All rights reserved.
5
+
6
+ require 'rubygems'
7
+ require 'sprout'
8
+ require 'sprout/flex4sdk/version'
9
+
10
+ exe = Sprout::Sprout.get_executable('sprout-flex4sdk-tool', 'bin/adl', Sprout::Flex4SDK::VERSION::STRING)
11
+ exec("#{exe} #{ARGV.join(' ')}")
data/bin/adt ADDED
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # Created by Luke Bayes on 2007-4-29.
4
+ # Copyright (c) 2007. All rights reserved.
5
+
6
+ require 'rubygems'
7
+ require 'sprout'
8
+ require 'sprout/flex4sdk/version'
9
+
10
+ exe = Sprout::Sprout.get_executable('sprout-flex4sdk-tool', 'bin/adt', Sprout::Flex4SDK::VERSION::STRING)
11
+ exec("#{exe} #{ARGV.join(' ')}")
data/bin/asdoc ADDED
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # Created by Luke Bayes on 2007-4-29.
4
+ # Copyright (c) 2007. All rights reserved.
5
+
6
+ require 'rubygems'
7
+ require 'sprout'
8
+ require 'sprout/flex4sdk/version'
9
+
10
+ exe = Sprout::Sprout.get_executable('sprout-flex4sdk-tool', 'bin/asdoc', Sprout::Flex4SDK::VERSION::STRING)
11
+ exec("#{exe} #{ARGV.join(' ')}")
data/bin/compc ADDED
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # Created by Luke Bayes on 2008-5-15
4
+ # Copyright (c) 2007. All rights reserved.
5
+
6
+ require 'rubygems'
7
+ require 'sprout'
8
+ require 'sprout/flex4sdk/version'
9
+
10
+ exe = Sprout::Sprout.get_executable('sprout-flex4sdk-tool', 'bin/compc', Sprout::Flex4SDK::VERSION::STRING)
11
+ exec("#{exe} #{ARGV.join(' ')}")
data/bin/fdb ADDED
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # Created by Luke Bayes on 2008-5-15.
4
+ # Copyright (c) 2007. All rights reserved.
5
+
6
+ require 'rubygems'
7
+ require 'sprout'
8
+ require 'sprout/flex4sdk/version'
9
+
10
+ exe = Sprout::Sprout.get_executable('sprout-flex4sdk-tool', 'bin/fdb', Sprout::Flex4SDK::VERSION::STRING)
11
+ exec("#{exe} #{ARGV.join(' ')}")
data/bin/mxmlc ADDED
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # Created by Luke Bayes on 2008-5-15.
4
+ # Copyright (c) 2007. All rights reserved.
5
+
6
+ require 'rubygems'
7
+ require 'sprout'
8
+ require 'sprout/flex4sdk/version'
9
+
10
+ exe = Sprout::Sprout.get_executable('sprout-flex4sdk-tool', 'bin/mxmlc', Sprout::Flex4SDK::VERSION::STRING)
11
+ exec("#{exe} #{ARGV.join(' ')}")
@@ -0,0 +1,12 @@
1
+ module Sprout
2
+ class Flex4SDK #:nodoc:
3
+ module VERSION #:nodoc:
4
+ MAJOR = 4
5
+ MINOR = 0
6
+ TINY = 1
7
+
8
+ STRING = [MAJOR, MINOR, TINY].join('.')
9
+ MAJOR_MINOR = [MAJOR, MINOR].join('.')
10
+ end
11
+ end
12
+ end
data/rakefile.rb ADDED
@@ -0,0 +1,51 @@
1
+ require 'rake'
2
+ require 'rake/gempackagetask'
3
+ require 'rake/clean'
4
+ require 'rake/testtask'
5
+ require 'lib/sprout/flex4sdk/version'
6
+
7
+ PROJECT = 'sprout'
8
+ NAME = 'sprout-flex4sdk-tool'
9
+ SUMMARY = 'Adobe Flex 4 SDK including mxmlc, compc, asdoc and fdb'
10
+ GEM_VERSION = Sprout::Flex4SDK::VERSION::STRING
11
+ AUTHOR = 'Adobe, Inc.'
12
+ EMAIL = 'projectsprouts@googlegroups.com'
13
+ HOMEPAGE = 'http://www.adobe.com/products/flex'
14
+ DESCRIPTION = "The Flex 4 SDK Rubygem is brought to you by Project Sprouts (http://www.projectsprouts.org)"
15
+ HOMEPATH = "http://#{PROJECT}.rubyforge.org"
16
+ RELEASE_TYPES = ["gem"]
17
+ PKG_LIST = FileList['[a-zA-Z]*',
18
+ 'bin/**/*',
19
+ 'lib/**/*'
20
+ ]
21
+
22
+ PKG_LIST.exclude('.svn')
23
+ PKG_LIST.exclude('artifacts')
24
+ PKG_LIST.each do |file|
25
+ task :package => file
26
+ end
27
+
28
+ spec = Gem::Specification.new do |s|
29
+ s.platform = Gem::Platform::RUBY
30
+ s.summary = SUMMARY
31
+ s.description = DESCRIPTION
32
+ s.name = NAME
33
+ s.version = GEM_VERSION
34
+ s.author = AUTHOR
35
+ s.email = EMAIL
36
+ s.homepage = HOMEPAGE
37
+ s.rubyforge_project = PROJECT
38
+ s.require_path = 'lib'
39
+ s.bindir = 'bin'
40
+ s.has_rdoc = false
41
+ s.files = PKG_LIST.to_a
42
+ s.executables = ['mxmlc', 'compc', 'asdoc', 'fdb', 'adl', 'adt']
43
+ s.default_executable = 'mxmlc'
44
+
45
+ s.add_dependency('sprout', '>= 0.7.1')
46
+ end
47
+
48
+ Rake::GemPackageTask.new(spec) do |p|
49
+ end
50
+
51
+ require File.dirname(__FILE__) + '/../../sprout/script/build_helpers'
data/sprout.spec ADDED
@@ -0,0 +1,4 @@
1
+ - !ruby/object:Sprout::RemoteFileTarget
2
+ platform: universal
3
+ url: http://flexorg.wip3.adobe.com/flexsdk/3.0.1.1728/flex_sdk_3.0.1.1728.zip
4
+ md5: 5e040ab080dbc007bb43f0a7e1e6ae2b
metadata ADDED
@@ -0,0 +1,80 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sprout-flex4sdk-tool
3
+ version: !ruby/object:Gem::Version
4
+ version: 4.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Adobe, Inc.
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-05-15 00:00:00 -07:00
13
+ default_executable: mxmlc
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: sprout
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 0.7.1
23
+ version:
24
+ description: The Flex 4 SDK Rubygem is brought to you by Project Sprouts (http://www.projectsprouts.org)
25
+ email: projectsprouts@googlegroups.com
26
+ executables:
27
+ - mxmlc
28
+ - compc
29
+ - asdoc
30
+ - fdb
31
+ - adl
32
+ - adt
33
+ extensions: []
34
+
35
+ extra_rdoc_files: []
36
+
37
+ files:
38
+ - bin
39
+ - lib
40
+ - LICENSE.htm
41
+ - pkg
42
+ - rakefile.rb
43
+ - sprout.spec
44
+ - bin/adl
45
+ - bin/adt
46
+ - bin/asdoc
47
+ - bin/compc
48
+ - bin/fdb
49
+ - bin/mxmlc
50
+ - lib/sprout
51
+ - lib/sprout/flex4sdk
52
+ - lib/sprout/flex4sdk/version.rb
53
+ has_rdoc: false
54
+ homepage: http://www.adobe.com/products/flex
55
+ post_install_message:
56
+ rdoc_options: []
57
+
58
+ require_paths:
59
+ - lib
60
+ required_ruby_version: !ruby/object:Gem::Requirement
61
+ requirements:
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ version: "0"
65
+ version:
66
+ required_rubygems_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: "0"
71
+ version:
72
+ requirements: []
73
+
74
+ rubyforge_project: sprout
75
+ rubygems_version: 1.0.1
76
+ signing_key:
77
+ specification_version: 2
78
+ summary: Adobe Flex 4 SDK including mxmlc, compc, asdoc and fdb
79
+ test_files: []
80
+