flex3sdk 3.5.0.pre
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/Gemfile +4 -0
- data/flex3sdk-3.5.pre.gem +0 -0
- data/flex3sdk.gemspec +24 -0
- data/flex3sdk.rb +66 -0
- metadata +83 -0
data/Gemfile
ADDED
Binary file
|
data/flex3sdk.gemspec
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
lib = File.expand_path File.dirname(__FILE__), 'lib'
|
3
|
+
$:.unshift lib unless $:.include?(lib)
|
4
|
+
|
5
|
+
require 'bundler'
|
6
|
+
Bundler.setup
|
7
|
+
|
8
|
+
require 'sprout'
|
9
|
+
require 'flex3sdk'
|
10
|
+
|
11
|
+
Gem::Specification.new do |s|
|
12
|
+
s.name = Flex3sdk::NAME
|
13
|
+
s.version = Flex3sdk::VERSION::STRING
|
14
|
+
s.author = "Adobe, Inc."
|
15
|
+
s.email = "projectsprout@googlegroups.com"
|
16
|
+
s.homepage = "http://www.adobe.com/products/flex"
|
17
|
+
s.summary = "Adobe Flex 3 SDK including mxmlc, compc, asdoc, adl, adt, optimizer and fdb"
|
18
|
+
s.description = "The Flex 3 SDK Rubygem is brought to you by Project Sprouts (http://projectsprouts.org)"
|
19
|
+
s.rubyforge_project = s.name
|
20
|
+
s.files = FileList['**/**/*'].exclude /.git|.svn|.DS_Store/
|
21
|
+
s.add_bundler_dependencies
|
22
|
+
s.require_paths << '.'
|
23
|
+
end
|
24
|
+
|
data/flex3sdk.rb
ADDED
@@ -0,0 +1,66 @@
|
|
1
|
+
require 'sprout'
|
2
|
+
|
3
|
+
class Flex3sdk
|
4
|
+
NAME = 'flex3sdk'
|
5
|
+
|
6
|
+
module VERSION
|
7
|
+
MAJOR = 3
|
8
|
+
MINOR = 5
|
9
|
+
TINY = '0.pre'
|
10
|
+
|
11
|
+
STRING = "#{MAJOR}.#{MINOR}.#{TINY}"
|
12
|
+
end
|
13
|
+
|
14
|
+
Sprout::Specification.new do |s|
|
15
|
+
s.name = Flex3sdk::NAME
|
16
|
+
s.version = Flex3sdk::VERSION::STRING
|
17
|
+
|
18
|
+
# Create an independent remote_file_target for each
|
19
|
+
# platform that must be supported independently.
|
20
|
+
#
|
21
|
+
# If the archive includes support for all platforms (:windows, :osx, :unix)
|
22
|
+
# then set platform = :universal
|
23
|
+
#
|
24
|
+
s.add_remote_file_target do |t|
|
25
|
+
# Apply the windows-specific configuration:
|
26
|
+
t.platform = :universal
|
27
|
+
# Apply the shared platform configuration:
|
28
|
+
# Remote Archive:
|
29
|
+
t.archive_type = :zip
|
30
|
+
t.url = "http://fpdownload.adobe.com/pub/flex/sdk/builds/flex3/flex_sdk_3.4.0.9271_mpl.zip"
|
31
|
+
t.md5 = "ba0df5a5b7a9c901540bedaf8a4fec9e"
|
32
|
+
|
33
|
+
# Executables: (add .exe suffix if it was passed in)
|
34
|
+
t.add_executable :aasdoc, "bin/aasdoc"
|
35
|
+
t.add_executable :acompc, "bin/acompc"
|
36
|
+
t.add_executable :adl, "bin/adl"
|
37
|
+
t.add_executable :adt, "bin/adt"
|
38
|
+
t.add_executable :amxmlc, "bin/amxmlc"
|
39
|
+
t.add_executable :asdoc, "bin/asdoc"
|
40
|
+
t.add_executable :compc, "bin/compc"
|
41
|
+
t.add_executable :copylocale, "bin/compc"
|
42
|
+
t.add_executable :digest, "bin/digest"
|
43
|
+
t.add_executable :fcsh, "bin/fcsh"
|
44
|
+
t.add_executable :fdb, "bin/fdb"
|
45
|
+
t.add_executable :mxmlc, "bin/mxmlc"
|
46
|
+
t.add_executable :optimizer, "bin/optimizer"
|
47
|
+
|
48
|
+
# Flex framework SWCs:
|
49
|
+
t.add_library :flex, "frameworks/libs/flex.swc"
|
50
|
+
t.add_library :framework, "frameworks/libs/framework.swc"
|
51
|
+
t.add_library :rpc, "frameworks/libs/rpc.swc"
|
52
|
+
t.add_library :utilities, "frameworks/libs/utilities.swc"
|
53
|
+
t.add_library :playerglobal_9, "frameworks/libs/player/9/playerglobal.swc"
|
54
|
+
t.add_library :playerglobal_10, "frameworks/libs/player/10/playerglobal.swc"
|
55
|
+
|
56
|
+
# AsDoc templates:
|
57
|
+
t.add_library :asdoc_templates, "asdoc/templates"
|
58
|
+
|
59
|
+
# Locale-Specific Flex SWCs:
|
60
|
+
t.add_library :airframework_en_US, "frameworks/locale/en_US/airframework_rb.swc"
|
61
|
+
t.add_library :framework_en_US, "frameworks/locale/en_US/framework_rb.swc"
|
62
|
+
t.add_library :rpc_en_US, "frameworks/locale/en_US/rpc_rb.swc"
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
metadata
ADDED
@@ -0,0 +1,83 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: flex3sdk
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: true
|
5
|
+
segments:
|
6
|
+
- 3
|
7
|
+
- 5
|
8
|
+
- 0
|
9
|
+
- pre
|
10
|
+
version: 3.5.0.pre
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Adobe, Inc.
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2010-06-19 00:00:00 -07:00
|
19
|
+
default_executable:
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: sprout
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ">="
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
segments:
|
28
|
+
- 1
|
29
|
+
- 0
|
30
|
+
- 0
|
31
|
+
- pre
|
32
|
+
version: 1.0.0.pre
|
33
|
+
type: :runtime
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: *id001
|
36
|
+
description: The Flex 3 SDK Rubygem is brought to you by Project Sprouts (http://projectsprouts.org)
|
37
|
+
email: projectsprout@googlegroups.com
|
38
|
+
executables: []
|
39
|
+
|
40
|
+
extensions: []
|
41
|
+
|
42
|
+
extra_rdoc_files: []
|
43
|
+
|
44
|
+
files:
|
45
|
+
- flex3sdk-3.5.pre.gem
|
46
|
+
- flex3sdk.gemspec
|
47
|
+
- flex3sdk.rb
|
48
|
+
- Gemfile
|
49
|
+
has_rdoc: true
|
50
|
+
homepage: http://www.adobe.com/products/flex
|
51
|
+
licenses: []
|
52
|
+
|
53
|
+
post_install_message:
|
54
|
+
rdoc_options: []
|
55
|
+
|
56
|
+
require_paths:
|
57
|
+
- lib
|
58
|
+
- .
|
59
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
segments:
|
64
|
+
- 0
|
65
|
+
version: "0"
|
66
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - ">"
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
segments:
|
71
|
+
- 1
|
72
|
+
- 3
|
73
|
+
- 1
|
74
|
+
version: 1.3.1
|
75
|
+
requirements: []
|
76
|
+
|
77
|
+
rubyforge_project: flex3sdk
|
78
|
+
rubygems_version: 1.3.6
|
79
|
+
signing_key:
|
80
|
+
specification_version: 3
|
81
|
+
summary: Adobe Flex 3 SDK including mxmlc, compc, asdoc, adl, adt, optimizer and fdb
|
82
|
+
test_files: []
|
83
|
+
|