Skip to content

Commit

Permalink
(m) Same style in files that don't have .rb
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminoakes committed Nov 26, 2012
1 parent b7810f1 commit dad39f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile
@@ -1,4 +1,4 @@
source "http://rubygems.org"
source 'http://rubygems.org'

# Specify your gem's dependencies in maid.gemspec
gemspec
4 changes: 2 additions & 2 deletions Guardfile
Expand Up @@ -3,6 +3,6 @@

guard 'rspec' do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { "spec" }
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{ m[1] }_spec.rb" }
watch('spec/spec_helper.rb') { 'spec' }
end

0 comments on commit dad39f4

Please sign in to comment.