GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Rubygem
Description: Resource-oriented open source Ruby framework for Web apps.
Homepage: http://rubywaves.com/
Clone URL: git://github.com/dyoder/waves.git
utilities/kernel has to precede extensions in require for rake setup to 
work.
ab5tract (author)
Sat Aug 30 14:00:54 -0700 2008
automatthew (committer)
Wed Sep 03 08:01:01 -0700 2008
commit  0b9b3bb1bd4146ff7624339b20df93f7e2c89194
tree    547d11af09e612a10bd3f32e8b75931daf1b8c06
parent  cfd962f56dede6da22a061b756be7465970fbe23
...
1
2
3
 
 
4
5
6
...
33
34
35
36
 
37
38
39
40
 
41
42
43
44
 
45
46
47
...
1
 
 
2
3
4
5
6
...
33
34
35
 
36
37
38
39
 
40
41
42
43
 
44
45
46
47
0
@@ -1,6 +1,6 @@
0
 begin
0
- $: << 'lib'; %w( rubygems rake/testtask rake/rdoctask rake/gempackagetask extensions/all
0
- ext/string ext/symbol ext/kernel date).each { |dep| require dep }
0
+ $: << 'lib'; %w( rubygems rake/testtask rake/rdoctask rake/gempackagetask
0
+ ext/string ext/symbol ext/kernel extensions/all date).each { |dep| require dep }
0
 rescue LoadError => e
0
   if e.message == 'no such file to load -- extensions/all'
0
     puts "Better do `rake setup` to get all the fancies you're missing"
0
@@ -33,15 +33,15 @@ gem = Gem::Specification.new do |gem|
0
 
0
   # Unfortunately there are some gems that don't work in JRuby, so...
0
   case engine
0
- when 'ruby'
0
+ when 'ruby'
0
     # Matz' Ruby dependencies here...
0
     puts "You are running MRI/Ruby #{RUBY_VERSION}"
0
     gem.add_dependency('RedCloth', '>= 4.0.0')
0
- when 'jruby'
0
+ when 'jruby'
0
     # JRuby compatible dependencies here...
0
     puts "You are running JRuby #{JRUBY_VERSION}"
0
     gem.add_dependency('RedCloth', '= 3.0.4')
0
- else
0
+ else
0
     # Not sure what you're running, we're not sure. We'll just try the MRI specifics...
0
     puts "You are running #{RUBY_ENGINE} #{RUBY_VERSION}"
0
     gem.add_dependency('RedCloth', '>= 4.0.0')

Comments

    No one has commented yet.