asrake 0.13.2 → 0.13.3
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/README.md +23 -12
- data/asrake.gemspec +26 -0
- metadata +24 -13
data/Gemfile
ADDED
data/README.md
CHANGED
@@ -1,13 +1,22 @@
|
|
1
|
-
ASRake
|
2
|
-
======
|
1
|
+
# ASRake
|
3
2
|
|
4
|
-
**
|
3
|
+
**Quickly and easily create build scripts for Actionscript 3, Flex, and AIR projects.**
|
4
|
+
|
5
|
+
|
6
|
+
## Installation
|
5
7
|
|
6
8
|
### `gem install asrake`
|
7
9
|
|
10
|
+
Or add this line to your application's Gemfile:
|
11
|
+
|
12
|
+
gem 'asrake'
|
13
|
+
|
14
|
+
And then execute:
|
15
|
+
|
16
|
+
$ bundle
|
17
|
+
|
8
18
|
|
9
|
-
|
10
|
-
--------
|
19
|
+
## Usage
|
11
20
|
|
12
21
|
Add the path(s) to your Flex SDK for all systems that will need to run the Rake tasks.
|
13
22
|
```ruby
|
@@ -24,10 +33,6 @@ Arguments match those passed to the compiler (mxmlc, compc, adt, etc) with hyphe
|
|
24
33
|
|
25
34
|
Convenience methods are provided for `include_libraries`, `external_library_path`, and `library_path`; you can instead use `statically_link`, `dynamically_link`, and `statically_link_only_referenced_classes` respectively.
|
26
35
|
|
27
|
-
|
28
|
-
How to Tasks
|
29
|
-
------------
|
30
|
-
|
31
36
|
### Build a SWF or SWC
|
32
37
|
|
33
38
|
```
|
@@ -136,8 +141,7 @@ namespace :version do
|
|
136
141
|
end
|
137
142
|
```
|
138
143
|
|
139
|
-
Additional Functionality
|
140
|
-
------------------------
|
144
|
+
## Additional Functionality
|
141
145
|
|
142
146
|
### New copy method
|
143
147
|
|
@@ -177,4 +181,11 @@ args.execute()
|
|
177
181
|
mxmlc.debug = true
|
178
182
|
mxmlc.source_path << "bin/src"
|
179
183
|
end).execute()
|
180
|
-
```
|
184
|
+
```
|
185
|
+
|
186
|
+
## Contributing
|
187
|
+
|
188
|
+
1. Fork this project
|
189
|
+
2. Create a feature branch
|
190
|
+
3. Make your changes
|
191
|
+
4. Create a Pull Request
|
data/asrake.gemspec
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
Gem::Specification.new do |spec|
|
3
|
+
spec.name = 'asrake'
|
4
|
+
spec.version = '0.13.3'
|
5
|
+
spec.platform = Gem::Platform::RUBY
|
6
|
+
|
7
|
+
spec.authors = ["Malachi Griffie"]
|
8
|
+
spec.email = ["malachi@nexussays.com"]
|
9
|
+
spec.homepage = 'https://github.com/nexussays/ASRake'
|
10
|
+
spec.license = 'MIT'
|
11
|
+
|
12
|
+
spec.summary = <<DESC
|
13
|
+
A cross-platform Rake library to quickly and easily create build scripts for
|
14
|
+
Actionscript 3, Flex, and AIR projects.
|
15
|
+
DESC
|
16
|
+
spec.description = <<DESC
|
17
|
+
A Rake library for Actionscript 3, Flex, and AIR projects.
|
18
|
+
See full documentation at https://github.com/nexussays/ASRake/blob/master/README.md
|
19
|
+
DESC
|
20
|
+
|
21
|
+
spec.files = Dir['lib/**/*.rb'] + %w[LICENSE README.md asrake.gemspec Gemfile]
|
22
|
+
|
23
|
+
spec.add_dependency 'rake', '>= 0.9', '< 11.0'
|
24
|
+
spec.add_runtime_dependency 'nokogiri', '~> 1.5'
|
25
|
+
spec.add_runtime_dependency 'rubyzip', '~> 0.9'
|
26
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: asrake
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.13.
|
4
|
+
version: 0.13.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,32 +9,38 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-11-27 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
|
-
name:
|
15
|
+
name: rake
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
|
-
- -
|
19
|
+
- - ! '>='
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: '
|
21
|
+
version: '0.9'
|
22
|
+
- - <
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: '11.0'
|
22
25
|
type: :runtime
|
23
26
|
prerelease: false
|
24
27
|
version_requirements: !ruby/object:Gem::Requirement
|
25
28
|
none: false
|
26
29
|
requirements:
|
27
|
-
- -
|
30
|
+
- - ! '>='
|
28
31
|
- !ruby/object:Gem::Version
|
29
|
-
version: '
|
32
|
+
version: '0.9'
|
33
|
+
- - <
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: '11.0'
|
30
36
|
- !ruby/object:Gem::Dependency
|
31
|
-
name:
|
37
|
+
name: nokogiri
|
32
38
|
requirement: !ruby/object:Gem::Requirement
|
33
39
|
none: false
|
34
40
|
requirements:
|
35
41
|
- - ~>
|
36
42
|
- !ruby/object:Gem::Version
|
37
|
-
version: '
|
43
|
+
version: '1.5'
|
38
44
|
type: :runtime
|
39
45
|
prerelease: false
|
40
46
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -42,9 +48,9 @@ dependencies:
|
|
42
48
|
requirements:
|
43
49
|
- - ~>
|
44
50
|
- !ruby/object:Gem::Version
|
45
|
-
version: '
|
51
|
+
version: '1.5'
|
46
52
|
- !ruby/object:Gem::Dependency
|
47
|
-
name:
|
53
|
+
name: rubyzip
|
48
54
|
requirement: !ruby/object:Gem::Requirement
|
49
55
|
none: false
|
50
56
|
requirements:
|
@@ -64,7 +70,8 @@ description: ! 'A Rake library for Actionscript 3, Flex, and AIR projects.
|
|
64
70
|
See full documentation at https://github.com/nexussays/ASRake/blob/master/README.md
|
65
71
|
|
66
72
|
'
|
67
|
-
email:
|
73
|
+
email:
|
74
|
+
- malachi@nexussays.com
|
68
75
|
executables: []
|
69
76
|
extensions: []
|
70
77
|
extra_rdoc_files: []
|
@@ -85,6 +92,8 @@ files:
|
|
85
92
|
- lib/asrake.rb
|
86
93
|
- LICENSE
|
87
94
|
- README.md
|
95
|
+
- asrake.gemspec
|
96
|
+
- Gemfile
|
88
97
|
homepage: https://github.com/nexussays/ASRake
|
89
98
|
licenses:
|
90
99
|
- MIT
|
@@ -109,5 +118,7 @@ rubyforge_project:
|
|
109
118
|
rubygems_version: 1.8.24
|
110
119
|
signing_key:
|
111
120
|
specification_version: 3
|
112
|
-
summary: A cross-platform Rake library
|
121
|
+
summary: A cross-platform Rake library to quickly and easily create build scripts
|
122
|
+
for Actionscript 3, Flex, and AIR projects.
|
113
123
|
test_files: []
|
124
|
+
has_rdoc:
|