request-log-analyzer 1.2.3 → 1.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/RELEASE_NOTES.rdoc DELETED
@@ -1,10 +0,0 @@
1
- === 1.2.1
2
- * Compressed logfile support
3
- * Parsable YAML results as output (use --dump <filename> )
4
- * Full Rdoc
5
- * Release notes
6
- * Updated rails take tasks
7
-
8
- === 1.2.0
9
- * Ruby 1.9 support
10
- * Rcov coverage
data/tasks/rspec.rake DELETED
@@ -1,19 +0,0 @@
1
- require 'rake'
2
- require 'spec/rake/spectask'
3
-
4
- namespace :spec do
5
- desc "Run all rspec with RCov"
6
- Spec::Rake::SpecTask.new(:rcov) do |t|
7
-
8
- t.spec_files = FileList['spec/**/*_spec.rb']
9
- t.rcov = true
10
- t.rcov_opts = ['--exclude', '"spec/*,gems/*"', '--rails']
11
- end
12
-
13
- desc "Run all specs in spec directory (excluding plugin specs)"
14
- Spec::Rake::SpecTask.new(:fancy) do |t|
15
- t.spec_opts = ['--options', "\"spec/spec.opts\""]
16
- t.spec_files = FileList['spec/**/*_spec.rb']
17
- end
18
- end
19
-