jerryvos-sprout-flexsystemsdk-tool 0.1.0 → 0.1.1
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.markdown +28 -0
- data/VERSION.yml +4 -0
- data/rakefile.rb +1 -14
- data/sprout-flexsystemsdk-tool.gemspec +46 -0
- metadata +8 -11
- data/VERSION +0 -1
data/README.markdown
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
sprout-flexsystemsdk-tool
|
|
2
|
+
=============
|
|
3
|
+
|
|
4
|
+
Example Rakefile
|
|
5
|
+
========
|
|
6
|
+
require 'sprout'
|
|
7
|
+
sprout 'as3'
|
|
8
|
+
|
|
9
|
+
# enable github
|
|
10
|
+
Sprout::Sprout.gem_sources += ['http://gems.github.com']
|
|
11
|
+
|
|
12
|
+
Sprout::Sprout.class_eval do
|
|
13
|
+
# overriding this to allow sprout to be anywhere in the name, supporting github style aliases
|
|
14
|
+
def self.sprout_to_gem_name(name)
|
|
15
|
+
if(!name.match(/sprout-/))
|
|
16
|
+
name = "sprout-#{name}-bundle"
|
|
17
|
+
end
|
|
18
|
+
return name
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
mxmlc 'app.swf' do |t|
|
|
23
|
+
# configure your build
|
|
24
|
+
# ...
|
|
25
|
+
|
|
26
|
+
# tell it to use our custom builder
|
|
27
|
+
t.gem_name = 'jerryvos-sprout-flexsystemsdk-tool'
|
|
28
|
+
end
|
data/VERSION.yml
ADDED
data/rakefile.rb
CHANGED
|
@@ -35,20 +35,7 @@ begin
|
|
|
35
35
|
|
|
36
36
|
gemspec.platform = Gem::Platform::RUBY
|
|
37
37
|
gemspec.has_rdoc = false
|
|
38
|
-
|
|
39
|
-
# s.description = DESCRIPTION
|
|
40
|
-
# s.name = NAME
|
|
41
|
-
|
|
42
|
-
# s.version = GEM_VERSION
|
|
43
|
-
# s.require_path = 'lib'
|
|
44
|
-
# s.bindir = 'bin'
|
|
45
|
-
|
|
46
|
-
# s.author = AUTHOR
|
|
47
|
-
# s.email = EMAIL
|
|
48
|
-
# s.homepage = HOMEPAGE
|
|
49
|
-
# s.rubyforge_project = PROJECT
|
|
50
|
-
# s.files = PKG_LIST.to_a
|
|
51
|
-
# s.executables = []
|
|
38
|
+
gemspec.executables = []
|
|
52
39
|
# s.default_executable = ''
|
|
53
40
|
end
|
|
54
41
|
rescue LoadError
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+
Gem::Specification.new do |s|
|
|
4
|
+
s.name = %q{sprout-flexsystemsdk-tool}
|
|
5
|
+
s.version = "0.1.1"
|
|
6
|
+
|
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
8
|
+
s.authors = ["Adobe, Inc."]
|
|
9
|
+
s.date = %q{2009-07-14}
|
|
10
|
+
s.description = %q{A sprout tool for interacting with your local sdk}
|
|
11
|
+
s.email = %q{jerry.vos@gmail.com}
|
|
12
|
+
s.extra_rdoc_files = [
|
|
13
|
+
"README.markdown"
|
|
14
|
+
]
|
|
15
|
+
s.files = [
|
|
16
|
+
"README.markdown",
|
|
17
|
+
"VERSION.yml",
|
|
18
|
+
"bin/adl",
|
|
19
|
+
"bin/adt",
|
|
20
|
+
"bin/asdoc",
|
|
21
|
+
"bin/compc",
|
|
22
|
+
"bin/fdb",
|
|
23
|
+
"bin/mxmlc",
|
|
24
|
+
"rakefile.rb",
|
|
25
|
+
"sprout-flexsystemsdk-tool.gemspec",
|
|
26
|
+
"sprout.spec"
|
|
27
|
+
]
|
|
28
|
+
s.homepage = %q{http://github.com/jerryvos/sprout-flexsystemsdk-tool}
|
|
29
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
30
|
+
s.require_paths = ["lib"]
|
|
31
|
+
s.rubygems_version = %q{1.3.4}
|
|
32
|
+
s.summary = %q{Adobe Flex 3 SDK including mxmlc, compc, asdoc and fdb}
|
|
33
|
+
|
|
34
|
+
if s.respond_to? :specification_version then
|
|
35
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
36
|
+
s.specification_version = 3
|
|
37
|
+
|
|
38
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
39
|
+
s.add_runtime_dependency(%q<sprout>, [">= 0.7.1"])
|
|
40
|
+
else
|
|
41
|
+
s.add_dependency(%q<sprout>, [">= 0.7.1"])
|
|
42
|
+
end
|
|
43
|
+
else
|
|
44
|
+
s.add_dependency(%q<sprout>, [">= 0.7.1"])
|
|
45
|
+
end
|
|
46
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jerryvos-sprout-flexsystemsdk-tool
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Adobe, Inc.
|
|
@@ -24,19 +24,15 @@ dependencies:
|
|
|
24
24
|
version:
|
|
25
25
|
description: A sprout tool for interacting with your local sdk
|
|
26
26
|
email: jerry.vos@gmail.com
|
|
27
|
-
executables:
|
|
28
|
-
- adl
|
|
29
|
-
- adt
|
|
30
|
-
- asdoc
|
|
31
|
-
- compc
|
|
32
|
-
- fdb
|
|
33
|
-
- mxmlc
|
|
34
|
-
extensions: []
|
|
27
|
+
executables: []
|
|
35
28
|
|
|
36
|
-
|
|
29
|
+
extensions: []
|
|
37
30
|
|
|
31
|
+
extra_rdoc_files:
|
|
32
|
+
- README.markdown
|
|
38
33
|
files:
|
|
39
|
-
-
|
|
34
|
+
- README.markdown
|
|
35
|
+
- VERSION.yml
|
|
40
36
|
- bin/adl
|
|
41
37
|
- bin/adt
|
|
42
38
|
- bin/asdoc
|
|
@@ -44,6 +40,7 @@ files:
|
|
|
44
40
|
- bin/fdb
|
|
45
41
|
- bin/mxmlc
|
|
46
42
|
- rakefile.rb
|
|
43
|
+
- sprout-flexsystemsdk-tool.gemspec
|
|
47
44
|
- sprout.spec
|
|
48
45
|
has_rdoc: false
|
|
49
46
|
homepage: http://github.com/jerryvos/sprout-flexsystemsdk-tool
|
data/VERSION
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0.1.0
|