as3corelib 0.92.1 → 0.93.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/Gemfile.lock +1 -1
- data/README.textile +1 -1
- data/Rakefile +2 -2
- data/lib/as3corelib.rb +5 -5
- data/lib/as3corelib/version.rb +1 -1
- metadata +4 -4
data/Gemfile.lock
CHANGED
data/README.textile
CHANGED
|
@@ -15,7 +15,7 @@ See information concerning Project Sprouts here:
|
|
|
15
15
|
|
|
16
16
|
Add the AS3Corelib gem to your Gemfile:
|
|
17
17
|
|
|
18
|
-
<pre><code>gem "as3corelib", "0.
|
|
18
|
+
<pre><code>gem "as3corelib", "0.93.0" # Swap the version number with whichever desired version.</code></pre>
|
|
19
19
|
|
|
20
20
|
Add the library dependency to your Rakefile:
|
|
21
21
|
|
data/Rakefile
CHANGED
|
@@ -26,8 +26,8 @@ namespace :gem do
|
|
|
26
26
|
system "gem install pkg/#{filename}"
|
|
27
27
|
end
|
|
28
28
|
|
|
29
|
-
desc "Build and
|
|
30
|
-
task :
|
|
29
|
+
desc "Build and push #{filename}.gem to rubygems.org"
|
|
30
|
+
task :push => :build do
|
|
31
31
|
system "gem push pkg/#{filename}.gem"
|
|
32
32
|
end
|
|
33
33
|
end
|
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/as3corelib-.
|
|
13
|
+
t.url = "http://github.com/downloads/mikechambers/as3corelib/as3corelib-.93.zip"
|
|
14
14
|
t.md5 = "36fa0e6ea6c58b1f780c992bedf541ed"
|
|
15
15
|
|
|
16
|
-
t.add_library :swc, "as3corelib-.
|
|
17
|
-
t.add_library :src, "as3corelib-.
|
|
18
|
-
t.add_library :docs, "as3corelib-.
|
|
19
|
-
t.add_library :all, "as3corelib-.
|
|
16
|
+
t.add_library :swc, "as3corelib-.93/lib/as3corelib.swc"
|
|
17
|
+
t.add_library :src, "as3corelib-.93/src/"
|
|
18
|
+
t.add_library :docs, "as3corelib-.93/docs"
|
|
19
|
+
t.add_library :all, "as3corelib-.93/"
|
|
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: 363
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
9
|
-
-
|
|
10
|
-
version: 0.
|
|
8
|
+
- 93
|
|
9
|
+
- 0
|
|
10
|
+
version: 0.93.0
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Mike Chambers
|