Skip to content

Commit

Permalink
Update to 3.0.0.beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
adambeynon committed Nov 9, 2013
1 parent babc0d7 commit e309d0d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
12 changes: 5 additions & 7 deletions Gemfile
Expand Up @@ -3,10 +3,8 @@ gemspec

gem 'rake'

# As we monkey patch a lot, work of a specific commit on github
gem 'rspec-support', :github => 'rspec/rspec-support', :ref => 'f235ccb129'
gem 'rspec-expectations', :github => 'rspec/rspec-expectations', :ref => 'd3277fd42e'
gem 'rspec-core', :github => 'rspec/rspec-core', :ref => 'ed8898c58b'
gem 'rspec-mocks', :github => 'rspec/rspec-mocks', :ref => 'a2f952a025'

gem 'rspec', :github => 'rspec/rspec'
gem 'rspec', '3.0.0.beta1'
gem 'rspec-support', '3.0.0.beta1'
gem 'rspec-core', '3.0.0.beta1'
gem 'rspec-expectations', '3.0.0.beta1'
gem 'rspec-mocks', '3.0.0.beta1'
4 changes: 3 additions & 1 deletion app/rspec-builder.rb
Expand Up @@ -31,11 +31,13 @@
require 'rspec/core/shared_example_group/collection'
require 'rspec/core/shared_example_group'
require 'rspec/core/example_group'

require 'rspec/core'
require 'rspec-expectations'
require 'rspec/mocks'

# we want access to BaseFormatter
require 'rspec/core/formatters/base_formatter'

# For now, we don't support mocking. This placeholder in rspec-core allows that.
require 'rspec/core/mocking/with_absolutely_nothing'
require 'rspec/core/mocking/with_rspec'
2 changes: 2 additions & 0 deletions config.ru
@@ -1,6 +1,8 @@
require 'bundler'
Bundler.require

require 'opal-sprockets'

Opal::Processor.source_map_enabled = false

run Opal::Server.new { |s|
Expand Down

0 comments on commit e309d0d

Please sign in to comment.