summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Robinson <matt@puppetlabs.com>2011-01-06 15:33:21 -0800
committerMatt Robinson <matt@puppetlabs.com>2011-01-06 15:33:21 -0800
commit80c5f4c267b6008ba1c08c72753027cf85029b93 (patch)
tree78b1ca9ea498790b02f88ac546265757f62eb790
parent0fc4b1a49791c4e67924295b172ca058f170b9cc (diff)
parent2d8884487159a29fa0a6b89379d5fc1b11c2652c (diff)
downloadpuppet-80c5f4c267b6008ba1c08c72753027cf85029b93.tar.gz
puppet-80c5f4c267b6008ba1c08c72753027cf85029b93.tar.xz
puppet-80c5f4c267b6008ba1c08c72753027cf85029b93.zip
Merge branch 'maint/2.6.next/remove_rspec_options_from_rakefile' into 2.6.next
* maint/2.6.next/remove_rspec_options_from_rakefile: maint: Add vim swap files to .gitignore maint: Remove rspec options from the Rakefile
-rw-r--r--.gitignore3
-rw-r--r--Rakefile1
2 files changed, 3 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000..a2082370b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+.rspec
+results
+.*.sw[op]
diff --git a/Rakefile b/Rakefile
index 728f1e3de..38cfec6ce 100644
--- a/Rakefile
+++ b/Rakefile
@@ -43,7 +43,6 @@ desc "Create the tarball and the gem - use when releasing"
task :puppetpackages => [:create_gem, :package]
RSpec::Core::RakeTask.new do |t|
- t.rspec_opts = ['--format','s', '--color']
t.pattern ='spec/{unit,integration}/**/*.rb'
t.fail_on_error = false
end