public
Description: Behaviour Driven Development framework for Ruby
Homepage: http://rspec.info
Clone URL: git://github.com/dchelimsky/rspec.git
Click here to lend your support to: rspec and make a donation at www.pledgie.com !
add lib to load path
dchelimsky (author)
Wed Jul 02 17:59:26 -0700 2008
commit  42e7e99458841d6f113bdb53bae21f49cbb3d777
tree    97e3c9e06ad76ffff43fcd8bb635004473de4145
parent  2989ddf8e2f76f1f9794074e6a78cdb5fc9bf4b9
...
196
197
198
 
199
200
201
...
196
197
198
199
200
201
202
0
@@ -196,6 +196,7 @@ lib/spec/story/step_mother.rb
0
 lib/spec/story/story.rb
0
 lib/spec/story/world.rb
0
 lib/spec/translator.rb
0
+lib/spec/version.rb
0
 plugins/mock_frameworks/flexmock.rb
0
 plugins/mock_frameworks/mocha.rb
0
 plugins/mock_frameworks/rr.rb
...
1
2
 
3
4
5
6
 
 
7
8
9
...
1
2
3
4
5
 
 
6
7
8
9
10
0
@@ -1,9 +1,10 @@
0
 # -*- ruby -*-
0
 
0
+$:.unshift(File.join(File.dirname(__FILE__), 'lib'))
0
 require 'rubygems'
0
 require 'hoe'
0
-require './lib/spec'
0
-require './lib/spec/rake/spectask'
0
+require 'spec/version'
0
+require 'spec/rake/spectask'
0
 
0
 class Hoe
0
   def extra_deps
...
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
...
27
28
29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
31
0
@@ -27,24 +27,4 @@ module Spec
0
       !Object.const_defined?(:Test) || Test::Unit.run?
0
     end
0
   end
0
-
0
-  module VERSION
0
-    unless defined? MAJOR
0
-      MAJOR  = 1
0
-      MINOR  = 1
0
-      TINY   = 4
0
-      RELEASE_CANDIDATE = nil
0
-
0
-      BUILD_TIME_UTC = 20080628203842
0
-
0
-      STRING = [MAJOR, MINOR, TINY].join('.')
0
-      TAG = "REL_#{[MAJOR, MINOR, TINY, RELEASE_CANDIDATE].compact.join('_')}".upcase.gsub(/\.|-/, '_')
0
-      FULL_VERSION = "#{[MAJOR, MINOR, TINY, RELEASE_CANDIDATE].compact.join('.')} (build #{BUILD_TIME_UTC})"
0
-
0
-      NAME   = "RSpec"
0
-      URL    = "http://rspec.rubyforge.org/"  
0
-
0
-      SUMMARY = "#{NAME}-#{FULL_VERSION} - BDD for Ruby\n#{URL}"
0
-    end
0
-  end
0
 end
0
\ No newline at end of file

Comments