sprout-swfmill-tool 0.2.26-x86-linux
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/bin/swfmill +11 -0
- data/lib/sprout/swfmill/version.rb +12 -0
- data/rakefile.rb +66 -0
- data/sprout.spec +12 -0
- metadata +67 -0
data/bin/swfmill
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/swfmill/version'
|
9
|
+
|
10
|
+
exe = Sprout::Sprout.get_executable('sprout-swfmill-tool', nil, Sprout::SWFMill::VERSION::STRING)
|
11
|
+
exec("#{exe} #{ARGV.join(' ')}")
|
data/rakefile.rb
ADDED
@@ -0,0 +1,66 @@
|
|
1
|
+
require 'rake'
|
2
|
+
require 'rake/gempackagetask'
|
3
|
+
require 'rake/clean'
|
4
|
+
require 'rake/testtask'
|
5
|
+
require 'lib/sprout/swfmill/version'
|
6
|
+
|
7
|
+
PROJECT = 'sprout'
|
8
|
+
NAME = 'sprout-swfmill-tool'
|
9
|
+
SUMMARY = 'SWFMill'
|
10
|
+
GEM_VERSION = Sprout::SWFMill::VERSION::STRING
|
11
|
+
AUTHOR = 'Daniel Fischer'
|
12
|
+
EMAIL = 'projectsprouts@googlegroups.com'
|
13
|
+
HOMEPAGE = 'http://www.swfmill.org'
|
14
|
+
DESCRIPTION = "The SWFMill 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
|
+
def configure_spec(spec)
|
29
|
+
spec.summary = SUMMARY
|
30
|
+
spec.description = DESCRIPTION
|
31
|
+
spec.name = NAME
|
32
|
+
spec.version = GEM_VERSION
|
33
|
+
spec.author = AUTHOR
|
34
|
+
spec.email = EMAIL
|
35
|
+
spec.homepage = HOMEPAGE
|
36
|
+
spec.rubyforge_project = PROJECT
|
37
|
+
spec.require_path = 'lib'
|
38
|
+
spec.has_rdoc = false
|
39
|
+
spec.files = PKG_LIST.to_a
|
40
|
+
spec.add_dependency("sprout", ">= 0.7.1")
|
41
|
+
end
|
42
|
+
|
43
|
+
ruby_spec = Gem::Specification.new do |spec|
|
44
|
+
configure_spec(spec)
|
45
|
+
spec.platform = Gem::Platform::RUBY
|
46
|
+
spec.bindir = 'bin'
|
47
|
+
spec.executables = ['swfmill']
|
48
|
+
spec.default_executable = 'swfmill'
|
49
|
+
end
|
50
|
+
|
51
|
+
# Do not add the binary to the Linux build
|
52
|
+
linux_spec = Gem::Specification.new do |spec|
|
53
|
+
configure_spec(spec)
|
54
|
+
spec.platform = 'x86-linux'
|
55
|
+
end
|
56
|
+
|
57
|
+
Rake::GemPackageTask.new(ruby_spec) do |p|
|
58
|
+
end
|
59
|
+
|
60
|
+
Rake::GemPackageTask.new(linux_spec) do |p|
|
61
|
+
end
|
62
|
+
|
63
|
+
require File.dirname(__FILE__) + '/../../sprout/script/build_helpers'
|
64
|
+
# Each task that wants this feature, needs to set this up
|
65
|
+
# because the flexsdks shouldn't get it...
|
66
|
+
task :release => :increment_revision
|
data/sprout.spec
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
- !ruby/object:Sprout::RemoteFileTarget
|
2
|
+
platform: macosx
|
3
|
+
url: http://projectsprouts.googlecode.com/files/swfmill-0.2.12-macosx.tar.gz
|
4
|
+
archive_path: swfmill-0.2.12-macosx/swfmill
|
5
|
+
md5: 9c708c0fc4977f774a70671e06420e52
|
6
|
+
- !ruby/object:Sprout::RemoteFileTarget
|
7
|
+
platform: win32
|
8
|
+
url: http://www.swfmill.org/releases/swfmill-0.2.12-win32.zip
|
9
|
+
archive_path: swfmill-0.2.12-win32/swfmill.exe
|
10
|
+
- !ruby/object:Sprout::RemoteFileTarget
|
11
|
+
platform: linux
|
12
|
+
archive_path: swfmill
|
metadata
ADDED
@@ -0,0 +1,67 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: sprout-swfmill-tool
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.26
|
5
|
+
platform: x86-linux
|
6
|
+
authors:
|
7
|
+
- Daniel Fischer
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-10-28 00:00:00 -04: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: The SWFMill Rubygem is brought to you by Project Sprouts (http://www.projectsprouts.org)
|
26
|
+
email: projectsprouts@googlegroups.com
|
27
|
+
executables: []
|
28
|
+
|
29
|
+
extensions: []
|
30
|
+
|
31
|
+
extra_rdoc_files: []
|
32
|
+
|
33
|
+
files:
|
34
|
+
- rakefile.rb
|
35
|
+
- sprout.spec
|
36
|
+
- bin/swfmill
|
37
|
+
- lib/sprout/swfmill/version.rb
|
38
|
+
has_rdoc: true
|
39
|
+
homepage: http://www.swfmill.org
|
40
|
+
licenses: []
|
41
|
+
|
42
|
+
post_install_message:
|
43
|
+
rdoc_options: []
|
44
|
+
|
45
|
+
require_paths:
|
46
|
+
- lib
|
47
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
48
|
+
requirements:
|
49
|
+
- - ">="
|
50
|
+
- !ruby/object:Gem::Version
|
51
|
+
version: "0"
|
52
|
+
version:
|
53
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
54
|
+
requirements:
|
55
|
+
- - ">="
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: "0"
|
58
|
+
version:
|
59
|
+
requirements: []
|
60
|
+
|
61
|
+
rubyforge_project: sprout
|
62
|
+
rubygems_version: 1.3.5
|
63
|
+
signing_key:
|
64
|
+
specification_version: 3
|
65
|
+
summary: SWFMill
|
66
|
+
test_files: []
|
67
|
+
|