allinoneruby 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (8) hide show
  1. data/README +11 -0
  2. data/SUMMARY +1 -0
  3. data/VERSION +1 -0
  4. data/bin/allinoneruby +7 -0
  5. data/bin/empty +0 -0
  6. data/lib/empty +0 -0
  7. data/realstuff.rb +13539 -0
  8. metadata +45 -0
data/README ADDED
@@ -0,0 +1,11 @@
1
+ I'm experimenting with a new way of distributing applications
2
+ and libraries. That's why you don't find the usual layout of
3
+ files and directories. Instead, there's just one big file
4
+ (realstuff.rb) and a couple of bootstrap files.
5
+ realstuff.rb is an RBA (Ruby archive) and contains everything
6
+ you need to run the application or library.
7
+
8
+ For more information:
9
+
10
+ http://www.erikveen.dds.nl/tar2rubyscript/index.html
11
+ http://www.erikveen.dds.nl/distributingrubyapplications/index.html
data/SUMMARY ADDED
@@ -0,0 +1 @@
1
+ A "Just-in-Time and Temporary Installation of Ruby"
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.2.1
data/bin/allinoneruby ADDED
@@ -0,0 +1,7 @@
1
+ gemdir = File.expand_path("..", File.dirname(__FILE__))
2
+ realstuff = File.expand_path("realstuff.rb", gemdir)
3
+ isapplication = File.basename(File.dirname(__FILE__)) == "bin"
4
+
5
+ $0.replace(realstuff) if isapplication
6
+
7
+ load(realstuff)
data/bin/empty ADDED
File without changes
data/lib/empty ADDED
File without changes