ihunter-whatcounts 0.3.2 → 0.3.3
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/whatcounts.rb +15 -15
- metadata +1 -1
data/lib/whatcounts.rb
CHANGED
@@ -1,23 +1,23 @@
|
|
1
1
|
$:.unshift(File.dirname(__FILE__)) unless
|
2
2
|
$:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
|
3
3
|
|
4
|
-
begin
|
5
|
-
|
6
|
-
rescue Exception => e
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
end
|
11
|
-
|
12
|
-
begin
|
13
|
-
|
14
|
-
rescue
|
15
|
-
|
16
|
-
|
17
|
-
end
|
4
|
+
# begin
|
5
|
+
# require 'curb'
|
6
|
+
# rescue Exception => e
|
7
|
+
# puts "curb is required for whatcounts gem\n"
|
8
|
+
# puts "gem install curb"
|
9
|
+
# exit
|
10
|
+
# end
|
11
|
+
#
|
12
|
+
# begin
|
13
|
+
# require 'fastercsv'
|
14
|
+
# rescue
|
15
|
+
# puts "fastercsv is required for whatcounts gem\n"
|
16
|
+
# exit
|
17
|
+
# end
|
18
18
|
|
19
19
|
module WhatCounts
|
20
|
-
VERSION = '0.3.
|
20
|
+
VERSION = '0.3.3'
|
21
21
|
class WhatCountsError < StandardError; end
|
22
22
|
|
23
23
|
class CreationError < WhatCountsError; end
|