radiant / radiant

Radiant is a no-fluff, open source content management system designed for small teams.

This URL has Read+Write access

radiant / script / cucumber
100755 8 lines (8 sloc) 0.244 kb
1
2
3
4
5
6
7
8
#!/usr/bin/env ruby
begin
  load File.expand_path(File.dirname(__FILE__) + "/../vendor/plugins/cucumber/bin/cucumber")
rescue LoadError => e
  raise unless e.to_s =~ /cucumber/
  require "rubygems"
  load File.join(Gem.bindir, "cucumber")
end