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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 99b7d74c7ca0a7d0825593f4b182c01744758bf1
4
- data.tar.gz: feb4c1e1bc818ead9a1b73a624b7119ee39cffed
3
+ metadata.gz: 703e220494854533ef896553a47e69d7eb314875
4
+ data.tar.gz: 2ebf4e304d174cc7310655b071b6b539cb579e36
5
5
  SHA512:
6
- metadata.gz: d87180430d12432ff789d565e44d3c1743426fdf77ed32f8e1bd06fe7e1b16d9f231534f51e880040f4f059def45c5b6e38024c005fae4b4d4c8c480acdf9288
7
- data.tar.gz: 1f722d069ffc23d44f1e080eff47983d9050af10116b6b084d62ea9e3ab2069d57cd2cc711bd2f11fdffa80876b3f2bd90997ab92a20611cc09dbd7c3579d6b5
6
+ metadata.gz: a4b44e48de5406f9e7d7f222ae5ef526e61959bb05eb6bcfafd3ace49fe642b4df5103c851b57102564253bf8e1fb946f81d59b58046b1dcfee0e6b1c68dd5ed
7
+ data.tar.gz: 2267301a5cddece854262a48d39521ddab74d3ec4d5aa117b81545298a2876ae89ecb2e972c98009e2b2e5f11e80a737e11af5ca03e3ec80f3ba81605ec85ca0
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.5.3 (05/17/2016)
2
+
3
+ * Fix sample file generator
4
+
1
5
  ## 0.5.2 (05/17/2016)
2
6
 
3
7
  * Fix require gem error
@@ -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>
@@ -1,3 +1,3 @@
1
1
  module MyDashboard
2
- VERSION = '0.5.2'
2
+ VERSION = '0.5.3'
3
3
  end
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.2
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