skinny_jeans 0.6.1 → 0.6.2
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/Rakefile +1 -0
- data/VERSION +1 -1
- data/lib/skinny_jeans/string_parser.rb +2 -0
- data/skinny_jeans.gemspec +3 -2
- metadata +5 -5
data/Rakefile
CHANGED
|
@@ -4,6 +4,7 @@ begin
|
|
|
4
4
|
Jeweler::Tasks.new do |s|
|
|
5
5
|
s.name = "skinny_jeans"
|
|
6
6
|
s.summary = "Fast webserver log parser for persisting daily pageviews per path to sqlite"
|
|
7
|
+
s.description = "Fast webserver log parser for persisting daily pageviews per path to sqlite"
|
|
7
8
|
s.email = "jonathan.otto@gmail.com"
|
|
8
9
|
s.homepage = "http://github.com/jotto/skinny_jeans"
|
|
9
10
|
s.authors = ["Jonathan Otto"]
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.6.
|
|
1
|
+
0.6.2
|
|
@@ -25,6 +25,8 @@ module SkinnyJeans
|
|
|
25
25
|
val=return_param_from_valid_url_or_path(url,"q")
|
|
26
26
|
when /bing\.com/
|
|
27
27
|
val=return_param_from_valid_url_or_path(url,"q")
|
|
28
|
+
when /search\-results\.com/
|
|
29
|
+
val=return_param_from_valid_url_or_path(url,"q")
|
|
28
30
|
end
|
|
29
31
|
# whitelist of acceptable characters
|
|
30
32
|
val = val.present? && val.gsub(/[^0-9A-Za-z\s"'!@#\$%\^&\*\(\)\?\<\>\[\]:;,\.+-_=]/, '') != val ? nil : val
|
data/skinny_jeans.gemspec
CHANGED
|
@@ -5,11 +5,12 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{skinny_jeans}
|
|
8
|
-
s.version = "0.6.
|
|
8
|
+
s.version = "0.6.2"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Jonathan Otto"]
|
|
12
|
-
s.date = %q{2011-01-
|
|
12
|
+
s.date = %q{2011-01-07}
|
|
13
|
+
s.description = %q{Fast webserver log parser for persisting daily pageviews per path to sqlite}
|
|
13
14
|
s.email = %q{jonathan.otto@gmail.com}
|
|
14
15
|
s.extra_rdoc_files = [
|
|
15
16
|
"README.rdoc",
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: skinny_jeans
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 3
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 6
|
|
9
|
-
-
|
|
10
|
-
version: 0.6.
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.6.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Jonathan Otto
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-01-
|
|
18
|
+
date: 2011-01-07 00:00:00 -06:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -50,7 +50,7 @@ dependencies:
|
|
|
50
50
|
version: 2.3.8
|
|
51
51
|
type: :runtime
|
|
52
52
|
version_requirements: *id002
|
|
53
|
-
description:
|
|
53
|
+
description: Fast webserver log parser for persisting daily pageviews per path to sqlite
|
|
54
54
|
email: jonathan.otto@gmail.com
|
|
55
55
|
executables: []
|
|
56
56
|
|