bastard 0.0.1
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/.document +5 -0
- data/.gitignore +22 -0
- data/Gemfile +3 -0
- data/LICENSE +20 -0
- data/README.rdoc +17 -0
- data/Rakefile +53 -0
- data/VERSION +1 -0
- data/bastard.gemspec +60 -0
- data/bin/bastard +9 -0
- data/config/bastard.yml +3 -0
- data/lib/bastard/renderers/mail_file_log_renderer.rb +21 -0
- data/lib/bastard.rb +42 -0
- data/test/helper.rb +11 -0
- data/test/test_bastard.rb +7 -0
- metadata +95 -0
data/.document
ADDED
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2010 Morten Primdahl
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
= bastard
|
2
|
+
|
3
|
+
A bastardized version of Clarity for a specific project
|
4
|
+
|
5
|
+
== Note on Patches/Pull Requests
|
6
|
+
|
7
|
+
* Fork the project.
|
8
|
+
* Make your feature addition or bug fix.
|
9
|
+
* Add tests for it. This is important so I don't break it in a
|
10
|
+
future version unintentionally.
|
11
|
+
* Commit, do not mess with rakefile, version, or history.
|
12
|
+
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
13
|
+
* Send me a pull request. Bonus points for topic branches.
|
14
|
+
|
15
|
+
== Copyright
|
16
|
+
|
17
|
+
Copyright (c) 2010 Morten Primdahl. See LICENSE for details.
|
data/Rakefile
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |gem|
|
7
|
+
gem.name = "bastard"
|
8
|
+
gem.summary = %Q{A project specific version of Clarity}
|
9
|
+
gem.description = %Q{This won't make sense to use anywhere else}
|
10
|
+
gem.email = "morten@zendesk.com"
|
11
|
+
gem.homepage = "http://github.com/morten/bastard"
|
12
|
+
gem.authors = ["Morten Primdahl"]
|
13
|
+
gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
|
14
|
+
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
15
|
+
end
|
16
|
+
Jeweler::GemcutterTasks.new
|
17
|
+
rescue LoadError
|
18
|
+
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
|
19
|
+
end
|
20
|
+
|
21
|
+
require 'rake/testtask'
|
22
|
+
Rake::TestTask.new(:test) do |test|
|
23
|
+
test.libs << 'lib' << 'test'
|
24
|
+
test.pattern = 'test/**/test_*.rb'
|
25
|
+
test.verbose = true
|
26
|
+
end
|
27
|
+
|
28
|
+
begin
|
29
|
+
require 'rcov/rcovtask'
|
30
|
+
Rcov::RcovTask.new do |test|
|
31
|
+
test.libs << 'test'
|
32
|
+
test.pattern = 'test/**/test_*.rb'
|
33
|
+
test.verbose = true
|
34
|
+
end
|
35
|
+
rescue LoadError
|
36
|
+
task :rcov do
|
37
|
+
abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
task :test => :check_dependencies
|
42
|
+
|
43
|
+
task :default => :test
|
44
|
+
|
45
|
+
require 'rake/rdoctask'
|
46
|
+
Rake::RDocTask.new do |rdoc|
|
47
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
48
|
+
|
49
|
+
rdoc.rdoc_dir = 'rdoc'
|
50
|
+
rdoc.title = "bastard #{version}"
|
51
|
+
rdoc.rdoc_files.include('README*')
|
52
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
53
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.0.1
|
data/bastard.gemspec
ADDED
@@ -0,0 +1,60 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{bastard}
|
8
|
+
s.version = "0.0.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Morten Primdahl"]
|
12
|
+
s.date = %q{2010-08-31}
|
13
|
+
s.default_executable = %q{bastard}
|
14
|
+
s.description = %q{This won't make sense to use anywhere else}
|
15
|
+
s.email = %q{morten@zendesk.com}
|
16
|
+
s.executables = ["bastard"]
|
17
|
+
s.extra_rdoc_files = [
|
18
|
+
"LICENSE",
|
19
|
+
"README.rdoc"
|
20
|
+
]
|
21
|
+
s.files = [
|
22
|
+
".document",
|
23
|
+
".gitignore",
|
24
|
+
"Gemfile",
|
25
|
+
"LICENSE",
|
26
|
+
"README.rdoc",
|
27
|
+
"Rakefile",
|
28
|
+
"VERSION",
|
29
|
+
"bastard.gemspec",
|
30
|
+
"bin/bastard",
|
31
|
+
"config/bastard.yml",
|
32
|
+
"lib/bastard.rb",
|
33
|
+
"lib/bastard/renderers/mail_file_log_renderer.rb",
|
34
|
+
"test/helper.rb",
|
35
|
+
"test/test_bastard.rb"
|
36
|
+
]
|
37
|
+
s.homepage = %q{http://github.com/morten/bastard}
|
38
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
39
|
+
s.require_paths = ["lib"]
|
40
|
+
s.rubygems_version = %q{1.3.7}
|
41
|
+
s.summary = %q{A project specific version of Clarity}
|
42
|
+
s.test_files = [
|
43
|
+
"test/helper.rb",
|
44
|
+
"test/test_bastard.rb"
|
45
|
+
]
|
46
|
+
|
47
|
+
if s.respond_to? :specification_version then
|
48
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
49
|
+
s.specification_version = 3
|
50
|
+
|
51
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
52
|
+
s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
53
|
+
else
|
54
|
+
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
55
|
+
end
|
56
|
+
else
|
57
|
+
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
data/bin/bastard
ADDED
data/config/bastard.yml
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
require 'clarity/renderers/log_renderer'
|
2
|
+
|
3
|
+
class MailFileLogRenderer < LogRenderer
|
4
|
+
|
5
|
+
MailFilePath = %r{Processing mail (.+)/inbound/(.+)}
|
6
|
+
|
7
|
+
def render(line = {})
|
8
|
+
output = super(line)
|
9
|
+
output.gsub!(MailFilePath) do |match|
|
10
|
+
"Processing mail "+html_file_link("inbound/#{$2}")
|
11
|
+
end
|
12
|
+
output
|
13
|
+
end
|
14
|
+
|
15
|
+
private
|
16
|
+
|
17
|
+
def html_file_link(path)
|
18
|
+
"<a href='/fetch?path=#{path}'>#{path}</a>"
|
19
|
+
end
|
20
|
+
|
21
|
+
end
|
data/lib/bastard.rb
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
$:.unshift(File.dirname(__FILE__)) unless $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
|
2
|
+
|
3
|
+
module Bastard
|
4
|
+
LogRoot = nil
|
5
|
+
end
|
6
|
+
|
7
|
+
Clarity::GrepRenderer.module_eval do
|
8
|
+
require 'bastard/renderers/mail_file_log_renderer'
|
9
|
+
|
10
|
+
def renderer
|
11
|
+
@renderer ||= MailFileLogRenderer.new
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
Clarity::Server.module_eval do
|
16
|
+
def sanitize_file_location(path)
|
17
|
+
parts = path.split('/')
|
18
|
+
file = parts.pop
|
19
|
+
parts.map! { |part| part.gsub('.', '') }
|
20
|
+
parts << file
|
21
|
+
parts.join('/')
|
22
|
+
end
|
23
|
+
|
24
|
+
def process_http_request_with_fetch
|
25
|
+
return process_http_request_without_fetch unless path == '/fetch'
|
26
|
+
return respond_with(404, "<h1>Not Found</h1>") if params.empty? || (params['path'] || '').empty?
|
27
|
+
|
28
|
+
log_files.each do |base|
|
29
|
+
file = File.join(Bastard::LogRoot, base.split('/').first, sanitize_file_location(params['path']))
|
30
|
+
STDERR.puts "Checking file: #{file}\n"
|
31
|
+
if File.exists?(file)
|
32
|
+
STDERR.puts "Transmitting file: #{file}\n"
|
33
|
+
return respond_with(200, file, :content_type => "text/plain")
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
return respond_with(404, "<h1>Not Found</h1>")
|
38
|
+
end
|
39
|
+
|
40
|
+
alias :process_http_request_without_fetch :process_http_request
|
41
|
+
alias :process_http_request :process_http_request_with_fetch
|
42
|
+
end
|
data/test/helper.rb
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
require 'helper'
|
2
|
+
|
3
|
+
class TestBastard < Test::Unit::TestCase
|
4
|
+
should "properly render matching log lines" do
|
5
|
+
assert_equal "Processing mail <a href='/fetch?path=inbound/here<br/>'>inbound/here<br/></a>\n", MailFileLogRenderer.new.render("Processing mail something/inbound/here")
|
6
|
+
end
|
7
|
+
end
|
metadata
ADDED
@@ -0,0 +1,95 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: bastard
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 29
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 1
|
10
|
+
version: 0.0.1
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Morten Primdahl
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2010-08-31 00:00:00 -07:00
|
19
|
+
default_executable: bastard
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: thoughtbot-shoulda
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 3
|
30
|
+
segments:
|
31
|
+
- 0
|
32
|
+
version: "0"
|
33
|
+
type: :development
|
34
|
+
version_requirements: *id001
|
35
|
+
description: This won't make sense to use anywhere else
|
36
|
+
email: morten@zendesk.com
|
37
|
+
executables:
|
38
|
+
- bastard
|
39
|
+
extensions: []
|
40
|
+
|
41
|
+
extra_rdoc_files:
|
42
|
+
- LICENSE
|
43
|
+
- README.rdoc
|
44
|
+
files:
|
45
|
+
- .document
|
46
|
+
- .gitignore
|
47
|
+
- Gemfile
|
48
|
+
- LICENSE
|
49
|
+
- README.rdoc
|
50
|
+
- Rakefile
|
51
|
+
- VERSION
|
52
|
+
- bastard.gemspec
|
53
|
+
- bin/bastard
|
54
|
+
- config/bastard.yml
|
55
|
+
- lib/bastard.rb
|
56
|
+
- lib/bastard/renderers/mail_file_log_renderer.rb
|
57
|
+
- test/helper.rb
|
58
|
+
- test/test_bastard.rb
|
59
|
+
has_rdoc: true
|
60
|
+
homepage: http://github.com/morten/bastard
|
61
|
+
licenses: []
|
62
|
+
|
63
|
+
post_install_message:
|
64
|
+
rdoc_options:
|
65
|
+
- --charset=UTF-8
|
66
|
+
require_paths:
|
67
|
+
- lib
|
68
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
69
|
+
none: false
|
70
|
+
requirements:
|
71
|
+
- - ">="
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
hash: 3
|
74
|
+
segments:
|
75
|
+
- 0
|
76
|
+
version: "0"
|
77
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
78
|
+
none: false
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
hash: 3
|
83
|
+
segments:
|
84
|
+
- 0
|
85
|
+
version: "0"
|
86
|
+
requirements: []
|
87
|
+
|
88
|
+
rubyforge_project:
|
89
|
+
rubygems_version: 1.3.7
|
90
|
+
signing_key:
|
91
|
+
specification_version: 3
|
92
|
+
summary: A project specific version of Clarity
|
93
|
+
test_files:
|
94
|
+
- test/helper.rb
|
95
|
+
- test/test_bastard.rb
|