rickshaw_rails 1.4.3 → 1.4.5
Sign up to get free protection for your applications and to get access to all the features.
- data/app/assets/javascripts/rickshaw.js +2440 -2295
- data/app/assets/stylesheets/rickshaw.css +37 -7
- data/lib/rickshaw_rails/version.rb +1 -1
- metadata +30 -15
- checksums.yaml +0 -7
@@ -28,6 +28,12 @@
|
|
28
28
|
background: white;
|
29
29
|
white-space: nowrap;
|
30
30
|
}
|
31
|
+
.rickshaw_graph .detail .x_label.left {
|
32
|
+
left: 0;
|
33
|
+
}
|
34
|
+
.rickshaw_graph .detail .x_label.right {
|
35
|
+
right: 0;
|
36
|
+
}
|
31
37
|
.rickshaw_graph .detail .item {
|
32
38
|
position: absolute;
|
33
39
|
z-index: 2;
|
@@ -40,25 +46,49 @@
|
|
40
46
|
color: white;
|
41
47
|
border: 1px solid rgba(0, 0, 0, 0.4);
|
42
48
|
margin-left: 1em;
|
49
|
+
margin-right: 1em;
|
43
50
|
margin-top: -1em;
|
44
51
|
white-space: nowrap;
|
45
52
|
}
|
53
|
+
.rickshaw_graph .detail .item.left {
|
54
|
+
left: 0;
|
55
|
+
}
|
56
|
+
.rickshaw_graph .detail .item.right {
|
57
|
+
right: 0;
|
58
|
+
}
|
46
59
|
.rickshaw_graph .detail .item.active {
|
47
60
|
opacity: 1;
|
48
61
|
background: rgba(0, 0, 0, 0.8);
|
49
62
|
}
|
50
|
-
.rickshaw_graph .detail .item:
|
51
|
-
content: "\25c2";
|
63
|
+
.rickshaw_graph .detail .item:after {
|
52
64
|
position: absolute;
|
53
|
-
|
54
|
-
color: rgba(0, 0, 0, 0.7);
|
65
|
+
display: block;
|
55
66
|
width: 0;
|
67
|
+
height: 0;
|
68
|
+
|
69
|
+
content: "";
|
70
|
+
|
71
|
+
border: 5px solid transparent;
|
72
|
+
}
|
73
|
+
.rickshaw_graph .detail .item.left:after {
|
74
|
+
top: 1em;
|
75
|
+
left: -5px;
|
76
|
+
margin-top: -5px;
|
77
|
+
border-right-color: rgba(0, 0, 0, 0.8);
|
78
|
+
border-left-width: 0;
|
79
|
+
}
|
80
|
+
.rickshaw_graph .detail .item.right:after {
|
81
|
+
top: 1em;
|
82
|
+
right: -5px;
|
83
|
+
margin-top: -5px;
|
84
|
+
border-left-color: rgba(0, 0, 0, 0.8);
|
85
|
+
border-right-width: 0;
|
56
86
|
}
|
57
87
|
.rickshaw_graph .detail .dot {
|
58
88
|
width: 4px;
|
59
89
|
height: 4px;
|
60
|
-
margin-left: -
|
61
|
-
margin-top: -
|
90
|
+
margin-left: -2px;
|
91
|
+
margin-top: -2px;
|
62
92
|
border-radius: 5px;
|
63
93
|
position: absolute;
|
64
94
|
box-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
|
@@ -317,4 +347,4 @@
|
|
317
347
|
.rickshaw_legend li:active {
|
318
348
|
background: rgba(255, 255, 255, 0.2);
|
319
349
|
border-radius: 3px;
|
320
|
-
}
|
350
|
+
}
|
metadata
CHANGED
@@ -1,59 +1,67 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rickshaw_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.
|
4
|
+
version: 1.4.5
|
5
|
+
prerelease:
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
8
|
- Han Kang
|
8
9
|
- toreriklinnerud
|
10
|
+
- phillbaker
|
9
11
|
autorequire:
|
10
12
|
bindir: bin
|
11
13
|
cert_chain: []
|
12
|
-
date:
|
14
|
+
date: 2014-01-08 00:00:00.000000000 Z
|
13
15
|
dependencies:
|
14
16
|
- !ruby/object:Gem::Dependency
|
15
17
|
name: railties
|
16
18
|
requirement: !ruby/object:Gem::Requirement
|
19
|
+
none: false
|
17
20
|
requirements:
|
18
|
-
- - '>='
|
21
|
+
- - ! '>='
|
19
22
|
- !ruby/object:Gem::Version
|
20
23
|
version: 3.1.0
|
21
24
|
type: :runtime
|
22
25
|
prerelease: false
|
23
26
|
version_requirements: !ruby/object:Gem::Requirement
|
27
|
+
none: false
|
24
28
|
requirements:
|
25
|
-
- - '>='
|
29
|
+
- - ! '>='
|
26
30
|
- !ruby/object:Gem::Version
|
27
31
|
version: 3.1.0
|
28
32
|
- !ruby/object:Gem::Dependency
|
29
33
|
name: bundler
|
30
34
|
requirement: !ruby/object:Gem::Requirement
|
35
|
+
none: false
|
31
36
|
requirements:
|
32
|
-
- - '>='
|
37
|
+
- - ! '>='
|
33
38
|
- !ruby/object:Gem::Version
|
34
39
|
version: 1.0.0
|
35
40
|
type: :development
|
36
41
|
prerelease: false
|
37
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
none: false
|
38
44
|
requirements:
|
39
|
-
- - '>='
|
45
|
+
- - ! '>='
|
40
46
|
- !ruby/object:Gem::Version
|
41
47
|
version: 1.0.0
|
42
48
|
- !ruby/object:Gem::Dependency
|
43
49
|
name: rails
|
44
50
|
requirement: !ruby/object:Gem::Requirement
|
51
|
+
none: false
|
45
52
|
requirements:
|
46
|
-
- - '>='
|
53
|
+
- - ! '>='
|
47
54
|
- !ruby/object:Gem::Version
|
48
55
|
version: '3.1'
|
49
56
|
type: :development
|
50
57
|
prerelease: false
|
51
58
|
version_requirements: !ruby/object:Gem::Requirement
|
59
|
+
none: false
|
52
60
|
requirements:
|
53
|
-
- - '>='
|
61
|
+
- - ! '>='
|
54
62
|
- !ruby/object:Gem::Version
|
55
63
|
version: '3.1'
|
56
|
-
description: ' Rickshaw, a javascript graphing library based on d3, for the rails
|
64
|
+
description: ! ' Rickshaw, a javascript graphing library based on d3, for the rails
|
57
65
|
asset pipeline '
|
58
66
|
email:
|
59
67
|
- han@logicallsat.com
|
@@ -68,28 +76,35 @@ files:
|
|
68
76
|
- app/assets/javascripts/rickshaw.js
|
69
77
|
- app/assets/javascripts/rickshaw_with_d3.js
|
70
78
|
- app/assets/stylesheets/rickshaw.css
|
71
|
-
homepage:
|
79
|
+
homepage: https://github.com/logical42/rickshaw_rails
|
72
80
|
licenses: []
|
73
|
-
metadata: {}
|
74
81
|
post_install_message:
|
75
82
|
rdoc_options: []
|
76
83
|
require_paths:
|
77
84
|
- lib
|
78
85
|
- app
|
79
86
|
required_ruby_version: !ruby/object:Gem::Requirement
|
87
|
+
none: false
|
80
88
|
requirements:
|
81
|
-
- - '>='
|
89
|
+
- - ! '>='
|
82
90
|
- !ruby/object:Gem::Version
|
83
91
|
version: '0'
|
92
|
+
segments:
|
93
|
+
- 0
|
94
|
+
hash: 635075253950041312
|
84
95
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
96
|
+
none: false
|
85
97
|
requirements:
|
86
|
-
- - '>='
|
98
|
+
- - ! '>='
|
87
99
|
- !ruby/object:Gem::Version
|
88
100
|
version: '0'
|
101
|
+
segments:
|
102
|
+
- 0
|
103
|
+
hash: 635075253950041312
|
89
104
|
requirements: []
|
90
105
|
rubyforge_project:
|
91
|
-
rubygems_version:
|
106
|
+
rubygems_version: 1.8.23
|
92
107
|
signing_key:
|
93
|
-
specification_version:
|
108
|
+
specification_version: 3
|
94
109
|
summary: Gem installation of javascript framework for data visualization, D3
|
95
110
|
test_files: []
|
checksums.yaml
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
---
|
2
|
-
SHA1:
|
3
|
-
metadata.gz: ba8903495a03dcd274e53a44f21783aab8ebd1b9
|
4
|
-
data.tar.gz: 8f9dcd20c487b7587cb1f9a1032d95744299ef5e
|
5
|
-
SHA512:
|
6
|
-
metadata.gz: b4c5db9d0de90fab6c9ffeae74e03b189153b19b375c3daa9e87b5c70e43cf93b1e6dd7efbb103b1bac36005b5dcf1cda165323d39ef996d5d27d7b8d14e665e
|
7
|
-
data.tar.gz: ec2f33ada05a7417ab5a5a268240c5701e2c1ccb21f5e35958a3c59eac95ad17a1e26543ecdd1115c384eda6f2b5b6f6302dc32750669c96d7dc62b19d4a1fde
|