all_seeing_eye 0.0.9 → 0.0.10
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/all_seeing_eye.gemspec +1 -1
- data/lib/all_seeing_eye/server/views/view.erb +1 -1
- data/lib/all_seeing_eye.rb +2 -0
- metadata +3 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.10
|
data/all_seeing_eye.gemspec
CHANGED
@@ -21,7 +21,7 @@
|
|
21
21
|
grid: { hoverable: true, clickable: true },
|
22
22
|
xaxis: {
|
23
23
|
autoscaleMargin: 0.05,
|
24
|
-
ticks: [ <%= @counts.reverse.enum_for(:each_with_index).collect {|f, i| "[#{i}, '#{f.first.split(' ').join('\n').
|
24
|
+
ticks: [ <%= @counts.reverse.enum_for(:each_with_index).collect {|f, i| "[#{i}, '#{f.first.to_s.split(' ').join('\n').gsub('/','/\n')}']"}.join(',') %> ]
|
25
25
|
},
|
26
26
|
yaxis: {
|
27
27
|
autoscaleMargin: 0.01
|
data/lib/all_seeing_eye.rb
CHANGED
@@ -30,6 +30,8 @@ require 'redis'
|
|
30
30
|
require 'yaml'
|
31
31
|
require 'chronic'
|
32
32
|
require 'rbtree'
|
33
|
+
require 'active_support'
|
34
|
+
require 'active_support/all'
|
33
35
|
require 'all_seeing_eye/model'
|
34
36
|
require 'all_seeing_eye/models/request'
|
35
37
|
require 'all_seeing_eye/integrations/rails2' if defined?(Rails)
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: all_seeing_eye
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 11
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 10
|
10
|
+
version: 0.0.10
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Josh Symonds
|