jerryvos-sprout-flexsystemsdk-tool 0.1.0
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/VERSION +1 -0
- data/bin/adl +2 -0
- data/bin/adt +2 -0
- data/bin/asdoc +2 -0
- data/bin/compc +2 -0
- data/bin/fdb +2 -0
- data/bin/mxmlc +2 -0
- data/rakefile.rb +82 -0
- data/sprout.spec +6 -0
- metadata +75 -0
data/VERSION
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.1.0
|
data/bin/adl
ADDED
data/bin/adt
ADDED
data/bin/asdoc
ADDED
data/bin/compc
ADDED
data/bin/fdb
ADDED
data/bin/mxmlc
ADDED
data/rakefile.rb
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
require 'jeweler'
|
|
2
|
+
|
|
3
|
+
# PROJECT = 'sprout'
|
|
4
|
+
NAME = 'sprout-flexsystemsdk-tool'
|
|
5
|
+
SUMMARY = 'Adobe Flex 3 SDK including mxmlc, compc, asdoc and fdb'
|
|
6
|
+
AUTHOR = 'Adobe, Inc.'
|
|
7
|
+
EMAIL = 'jerry.vos@gmail.com'
|
|
8
|
+
HOMEPAGE = 'http://github.com/jerryvos/sprout-flexsystemsdk-tool'
|
|
9
|
+
DESCRIPTION = "A sprout tool for interacting with your local sdk"
|
|
10
|
+
HOMEPATH = "http://github.com/jerryvos/sprout-flexsystemsdk-tool"
|
|
11
|
+
RELEASE_TYPES = ["gem"]
|
|
12
|
+
PKG_LIST = FileList['[a-zA-Z]*',
|
|
13
|
+
'bin/**/*',
|
|
14
|
+
'lib/**/*'
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
PKG_LIST.exclude('.svn')
|
|
18
|
+
PKG_LIST.exclude('artifacts')
|
|
19
|
+
PKG_LIST.each do |file|
|
|
20
|
+
task :package => file
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
begin
|
|
24
|
+
require 'jeweler'
|
|
25
|
+
Jeweler::Tasks.new do |gemspec|
|
|
26
|
+
gemspec.name = NAME
|
|
27
|
+
gemspec.summary = SUMMARY
|
|
28
|
+
gemspec.description = DESCRIPTION
|
|
29
|
+
gemspec.email = EMAIL
|
|
30
|
+
gemspec.homepage = HOMEPAGE
|
|
31
|
+
gemspec.description = DESCRIPTION
|
|
32
|
+
gemspec.authors = [AUTHOR]
|
|
33
|
+
gemspec.files = PKG_LIST.to_a
|
|
34
|
+
gemspec.add_dependency('sprout', '>= 0.7.1')
|
|
35
|
+
|
|
36
|
+
gemspec.platform = Gem::Platform::RUBY
|
|
37
|
+
gemspec.has_rdoc = false
|
|
38
|
+
# s.summary = SUMMARY
|
|
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 = []
|
|
52
|
+
# s.default_executable = ''
|
|
53
|
+
end
|
|
54
|
+
rescue LoadError
|
|
55
|
+
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
BIN_PKG_NAME = File.join('pkg', 'unix_command_aliases.tar.gz')
|
|
59
|
+
|
|
60
|
+
namespace :bin do
|
|
61
|
+
task :generate do
|
|
62
|
+
%w(adl adt asdoc compc fdb mxmlc).each do |command|
|
|
63
|
+
File.open(File.join(File.dirname(__FILE__), 'bin', command), 'w') do |file|
|
|
64
|
+
file.write <<-EOF
|
|
65
|
+
#!/usr/bin/env ruby
|
|
66
|
+
exec("#{command}", *ARGV)
|
|
67
|
+
EOF
|
|
68
|
+
end
|
|
69
|
+
end
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
task :package => :generate do
|
|
73
|
+
system "tar -czf #{BIN_PKG_NAME} bin"
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
desc "Reinstall this gem"
|
|
78
|
+
task :reinstall do |t|
|
|
79
|
+
system "sudo gem uninstall #{NAME}"
|
|
80
|
+
system "rake clean package"
|
|
81
|
+
system "sudo gem install -f pkg/#{NAME}-#{GEM_VERSION}.gem"
|
|
82
|
+
end
|
data/sprout.spec
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
- !ruby/object:Sprout::RemoteFileTarget
|
|
2
|
+
platform: macosx
|
|
3
|
+
url: http://cloud.github.com/downloads/jerryvos/sprout-flexsystemsdk-tool/unix_command_aliases.tar.gz
|
|
4
|
+
- !ruby/object:Sprout::RemoteFileTarget
|
|
5
|
+
platform: linux
|
|
6
|
+
url: http://cloud.github.com/downloads/jerryvos/sprout-flexsystemsdk-tool/unix_command_aliases.tar.gz
|
metadata
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: jerryvos-sprout-flexsystemsdk-tool
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Adobe, Inc.
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
|
|
12
|
+
date: 2009-07-14 00:00:00 -07:00
|
|
13
|
+
default_executable:
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: sprout
|
|
17
|
+
type: :runtime
|
|
18
|
+
version_requirement:
|
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: 0.7.1
|
|
24
|
+
version:
|
|
25
|
+
description: A sprout tool for interacting with your local sdk
|
|
26
|
+
email: jerry.vos@gmail.com
|
|
27
|
+
executables:
|
|
28
|
+
- adl
|
|
29
|
+
- adt
|
|
30
|
+
- asdoc
|
|
31
|
+
- compc
|
|
32
|
+
- fdb
|
|
33
|
+
- mxmlc
|
|
34
|
+
extensions: []
|
|
35
|
+
|
|
36
|
+
extra_rdoc_files: []
|
|
37
|
+
|
|
38
|
+
files:
|
|
39
|
+
- VERSION
|
|
40
|
+
- bin/adl
|
|
41
|
+
- bin/adt
|
|
42
|
+
- bin/asdoc
|
|
43
|
+
- bin/compc
|
|
44
|
+
- bin/fdb
|
|
45
|
+
- bin/mxmlc
|
|
46
|
+
- rakefile.rb
|
|
47
|
+
- sprout.spec
|
|
48
|
+
has_rdoc: false
|
|
49
|
+
homepage: http://github.com/jerryvos/sprout-flexsystemsdk-tool
|
|
50
|
+
post_install_message:
|
|
51
|
+
rdoc_options:
|
|
52
|
+
- --charset=UTF-8
|
|
53
|
+
require_paths:
|
|
54
|
+
- lib
|
|
55
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
56
|
+
requirements:
|
|
57
|
+
- - ">="
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: "0"
|
|
60
|
+
version:
|
|
61
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
62
|
+
requirements:
|
|
63
|
+
- - ">="
|
|
64
|
+
- !ruby/object:Gem::Version
|
|
65
|
+
version: "0"
|
|
66
|
+
version:
|
|
67
|
+
requirements: []
|
|
68
|
+
|
|
69
|
+
rubyforge_project:
|
|
70
|
+
rubygems_version: 1.2.0
|
|
71
|
+
signing_key:
|
|
72
|
+
specification_version: 3
|
|
73
|
+
summary: Adobe Flex 3 SDK including mxmlc, compc, asdoc and fdb
|
|
74
|
+
test_files: []
|
|
75
|
+
|