Sha256: 449a549cfbd9d39691761c2d21a04b1e26315675071652e5f418da75df5c8631

Contents?: true

Size: 637 Bytes

Versions: 7

Compression:

Stored size: 637 Bytes

Contents

require 'bundler'
begin
  Bundler.setup
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end

require 'action_view'
require 'mustache'

module ActionView
  class Template
    module Foo
    end
  end
  class TemplateFoo
  end
end

require 'stache'
ENV["RAILS_ENV"] ||= 'test'
require 'dummy/config/environment'
require 'rspec/rails'

# Requires supporting files with custom matchers and macros, etc,
# in ./support/ and its subdirectories.
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}

RSpec.configure do |config|

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
stache-1.0.3 spec/spec_helper.rb
stache-1.0.2 spec/spec_helper.rb
stache-1.0.1 spec/spec_helper.rb
stache-1.0.0 spec/spec_helper.rb
stache-1.0.0.rc spec/spec_helper.rb
stache-0.9.1 spec/spec_helper.rb
stache-0.9.0 spec/spec_helper.rb