rmthemegen 0.0.9 → 0.0.10

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,4 @@
1
- #! /usr/bin/ruby
1
+ #! /usr/bin/env/ruby
2
2
  #**********************************************************************
3
3
  #* *
4
4
  #* RmThemeGen - a ruby script to create random, usable themes for *
@@ -21,7 +21,8 @@ puts
21
21
  puts " by David Heitzman 2011 "
22
22
  puts " dheitzman@aptifuge.com -- Questions / Comments welcome. "
23
23
  puts
24
- puts " usage: rmthemegen <number of themes you want> "
24
+ puts " usage: lib/generate_themes.rb <number of themes you want> "
25
+ puts " example: lib/generate_themes.rb 5 "
25
26
  puts
26
27
  puts " Instructions: Complete path of generated theme will be printed below "
27
28
  puts " Copy the rmt_*_*.xml files to: "
@@ -31,6 +32,9 @@ puts
31
32
 
32
33
  l = RMThemeGen::ThemeGenerator.new
33
34
 
35
+ puts "testing to_css"
36
+ puts l.to_css
37
+
34
38
  @iterations = ARGV[0] || 1
35
39
  @iterations = @iterations.to_i
36
40