my_dashboard 0.5.2 → 0.5.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/app/views/my_dashboard/dashboards/sample.html.erb +24 -0
- data/lib/my_dashboard/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 703e220494854533ef896553a47e69d7eb314875
|
4
|
+
data.tar.gz: 2ebf4e304d174cc7310655b071b6b539cb579e36
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a4b44e48de5406f9e7d7f222ae5ef526e61959bb05eb6bcfafd3ace49fe642b4df5103c851b57102564253bf8e1fb946f81d59b58046b1dcfee0e6b1c68dd5ed
|
7
|
+
data.tar.gz: 2267301a5cddece854262a48d39521ddab74d3ec4d5aa117b81545298a2876ae89ecb2e972c98009e2b2e5f11e80a737e11af5ca03e3ec80f3ba81605ec85ca0
|
data/CHANGELOG.md
CHANGED
@@ -0,0 +1,24 @@
|
|
1
|
+
<div class="gridster">
|
2
|
+
<ul>
|
3
|
+
<li data-row="1" data-col="1" data-sizex="2" data-sizey="1">
|
4
|
+
<div data-id="welcome" data-view="Text" data-title="HUEHUE" data-text="MyDashboard is awesome!." data-moreinfo="Protip: You can drag the widgets around!"></div>
|
5
|
+
</li>
|
6
|
+
|
7
|
+
<li data-row="1" data-col="1" data-sizex="1" data-sizey="1">
|
8
|
+
<div data-id="synergy" data-view="Meter" data-title="Synergy" data-min="0" data-max="100"></div>
|
9
|
+
</li>
|
10
|
+
|
11
|
+
<li data-row="1" data-col="1" data-sizex="1" data-sizey="2">
|
12
|
+
<div data-id="buzzwords" data-view="List" data-unordered="true" data-title="Buzzwords" data-moreinfo="# of times said around the office"></div>
|
13
|
+
</li>
|
14
|
+
|
15
|
+
<li data-row="1" data-col="1" data-sizex="1" data-sizey="1">
|
16
|
+
<div data-id="valuation" data-view="Number" data-title="Current Valuation" data-moreinfo="In billions" data-prefix="$"></div>
|
17
|
+
</li>
|
18
|
+
|
19
|
+
<li data-row="1" data-col="1" data-sizex="2" data-sizey="1">
|
20
|
+
<div data-id="convergence" data-view="Graph" data-title="Convergence" style="background-color:#ff9618"></div>
|
21
|
+
</li>
|
22
|
+
</ul>
|
23
|
+
<center><div style="font-size: 12px">Try this: curl -X PUT 'http://<%= request.host %>:<%= request.port %>/my_dashboard/widgets/welcome' --data "widget%5Btext%5D=MyDashboard+is+awesomecurl"</div></center>
|
24
|
+
</div>
|
data/lib/my_dashboard/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: my_dashboard
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Danilo Vaz
|
@@ -159,6 +159,7 @@ files:
|
|
159
159
|
- app/controllers/my_dashboard/widgets_controller.rb
|
160
160
|
- app/helpers/my_dashboard/application_helper.rb
|
161
161
|
- app/views/layouts/my_dashboard/dashboard.html.erb
|
162
|
+
- app/views/my_dashboard/dashboards/sample.html.erb
|
162
163
|
- app/views/my_dashboard/widgets/clock.html
|
163
164
|
- app/views/my_dashboard/widgets/comments.html
|
164
165
|
- app/views/my_dashboard/widgets/graph.html
|