Skip to content

Commit

Permalink
install Rspec with basic config
Browse files Browse the repository at this point in the history
Installs Rspec with basic config to randomise run order and to output in
colour.
  • Loading branch information
alex-handley committed Mar 19, 2016
1 parent 8ffa760 commit d2a863f
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
source "https://rubygems.org"

gemspec
32 changes: 32 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
PATH
remote: .
specs:
chameleon-sass (0.5.7)

GEM
remote: https://rubygems.org/
specs:
diff-lcs (1.2.5)
rspec (3.4.0)
rspec-core (~> 3.4.0)
rspec-expectations (~> 3.4.0)
rspec-mocks (~> 3.4.0)
rspec-core (3.4.4)
rspec-support (~> 3.4.0)
rspec-expectations (3.4.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.4.0)
rspec-mocks (3.4.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.4.0)
rspec-support (3.4.1)

PLATFORMS
ruby

DEPENDENCIES
chameleon-sass!
rspec (~> 3.4.0)

BUNDLED WITH
1.11.2
4 changes: 3 additions & 1 deletion chameleon-sass.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,6 @@ Gem::Specification.new do |s|
s.files = ["README.md"]
s.files += Dir.glob("lib/**/*.*")
s.files += Dir.glob("assets/**/*.*")
end

s.add_development_dependency "rspec", "~> 3.4.0"
end
4 changes: 4 additions & 0 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
RSpec.configure do |config|
config.color = true
config.order = "random"
end

0 comments on commit d2a863f

Please sign in to comment.