Skip to content

Commit ed10d88

Browse files
committedApr 16, 2014
Add a rake:dist example that distributes to CDN
1 parent 25cf2df commit ed10d88

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎Rakefile

+2
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,15 @@ MSpec::Opal::RakeTask.new(:mspec)
1515
task :default => [:rspec, :mspec]
1616

1717

18+
require 'opal/version'
1819
desc <<-DESC
1920
Build *corelib* and *stdlib* to "build/"
2021
2122
You can restrict the file list with the FILES env var (comma separated)
2223
and the destination dir with the DIR env var.
2324
2425
Example: rake dist DIR=/tmp/foo FILES='opal.rb,base64.rb'
26+
Example: rake dist DIR=cdn/opal/#{Opal::VERSION}
2527
DESC
2628
task :dist do
2729
require 'opal/util'

2 commit comments

Comments
 (2)

ylluminate commented on Apr 17, 2014

@ylluminate

This is great, thanks Elia. So for opal-browser or other plugins can we do some iteration on this already?

elia commented on Apr 18, 2014

@elia
MemberAuthor

@ylluminate I think yes, what concerns me most is how we'll mix-n-match opal version with lib version.
I think a cdn is supposed to keep stuff for a long time. Any idea/suggestion appreciated.

cc: @adambeynon @meh @mieko

Please sign in to comment.