Upgraded Rails and RSpec
[monkeycharger.git] / vendor / plugins / rspec_on_rails / lib / spec / rails / version.rb
blob434a394c3c6cc6f17aac20f4b267a3f421ac9434
1 module Spec
2   module Rails
3     module VERSION #:nodoc:
4       unless defined?(REV)
5         # RANDOM_TOKEN: 0.956731547671535
6         REV = "$LastChangedRevision: 2081 $".match(/LastChangedRevision: (\d+)/)[1]
7       end
8     end
9   end
10 end
12 # Verifies that the plugin has the same revision as RSpec
13 if Spec::VERSION::REV != Spec::Rails::VERSION::REV
14   raise <<-EOF
16 ############################################################################
17 Your RSpec on Rails plugin is incompatible with your installed RSpec.
19 RSpec          : #{Spec::VERSION::FULL_VERSION}
20 RSpec on Rails : r#{Spec::Rails::VERSION::REV}
22 Make sure your RSpec on Rails plugin is compatible with your RSpec gem.
23 See http://rspec.rubyforge.org/documentation/rails/install.html for details.
24 ############################################################################
25 EOF
26 end