Skip to content

Commit

Permalink
no longer applying code coverage for Travis CI builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Havens committed Feb 17, 2012
1 parent 4e678cb commit 84b9c41
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
15 changes: 8 additions & 7 deletions mad_chatter.gemspec
Expand Up @@ -21,14 +21,15 @@ Gem::Specification.new do |s|
s.add_runtime_dependency "thor"
s.add_runtime_dependency "eventmachine"
s.add_runtime_dependency "em-websocket"
# s.add_runtime_dependency "redcarpet"
s.add_runtime_dependency "daemons", "1.1.4"

s.add_development_dependency "rspec"
s.add_development_dependency "shoulda" # do we need this?
s.add_development_dependency 'simplecov'
s.add_development_dependency 'guard'
s.add_development_dependency 'guard-rspec'
s.add_development_dependency 'rb-fsevent'
s.add_development_dependency 'ruby-growl'
# s.add_development_dependency "shoulda" # do we need this?
unless ENV["CI"]
s.add_development_dependency 'simplecov'
s.add_development_dependency 'guard'
s.add_development_dependency 'guard-rspec'
s.add_development_dependency 'rb-fsevent'
s.add_development_dependency 'ruby-growl'
end
end
10 changes: 4 additions & 6 deletions spec/spec_helper.rb
@@ -1,13 +1,11 @@
require 'simplecov'
SimpleCov.start
unless ENV['CI']
require 'simplecov'
SimpleCov.start
end

require 'mad_chatter'
require 'rspec/mocks'

# See http://rubydoc.info/gems/rspec-mocks/frames for more details on the API.
## Don't like RSpec mocks? See: https://www.relishapp.com/rspec/rspec-core/docs/mock-framework-integration/mock-with-rspec
RSpec.configure do |config|
config.mock_framework = :rspec
end


0 comments on commit 84b9c41

Please sign in to comment.