indy 0.1.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/.autotest +18 -0
- data/.gitignore +2 -0
- data/.rspec +1 -0
- data/History.txt +11 -0
- data/README.md +132 -0
- data/Rakefile +68 -0
- data/autotest/discover.rb +2 -0
- data/cucumber.yml +6 -0
- data/features/after_time.feature +41 -0
- data/features/application.feature +33 -0
- data/features/around_time.feature +34 -0
- data/features/before_time.feature +34 -0
- data/features/custom_pattern.feature +52 -0
- data/features/exact_log_level.feature +35 -0
- data/features/exact_message.feature +33 -0
- data/features/exact_mulitple_fields.feature +38 -0
- data/features/exact_time.feature +28 -0
- data/features/file.feature +30 -0
- data/features/log_levels.feature +40 -0
- data/features/message.feature +39 -0
- data/features/multiple_fields.feature +38 -0
- data/features/step_definitions/find_by.steps.rb +55 -0
- data/features/step_definitions/log_file.steps.rb +8 -0
- data/features/step_definitions/support/env.rb +1 -0
- data/features/step_definitions/support/transforms.rb +28 -0
- data/features/step_definitions/test_setup.steps.rb +4 -0
- data/features/step_definitions/test_teardown.steps.rb +0 -0
- data/features/step_definitions/time.steps.rb +29 -0
- data/features/within_time.feature +41 -0
- data/indy.gemspec +61 -0
- data/lib/indy.rb +5 -0
- data/lib/indy/indy.rb +463 -0
- data/lib/indy/result_set.rb +8 -0
- data/performance/helper.rb +5 -0
- data/performance/profile_spec.rb +35 -0
- data/spec/data.log +2 -0
- data/spec/helper.rb +4 -0
- data/spec/indy_spec.rb +212 -0
- data/spec/result_set_spec.rb +9 -0
- data/spec/search_spec.rb +97 -0
- data/spec/time_spec.rb +80 -0
- metadata +126 -0
metadata
ADDED
@@ -0,0 +1,126 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: indy
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 25
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 1
|
9
|
+
- 1
|
10
|
+
version: 0.1.1
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Franklin Webber
|
14
|
+
- Brandon Faloona
|
15
|
+
autorequire:
|
16
|
+
bindir: bin
|
17
|
+
cert_chain: []
|
18
|
+
|
19
|
+
date: 2011-01-13 00:00:00 -08:00
|
20
|
+
default_executable:
|
21
|
+
dependencies:
|
22
|
+
- !ruby/object:Gem::Dependency
|
23
|
+
name: activesupport
|
24
|
+
prerelease: false
|
25
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
26
|
+
none: false
|
27
|
+
requirements:
|
28
|
+
- - ">="
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
hash: 9
|
31
|
+
segments:
|
32
|
+
- 2
|
33
|
+
- 3
|
34
|
+
- 5
|
35
|
+
version: 2.3.5
|
36
|
+
type: :runtime
|
37
|
+
version_requirements: *id001
|
38
|
+
description: " Indy is a log archelogy tool that allows you to search through log files. "
|
39
|
+
email: franklin.webber@gmail.com
|
40
|
+
executables: []
|
41
|
+
|
42
|
+
extensions: []
|
43
|
+
|
44
|
+
extra_rdoc_files:
|
45
|
+
- README.md
|
46
|
+
- History.txt
|
47
|
+
files:
|
48
|
+
- .autotest
|
49
|
+
- .gitignore
|
50
|
+
- .rspec
|
51
|
+
- History.txt
|
52
|
+
- README.md
|
53
|
+
- Rakefile
|
54
|
+
- autotest/discover.rb
|
55
|
+
- cucumber.yml
|
56
|
+
- features/after_time.feature
|
57
|
+
- features/application.feature
|
58
|
+
- features/around_time.feature
|
59
|
+
- features/before_time.feature
|
60
|
+
- features/custom_pattern.feature
|
61
|
+
- features/exact_log_level.feature
|
62
|
+
- features/exact_message.feature
|
63
|
+
- features/exact_mulitple_fields.feature
|
64
|
+
- features/exact_time.feature
|
65
|
+
- features/file.feature
|
66
|
+
- features/log_levels.feature
|
67
|
+
- features/message.feature
|
68
|
+
- features/multiple_fields.feature
|
69
|
+
- features/step_definitions/find_by.steps.rb
|
70
|
+
- features/step_definitions/log_file.steps.rb
|
71
|
+
- features/step_definitions/support/env.rb
|
72
|
+
- features/step_definitions/support/transforms.rb
|
73
|
+
- features/step_definitions/test_setup.steps.rb
|
74
|
+
- features/step_definitions/test_teardown.steps.rb
|
75
|
+
- features/step_definitions/time.steps.rb
|
76
|
+
- features/within_time.feature
|
77
|
+
- indy.gemspec
|
78
|
+
- lib/indy.rb
|
79
|
+
- lib/indy/indy.rb
|
80
|
+
- lib/indy/result_set.rb
|
81
|
+
- performance/helper.rb
|
82
|
+
- performance/profile_spec.rb
|
83
|
+
- spec/data.log
|
84
|
+
- spec/helper.rb
|
85
|
+
- spec/indy_spec.rb
|
86
|
+
- spec/result_set_spec.rb
|
87
|
+
- spec/search_spec.rb
|
88
|
+
- spec/time_spec.rb
|
89
|
+
has_rdoc: true
|
90
|
+
homepage: http://github.com/burtlo/Indy
|
91
|
+
licenses:
|
92
|
+
- MIT
|
93
|
+
post_install_message: "\n [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>]\n\n Thank you for installing Indy 0.1.1 / 2011-01-13.\n\n Changes:\n \n * Scope search by time (after, before, around, or within)\n * Explicit format string can be provided to parse non-standard log times\n * Reopen (or rewind) source for each #search\n * Source parameter creates an IO object (StringIO, File, or Process)\n \n\n [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>] [<>]\n\n "
|
94
|
+
rdoc_options:
|
95
|
+
- --charset=UTF-8
|
96
|
+
require_paths:
|
97
|
+
- lib
|
98
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
99
|
+
none: false
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
hash: 57
|
104
|
+
segments:
|
105
|
+
- 1
|
106
|
+
- 8
|
107
|
+
- 7
|
108
|
+
version: 1.8.7
|
109
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
110
|
+
none: false
|
111
|
+
requirements:
|
112
|
+
- - ">="
|
113
|
+
- !ruby/object:Gem::Version
|
114
|
+
hash: 3
|
115
|
+
segments:
|
116
|
+
- 0
|
117
|
+
version: "0"
|
118
|
+
requirements: []
|
119
|
+
|
120
|
+
rubyforge_project:
|
121
|
+
rubygems_version: 1.4.2
|
122
|
+
signing_key:
|
123
|
+
specification_version: 3
|
124
|
+
summary: Log Search Tool
|
125
|
+
test_files: []
|
126
|
+
|