right_support 0.9.4 → 0.9.8
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/lib/right_support/cassandra_model.rb +3 -0
- data/lib/right_support/db/cassandra_model.rb +129 -0
- data/lib/right_support/db.rb +34 -0
- data/lib/right_support/filter_logger.rb +1 -120
- data/lib/right_support/log/filter_logger.rb +122 -0
- data/lib/right_support/log/system_logger.rb +176 -0
- data/lib/right_support/log/tag_logger.rb +72 -0
- data/lib/right_support/log.rb +34 -0
- data/lib/right_support/net/address_helper.rb +125 -0
- data/lib/right_support/net/request_balancer/policy.rb +14 -0
- data/lib/right_support/net/request_balancer/round_robin.rb +7 -0
- data/lib/right_support/net/request_balancer.rb +16 -5
- data/lib/right_support/net.rb +2 -0
- data/lib/right_support/rack/custom_logger.rb +29 -33
- data/lib/right_support/rack.rb +34 -0
- data/lib/right_support/{kernel_extensions.rb → ruby/object_extensions.rb} +3 -3
- data/lib/right_support/ruby.rb +34 -0
- data/lib/right_support/system_logger.rb +2 -175
- data/lib/right_support/tag_logger.rb +1 -70
- data/lib/right_support.rb +10 -6
- data/right_support.gemspec +2 -2
- metadata +17 -5
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: right_support
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 43
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 9
|
9
|
-
-
|
10
|
-
version: 0.9.
|
9
|
+
- 8
|
10
|
+
version: 0.9.8
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Tony Spataro
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
18
|
+
date: 2011-08-13 00:00:00 -07:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -136,12 +136,24 @@ files:
|
|
136
136
|
- LICENSE
|
137
137
|
- README.rdoc
|
138
138
|
- lib/right_support.rb
|
139
|
+
- lib/right_support/cassandra_model.rb
|
140
|
+
- lib/right_support/db.rb
|
141
|
+
- lib/right_support/db/cassandra_model.rb
|
139
142
|
- lib/right_support/filter_logger.rb
|
140
|
-
- lib/right_support/
|
143
|
+
- lib/right_support/log.rb
|
144
|
+
- lib/right_support/log/filter_logger.rb
|
145
|
+
- lib/right_support/log/system_logger.rb
|
146
|
+
- lib/right_support/log/tag_logger.rb
|
141
147
|
- lib/right_support/net.rb
|
148
|
+
- lib/right_support/net/address_helper.rb
|
142
149
|
- lib/right_support/net/request_balancer.rb
|
150
|
+
- lib/right_support/net/request_balancer/policy.rb
|
151
|
+
- lib/right_support/net/request_balancer/round_robin.rb
|
143
152
|
- lib/right_support/net/rest.rb
|
153
|
+
- lib/right_support/rack.rb
|
144
154
|
- lib/right_support/rack/custom_logger.rb
|
155
|
+
- lib/right_support/ruby.rb
|
156
|
+
- lib/right_support/ruby/object_extensions.rb
|
145
157
|
- lib/right_support/system_logger.rb
|
146
158
|
- lib/right_support/tag_logger.rb
|
147
159
|
- lib/right_support/validation.rb
|