sprout-mtasc-tool 1.13.5
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/mtasc +11 -0
- data/lib/sprout/mtasc/version.rb +12 -0
- data/rakefile.rb +55 -0
- data/sprout.spec +12 -0
- metadata +69 -0
data/bin/mtasc
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/mtasc/version'
|
9
|
+
|
10
|
+
exe = Sprout::Sprout.get_executable('sprout-mtasc-tool', nil, Sprout::MTASC::VERSION::STRING)
|
11
|
+
exec("#{exe} #{ARGV.join(' ')}")
|
data/rakefile.rb
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
require 'rake'
|
2
|
+
require 'rake/gempackagetask'
|
3
|
+
require 'rake/clean'
|
4
|
+
require 'rake/testtask'
|
5
|
+
require 'lib/sprout/mtasc/version'
|
6
|
+
|
7
|
+
PROJECT = 'sprout'
|
8
|
+
NAME = 'sprout-mtasc-tool'
|
9
|
+
SUMMARY = 'Motion Twin ActionScript Compiler'
|
10
|
+
GEM_VERSION = Sprout::MTASC::VERSION::STRING
|
11
|
+
AUTHOR = 'Nicholas Cannasse'
|
12
|
+
EMAIL = 'projectsprouts@googlegroups.com'
|
13
|
+
HOMEPAGE = 'http://www.mtasc.org'
|
14
|
+
DESCRIPTION = "The MTASC 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 = ['mtasc']
|
43
|
+
s.default_executable = 'mtasc'
|
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'
|
52
|
+
|
53
|
+
# Each task that wants this feature, needs to set this up
|
54
|
+
# because the flexsdks shouldn't get it...
|
55
|
+
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/mtasc-1.13-osx.zip
|
4
|
+
archive_path: mtasc-1.13-osx/mtasc
|
5
|
+
- !ruby/object:Sprout::RemoteFileTarget
|
6
|
+
platform: win32
|
7
|
+
url: http://www.mtasc.org/zip/mtasc-1.13.zip
|
8
|
+
archive_path: mtasc-1.13/mtasc.exe
|
9
|
+
- !ruby/object:Sprout::RemoteFileTarget
|
10
|
+
platform: linux
|
11
|
+
url: http://www.mtasc.org/zip/mtasc-1.12-linux.tgz
|
12
|
+
archive_path: mtasc
|
metadata
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: sprout-mtasc-tool
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.13.5
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Nicholas Cannasse
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2008-02-09 00:00:00 -08:00
|
13
|
+
default_executable: mtasc
|
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 MTASC Rubygem is brought to you by Project Sprouts (http://www.projectsprouts.org)
|
25
|
+
email: projectsprouts@googlegroups.com
|
26
|
+
executables:
|
27
|
+
- mtasc
|
28
|
+
extensions: []
|
29
|
+
|
30
|
+
extra_rdoc_files: []
|
31
|
+
|
32
|
+
files:
|
33
|
+
- bin
|
34
|
+
- lib
|
35
|
+
- pkg
|
36
|
+
- rakefile.rb
|
37
|
+
- sprout.spec
|
38
|
+
- bin/mtasc
|
39
|
+
- lib/sprout
|
40
|
+
- lib/sprout/mtasc
|
41
|
+
- lib/sprout/mtasc/version.rb
|
42
|
+
has_rdoc: false
|
43
|
+
homepage: http://www.mtasc.org
|
44
|
+
post_install_message:
|
45
|
+
rdoc_options: []
|
46
|
+
|
47
|
+
require_paths:
|
48
|
+
- lib
|
49
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: "0"
|
54
|
+
version:
|
55
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
56
|
+
requirements:
|
57
|
+
- - ">="
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: "0"
|
60
|
+
version:
|
61
|
+
requirements: []
|
62
|
+
|
63
|
+
rubyforge_project: sprout
|
64
|
+
rubygems_version: 1.0.1
|
65
|
+
signing_key:
|
66
|
+
specification_version: 2
|
67
|
+
summary: Motion Twin ActionScript Compiler
|
68
|
+
test_files: []
|
69
|
+
|