as3corelib 0.85.0 → 0.92.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile.lock +1 -1
- data/README.textile +4 -2
- data/as3corelib.gemspec +1 -1
- data/lib/as3corelib.rb +6 -6
- data/lib/as3corelib/version.rb +1 -1
- metadata +5 -5
data/Gemfile.lock
CHANGED
data/README.textile
CHANGED
@@ -5,6 +5,8 @@ h1. The AS3CoreLib Sprout Gem
|
|
5
5
|
|
6
6
|
This sprout gem will download the as3corelib zip and make the included assets available to your flashsdk/sprout project. Assets are made available in the lib/as3corelib directory.
|
7
7
|
|
8
|
+
The version of this gem corresponds directly to the version of as3corelib as can be found on "the original project":http://github.com/mikechambers/as3corelib. There are multiple versions of as3corelib available as sprout gems, see the tags list associated with the sprout-as3corelib project.
|
9
|
+
|
8
10
|
h3. Installation
|
9
11
|
|
10
12
|
See information concerning Project Sprouts here:
|
@@ -13,7 +15,7 @@ See information concerning Project Sprouts here:
|
|
13
15
|
|
14
16
|
Add the AS3Corelib gem to your Gemfile:
|
15
17
|
|
16
|
-
<pre><code>gem "as3corelib"
|
18
|
+
<pre><code>gem "as3corelib", "0.92.1" # Swap the version number with whichever desired version.</code></pre>
|
17
19
|
|
18
20
|
Add the library dependency to your Rakefile:
|
19
21
|
|
@@ -27,7 +29,7 @@ h3. Ruby Gem
|
|
27
29
|
|
28
30
|
The gem can be installed independently of a project entering this command:
|
29
31
|
|
30
|
-
<pre><code>$ gem install as3corelib
|
32
|
+
<pre><code>$ gem install as3corelib</code></pre>
|
31
33
|
|
32
34
|
h3. Available assets
|
33
35
|
|
data/as3corelib.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
|
|
10
10
|
s.email = ["mikechambers@gmail.com", "amoslanka@gmail.com"]
|
11
11
|
s.homepage = "http://www.github.com/amoslanka/sprout-as3corelib"
|
12
12
|
s.summary = %q{AS3Corelib ActionScript 3 source wrapped in a Sprout::Specification for implementation into a sprout project and Gem::Specification for distribution as a gem.}
|
13
|
-
s.description = %q{An ActionScript 3 Library that contains a number of classes and utilities for working with ActionScript
|
13
|
+
s.description = %q{An ActionScript 3 Library that contains a number of classes and utilities for working with ActionScript 3. These include classes for MD5 and SHA 1 hashing, Image encoders, and JSON serialization as well as general String, Number and Date APIs.}
|
14
14
|
|
15
15
|
s.require_paths = ["lib"]
|
16
16
|
|
data/lib/as3corelib.rb
CHANGED
@@ -10,12 +10,12 @@ Sprout::Specification.new do |s|
|
|
10
10
|
s.add_remote_file_target do |t|
|
11
11
|
t.platform = :universal
|
12
12
|
t.archive_type = :zip
|
13
|
-
t.url = "http://github.com/downloads/mikechambers/as3corelib/
|
14
|
-
t.md5
|
13
|
+
t.url = "http://github.com/downloads/mikechambers/as3corelib/as3corelib-.92.1.zip"
|
14
|
+
t.md5 = "36fa0e6ea6c58b1f780c992bedf541ed"
|
15
15
|
|
16
|
-
t.add_library :swc, "
|
17
|
-
t.add_library :src, "
|
18
|
-
t.add_library :docs, "
|
19
|
-
t.add_library :all, "
|
16
|
+
t.add_library :swc, "as3corelib-.92.1/lib/as3corelib.swc"
|
17
|
+
t.add_library :src, "as3corelib-.92.1/src/"
|
18
|
+
t.add_library :docs, "as3corelib-.92.1/docs"
|
19
|
+
t.add_library :all, "as3corelib-.92.1/"
|
20
20
|
end
|
21
21
|
end
|
data/lib/as3corelib/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: as3corelib
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 365
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
-
|
10
|
-
version: 0.
|
8
|
+
- 92
|
9
|
+
- 1
|
10
|
+
version: 0.92.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Mike Chambers
|
@@ -50,7 +50,7 @@ dependencies:
|
|
50
50
|
type: :development
|
51
51
|
name: rake
|
52
52
|
prerelease: false
|
53
|
-
description: An ActionScript 3 Library that contains a number of classes and utilities for working with ActionScript
|
53
|
+
description: An ActionScript 3 Library that contains a number of classes and utilities for working with ActionScript 3. These include classes for MD5 and SHA 1 hashing, Image encoders, and JSON serialization as well as general String, Number and Date APIs.
|
54
54
|
email:
|
55
55
|
- mikechambers@gmail.com
|
56
56
|
- amoslanka@gmail.com
|