helios 0.0.1 → 0.0.2

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.
Files changed (69) hide show
  1. data/Gemfile.lock +82 -37
  2. data/README.md +16 -0
  3. data/bin/helios +4 -0
  4. data/example/Gemfile +7 -0
  5. data/example/Gemfile.lock +149 -0
  6. data/example/Procfile +1 -0
  7. data/example/Sample.xcdatamodeld/Sample.xcdatamodel/contents +23 -0
  8. data/example/config.ru +6 -0
  9. data/helios.gemspec +17 -7
  10. data/lib/helios.rb +15 -1
  11. data/lib/helios/backend.rb +46 -0
  12. data/lib/helios/backend/data.rb +36 -0
  13. data/lib/helios/backend/in-app-purchase.rb +33 -0
  14. data/lib/helios/backend/passbook.rb +25 -0
  15. data/lib/helios/backend/push-notification.rb +90 -0
  16. data/lib/helios/commands.rb +1 -0
  17. data/lib/helios/commands/new.rb +27 -0
  18. data/lib/helios/frontend.rb +56 -0
  19. data/lib/helios/frontend/images/data.png +0 -0
  20. data/lib/helios/frontend/images/data.svg +1 -0
  21. data/lib/helios/frontend/images/in-app-purchase.png +0 -0
  22. data/lib/helios/frontend/images/in-app-purchase.svg +1 -0
  23. data/lib/helios/frontend/images/passbook.png +0 -0
  24. data/lib/helios/frontend/images/passbook.svg +1 -0
  25. data/lib/helios/frontend/images/push-notification.png +0 -0
  26. data/lib/helios/frontend/images/push-notification.svg +1 -0
  27. data/lib/helios/frontend/javascripts/foundation/foundation.alerts.js +50 -0
  28. data/lib/helios/frontend/javascripts/foundation/foundation.clearing.js +478 -0
  29. data/lib/helios/frontend/javascripts/foundation/foundation.cookie.js +74 -0
  30. data/lib/helios/frontend/javascripts/foundation/foundation.dropdown.js +122 -0
  31. data/lib/helios/frontend/javascripts/foundation/foundation.forms.js +403 -0
  32. data/lib/helios/frontend/javascripts/foundation/foundation.joyride.js +613 -0
  33. data/lib/helios/frontend/javascripts/foundation/foundation.js +331 -0
  34. data/lib/helios/frontend/javascripts/foundation/foundation.magellan.js +130 -0
  35. data/lib/helios/frontend/javascripts/foundation/foundation.orbit.js +355 -0
  36. data/lib/helios/frontend/javascripts/foundation/foundation.placeholder.js +159 -0
  37. data/lib/helios/frontend/javascripts/foundation/foundation.reveal.js +272 -0
  38. data/lib/helios/frontend/javascripts/foundation/foundation.section.js +183 -0
  39. data/lib/helios/frontend/javascripts/foundation/foundation.tooltips.js +195 -0
  40. data/lib/helios/frontend/javascripts/foundation/foundation.topbar.js +208 -0
  41. data/lib/helios/frontend/javascripts/helios.coffee +48 -0
  42. data/lib/helios/frontend/javascripts/helios/collections.coffee +30 -0
  43. data/lib/helios/frontend/javascripts/helios/models.coffee +23 -0
  44. data/lib/helios/frontend/javascripts/helios/router.coffee +52 -0
  45. data/lib/helios/frontend/javascripts/helios/views.coffee +92 -0
  46. data/lib/helios/frontend/javascripts/vendor/backbone.datagrid.js +662 -0
  47. data/lib/helios/frontend/javascripts/vendor/backbone.js +1487 -0
  48. data/lib/helios/frontend/javascripts/vendor/jquery.js +9597 -0
  49. data/lib/helios/frontend/javascripts/vendor/underscore.js +1227 -0
  50. data/lib/helios/frontend/stylesheets/_settings.scss +988 -0
  51. data/lib/helios/frontend/stylesheets/screen.sass +98 -0
  52. data/lib/helios/frontend/templates/data/entities.hbs +7 -0
  53. data/lib/helios/frontend/templates/data/entity.hbs +17 -0
  54. data/lib/helios/frontend/templates/in-app-purchase/receipt.hbs +53 -0
  55. data/lib/helios/frontend/templates/in-app-purchase/receipts.hbs +39 -0
  56. data/lib/helios/frontend/templates/passbook/passes.hbs +25 -0
  57. data/lib/helios/frontend/templates/push-notification/device.hbs +35 -0
  58. data/lib/helios/frontend/templates/push-notification/devices.hbs +37 -0
  59. data/lib/helios/frontend/views/devices.jst.tpl +3 -0
  60. data/lib/helios/frontend/views/entities.jst.tpl +9 -0
  61. data/lib/helios/frontend/views/index.haml +30 -0
  62. data/lib/helios/frontend/views/passes.jst.tpl +3 -0
  63. data/lib/helios/frontend/views/receipts.jst.tpl +3 -0
  64. data/lib/helios/templates/Gemfile.erb +7 -0
  65. data/lib/helios/templates/Procfile.erb +1 -0
  66. data/lib/helios/templates/README.md.erb +9 -0
  67. data/lib/helios/templates/config.ru.erb +6 -0
  68. data/lib/helios/version.rb +3 -0
  69. metadata +199 -26
@@ -0,0 +1,98 @@
1
+ @import "compass/reset"
2
+ +global-reset
3
+
4
+ @import "foundation/foundation-global"
5
+ @import "foundation"
6
+
7
+ [role="application"]
8
+ +grid-row
9
+
10
+ [role="banner"]
11
+ +grid-row($behavior: nest)
12
+ #logo
13
+ font-family: "Bariol"
14
+ +grid-column(4, $float: left)
15
+
16
+ [role="navigation"]
17
+ +grid-column(8, $float: right, $last-column: true)
18
+ +grid-row($behavior: nest-collapse)
19
+
20
+ ul
21
+ +block-grid(4)
22
+
23
+ li, a
24
+ display: block
25
+
26
+ li
27
+ a
28
+ padding-top: 50px
29
+
30
+ &.data a
31
+ background: url("../images/data.png") center center no-repeat
32
+ &.push-notification a
33
+ background: url("../images/push-notification.png") center center no-repeat
34
+ &.in-app-purchase a
35
+ background: url("../images/in-app-purchase.png") center center no-repeat
36
+ &.passbook a
37
+ background: url("../images/passbook.png") center center no-repeat
38
+ a
39
+ text-align: center
40
+ font-size: 0.825em
41
+ display: block
42
+ height: 60px
43
+
44
+ [role="main"]
45
+ +grid-row($behavior: nest-collapse)
46
+
47
+ .auxiliary
48
+ +grid-row($behavior: nest-collapse)
49
+ margin: 1em 0
50
+ input[type="search"]
51
+ +grid-column(4, $float: right)
52
+ font-size: 1.25em
53
+ select#entities
54
+ +grid-column(4, $float: left)
55
+
56
+ .master
57
+ +grid-column(8, $float: left)
58
+
59
+ table
60
+ display: block
61
+ table-layout: fixed
62
+ width: 100%
63
+ overflow: auto
64
+
65
+ tr td
66
+ max-width: 240px
67
+ white-space: nowrap
68
+ overflow: auto
69
+
70
+ div
71
+ max-height: 4.5em
72
+ overflow: auto
73
+ white-space: pre-wrap
74
+
75
+ .pagination
76
+ +grid-row($behavior: nest-collapse)
77
+ +pagination
78
+
79
+ ul
80
+ +grid-column(10, $center: true)
81
+
82
+ .detail
83
+ +grid-column(4, $float: left, $last-column: true)
84
+ +panel
85
+ form
86
+ fieldset
87
+ border: 0
88
+ padding: 0
89
+ ol
90
+ list-style: none
91
+ padding: 0
92
+ margin: 0
93
+
94
+ li
95
+ +grid-row
96
+
97
+ button, input[type="submit"]
98
+ +button
@@ -0,0 +1,7 @@
1
+ <h2>ENTITIES</h2>
2
+
3
+ <h3>{{this}}</h3>
4
+
5
+ {{#each models}}
6
+ <p>asdf{{this}}</p>
7
+ {{/each}}
@@ -0,0 +1,17 @@
1
+ <article class="master">
2
+ <h2>Records {{name}}</h2>
3
+ <table>
4
+ <thead>
5
+ <tr>
6
+ {{#each attributes}}
7
+ <th>{{this}}</th>
8
+ {{/each}}
9
+ </tr>
10
+ </thead>
11
+ <tbody>
12
+ {{#each record in records}}
13
+ {{view recordView contentBinding="record"}}
14
+ {{/each}}
15
+ </tbody>
16
+ </table>
17
+ </article>
@@ -0,0 +1,53 @@
1
+ <form>
2
+ <fieldset>
3
+ <ol>
4
+ <li>
5
+ <label>Transaction ID</label>
6
+ {{view Ember.TextField valueBinding="transaction_id"}}
7
+ </li>
8
+ <li>
9
+ <label>Product ID</label>
10
+ {{view Ember.TextField valueBinding="product_id"}}
11
+ </li>
12
+ <li>
13
+ <label>Purchase Date</label>
14
+ {{view Ember.TextField valueBinding="purchase_date"}}
15
+ </li>
16
+ <li>
17
+ <label>App Item ID</label>
18
+ {{view Ember.TextField valueBinding="app_item_id"}}
19
+ </li>
20
+ <li>
21
+ <label>Version External Identifier</label>
22
+ {{view Ember.TextField valueBinding="version_external_identifier"}}
23
+ </li>
24
+ <li>
25
+ <label>BID</label>
26
+ {{view Ember.TextField valueBinding="bid"}}
27
+ </li>
28
+ <li>
29
+ <label>BVRS</label>
30
+ {{view Ember.TextField valueBinding="bvrs"}}
31
+ </li>
32
+ <li>
33
+ <label>IP Address</label>
34
+ {{view Ember.TextField valueBinding="ip_address"}}
35
+ </li>
36
+ </ol>
37
+ </fieldset>
38
+
39
+ <fieldset>
40
+ <ol>
41
+ <li>
42
+ <label>Original Transaction ID</label>
43
+ {{view Ember.TextField valueBinding="original_transaction_id"}}
44
+ </li>
45
+ <li>
46
+ <label>Original Transaction Date</label>
47
+ {{view Ember.TextField valueBinding="original_purchase_date"}}
48
+ </li>
49
+ </ol>
50
+ </fieldset>
51
+
52
+ <button>Save</button>
53
+ </form>
@@ -0,0 +1,39 @@
1
+ <article class="master">
2
+ <h2>Receipts</h2>
3
+ <table>
4
+ <thead>
5
+ <tr>
6
+ <th>Product ID</th>
7
+ <th>Transaction ID</th>
8
+ <th>Purchase Date</th>
9
+ <th>Original Transaction ID</th>
10
+ <th>Original Purchase Date</th>
11
+ <th>App Item ID</th>
12
+ <th>Version External Identifier</th>
13
+ <th>BID</th>
14
+ <th>BVRS</th>
15
+ <th>IP Address</th>
16
+ </tr>
17
+ </thead>
18
+ <tbody>
19
+ {{#each controller}}
20
+ <tr>
21
+ <td>{{#linkTo "receipt" this}} {{transaction_id}} {{/linkTo}}</td>
22
+ <td>{{product_id}}</td>
23
+ <td>{{purchase_date}}</td>
24
+ <td>{{original_transaction_id}}</td>
25
+ <td>{{original_purchase_date}}</td>
26
+ <td>{{app_item_id}}</td>
27
+ <td>{{version_external_identifier}}</td>
28
+ <td>{{bid}}</td>
29
+ <td>{{bvrs}}</td>
30
+ <td>{{ip_address}}</td>
31
+ </tr>
32
+ {{/each}}
33
+ </tbody>
34
+ </table>
35
+ </article>
36
+
37
+ <aside class="detail">
38
+ {{outlet}}
39
+ </aside>
@@ -0,0 +1,25 @@
1
+ <article class="master">
2
+ <h2>Passes</h2>
3
+ <table>
4
+ <thead>
5
+ <tr>
6
+ <th>Pass Type Identifier</th>
7
+ <th>Serial Number</th>
8
+ <th>Authentication Token</th>
9
+ </tr>
10
+ </thead>
11
+ <tbody>
12
+ {{#each controller}}
13
+ <tr>
14
+ <td>{{pass_type_identifier}}</td>
15
+ <td>{{serial_number}}</td>
16
+ <td>{{authentication_token}}</td>
17
+ </tr>
18
+ {{/each}}
19
+ </tbody>
20
+ </table>
21
+ </article>
22
+
23
+ <aside class="detail">
24
+ {{outlet}}
25
+ </aside>
@@ -0,0 +1,35 @@
1
+ <form>
2
+ <fieldset>
3
+ <ol>
4
+ <li>
5
+ <label>Token</label>
6
+ {{view Ember.TextField valueBinding="token"}}
7
+ </li>
8
+ <li>
9
+ <label>Alias</label>
10
+ {{view Ember.TextField valueBinding="alias"}}
11
+ </li>
12
+ <li>
13
+ <label>Badge</label>
14
+ {{view Ember.TextField valueBinding="badge"}}
15
+ </li>
16
+ <li>
17
+ <label>Locale</label>
18
+ {{view Ember.TextField valueBinding="locale"}}
19
+ </li>
20
+ <li>
21
+ <label>Language</label>
22
+ {{view Ember.TextField valueBinding="language"}}
23
+ </li>
24
+ <li>
25
+ <label>Timezone</label>
26
+ {{view Ember.TextField valueBinding="timezone"}}
27
+ </li>
28
+ <li>
29
+ <label>IP Address</label>
30
+ {{view Ember.TextField valueBinding="ip_address"}}
31
+ </li>
32
+ </ol>
33
+ </fieldset>
34
+ <button>Save</button>
35
+ </form>
@@ -0,0 +1,37 @@
1
+ <article class="master">
2
+ <h2>Devices</h2>
3
+ <table>
4
+ <thead>
5
+ <tr>
6
+ <th>Token</th>
7
+ <th>Alias</th>
8
+ <th>Badge</th>
9
+ <th>Locale</th>
10
+ <th>Language</th>
11
+ <th>Timezone</th>
12
+ <th>IP Address</th>
13
+ <th>Latitude</th>
14
+ <th>Longitude</th>
15
+ </tr>
16
+ </thead>
17
+ <tbody>
18
+ {{#each controller}}
19
+ <tr>
20
+ <td>{{#linkTo "device" this}} {{token}} {{/linkTo}}</td>
21
+ <td>{{alias}}</td>
22
+ <td>{{badge}}</td>
23
+ <td>{{locale}}</td>
24
+ <td>{{language}}</td>
25
+ <td>{{timezone}}</td>
26
+ <td>{{ip_address}}</td>
27
+ <td>{{lat}}</td>
28
+ <td>{{lng}}</td>
29
+ </tr>
30
+ {{/each}}
31
+ </tbody>
32
+ </table>
33
+ </article>
34
+
35
+ <aside class="detail">
36
+ {{outlet}}
37
+ </aside>
@@ -0,0 +1,3 @@
1
+ <h2>Devices</h2>
2
+
3
+ <div id="datagrid" class="master"></div>
@@ -0,0 +1,9 @@
1
+ <div class="auxiliary">
2
+ <select id="entities">
3
+ <% _.each(entities.models, function(entity) { %>
4
+ <option value="<%= entity.url() %>"><%= entity.get('name') %></option>
5
+ <% }) %>
6
+ </select>
7
+ </div>
8
+
9
+ <div id="datagrid" class="master"></div>
@@ -0,0 +1,30 @@
1
+ !!! 5
2
+ %html{lang: "en"}
3
+ %head
4
+ %meta{charset: "utf-8"}
5
+ %meta{:'http-equiv' => "X-UA-Compatible", content: "IE=edge,chrome=1"}
6
+ %title Helios
7
+ %link{rel: "shortcut icon", href: "/favicon.ico", type: "image/x-icon"}
8
+ %link{rel: "license", href: "http://opensource.org/licenses/MIT", :title => "MIT License"}
9
+ %link{rel: "description", href: "Helios"}
10
+ = css :application
11
+
12
+ %body{role: 'application'}
13
+ %header{role: 'banner'}
14
+ %h1#logo
15
+ %a{href: ''} Helios
16
+
17
+ %nav{role: 'navigation'}
18
+ %ul
19
+ - for service in ['Data', 'Push Notification', 'In-App Purchase', 'Passbook']
20
+ - slug = service.downcase.gsub(/\W/, '-')
21
+ %li{class: slug}
22
+ %a{href: "##{slug}"}= service
23
+
24
+ %div{role: 'main'}
25
+
26
+ / %footer
27
+ / %p= "Helios #{Helios::VERSION}"
28
+
29
+
30
+ = js :application
@@ -0,0 +1,3 @@
1
+ <h2>Passes</h2>
2
+
3
+ <div id="datagrid" class="master"></div>
@@ -0,0 +1,3 @@
1
+ <h2>Receipts</h2>
2
+
3
+ <div id="datagrid" class="master"></div>
@@ -0,0 +1,7 @@
1
+ source "https://rubygems.org"
2
+
3
+ gem 'helios', path: "/Users/mattt/Code/Ruby/helios"
4
+
5
+ gem 'pg'
6
+
7
+ gem 'thin', '~>1.4.1'
@@ -0,0 +1 @@
1
+ web: bundle exec thin start -p $PORT
@@ -0,0 +1,9 @@
1
+ Welcome to Helios
2
+ =================
3
+
4
+ Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
5
+ tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
6
+ quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
7
+ consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
8
+ cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
9
+ proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
@@ -0,0 +1,6 @@
1
+ require 'bundler'
2
+ Bundler.require
3
+
4
+ DB = Sequel.connect(ENV['DATABASE_URL'] || "postgres://localhost")
5
+
6
+ run Helios::Application.new
@@ -0,0 +1,3 @@
1
+ module Helios
2
+ VERSION = "0.0.2"
3
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: helios
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-01-10 00:00:00.000000000 Z
12
+ date: 2013-03-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: commander
16
- requirement: &70250121236460 !ruby/object:Gem::Requirement
16
+ requirement: &70152669851100 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,43 +21,54 @@ dependencies:
21
21
  version: 4.1.2
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70250121236460
24
+ version_requirements: *70152669851100
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: rack-core-data
27
- requirement: &70250121255760 !ruby/object:Gem::Requirement
27
+ requirement: &70152669850440 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ~>
31
31
  - !ruby/object:Gem::Version
32
- version: 0.1.0
32
+ version: '0.2'
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *70250121255760
35
+ version_requirements: *70152669850440
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: rack-push-notification
38
- requirement: &70250121254160 !ruby/object:Gem::Requirement
38
+ requirement: &70152669849960 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ~>
42
42
  - !ruby/object:Gem::Version
43
- version: 0.1.0
43
+ version: '0.2'
44
44
  type: :runtime
45
45
  prerelease: false
46
- version_requirements: *70250121254160
46
+ version_requirements: *70152669849960
47
+ - !ruby/object:Gem::Dependency
48
+ name: rack-in-app-purchase
49
+ requirement: &70152669865760 !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: 0.0.2
55
+ type: :runtime
56
+ prerelease: false
57
+ version_requirements: *70152669865760
47
58
  - !ruby/object:Gem::Dependency
48
59
  name: rack-passbook
49
- requirement: &70250121267900 !ruby/object:Gem::Requirement
60
+ requirement: &70152669865260 !ruby/object:Gem::Requirement
50
61
  none: false
51
62
  requirements:
52
63
  - - ~>
53
64
  - !ruby/object:Gem::Version
54
- version: 0.0.1
65
+ version: 0.0.2
55
66
  type: :runtime
56
67
  prerelease: false
57
- version_requirements: *70250121267900
68
+ version_requirements: *70152669865260
58
69
  - !ruby/object:Gem::Dependency
59
70
  name: rack-smart-app-banner
60
- requirement: &70250121266000 !ruby/object:Gem::Requirement
71
+ requirement: &70152669864760 !ruby/object:Gem::Requirement
61
72
  none: false
62
73
  requirements:
63
74
  - - ~>
@@ -65,40 +76,139 @@ dependencies:
65
76
  version: 0.0.1
66
77
  type: :runtime
67
78
  prerelease: false
68
- version_requirements: *70250121266000
79
+ version_requirements: *70152669864760
69
80
  - !ruby/object:Gem::Dependency
70
81
  name: json
71
- requirement: &70250121264160 !ruby/object:Gem::Requirement
82
+ requirement: &70152669864240 !ruby/object:Gem::Requirement
83
+ none: false
84
+ requirements:
85
+ - - ~>
86
+ - !ruby/object:Gem::Version
87
+ version: '1.7'
88
+ type: :runtime
89
+ prerelease: false
90
+ version_requirements: *70152669864240
91
+ - !ruby/object:Gem::Dependency
92
+ name: coffee-script
93
+ requirement: &70152669863780 !ruby/object:Gem::Requirement
94
+ none: false
95
+ requirements:
96
+ - - ~>
97
+ - !ruby/object:Gem::Version
98
+ version: '2.2'
99
+ type: :runtime
100
+ prerelease: false
101
+ version_requirements: *70152669863780
102
+ - !ruby/object:Gem::Dependency
103
+ name: sinatra
104
+ requirement: &70152669863320 !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ~>
108
+ - !ruby/object:Gem::Version
109
+ version: '1.3'
110
+ type: :runtime
111
+ prerelease: false
112
+ version_requirements: *70152669863320
113
+ - !ruby/object:Gem::Dependency
114
+ name: sinatra-assetpack
115
+ requirement: &70152669862860 !ruby/object:Gem::Requirement
116
+ none: false
117
+ requirements:
118
+ - - ~>
119
+ - !ruby/object:Gem::Version
120
+ version: '0.1'
121
+ type: :runtime
122
+ prerelease: false
123
+ version_requirements: *70152669862860
124
+ - !ruby/object:Gem::Dependency
125
+ name: sinatra-backbone
126
+ requirement: &70152669862380 !ruby/object:Gem::Requirement
127
+ none: false
128
+ requirements:
129
+ - - ~>
130
+ - !ruby/object:Gem::Version
131
+ version: 0.1.0.rc2
132
+ type: :runtime
133
+ prerelease: false
134
+ version_requirements: *70152669862380
135
+ - !ruby/object:Gem::Dependency
136
+ name: sinatra-param
137
+ requirement: &70152669861800 !ruby/object:Gem::Requirement
138
+ none: false
139
+ requirements:
140
+ - - ~>
141
+ - !ruby/object:Gem::Version
142
+ version: '0.1'
143
+ type: :runtime
144
+ prerelease: false
145
+ version_requirements: *70152669861800
146
+ - !ruby/object:Gem::Dependency
147
+ name: sinatra-support
148
+ requirement: &70152669861200 !ruby/object:Gem::Requirement
149
+ none: false
150
+ requirements:
151
+ - - ~>
152
+ - !ruby/object:Gem::Version
153
+ version: '1.2'
154
+ type: :runtime
155
+ prerelease: false
156
+ version_requirements: *70152669861200
157
+ - !ruby/object:Gem::Dependency
158
+ name: haml
159
+ requirement: &70152669860580 !ruby/object:Gem::Requirement
160
+ none: false
161
+ requirements:
162
+ - - ~>
163
+ - !ruby/object:Gem::Version
164
+ version: '3.1'
165
+ type: :runtime
166
+ prerelease: false
167
+ version_requirements: *70152669860580
168
+ - !ruby/object:Gem::Dependency
169
+ name: compass
170
+ requirement: &70152669859800 !ruby/object:Gem::Requirement
171
+ none: false
172
+ requirements:
173
+ - - ~>
174
+ - !ruby/object:Gem::Version
175
+ version: '0.12'
176
+ type: :runtime
177
+ prerelease: false
178
+ version_requirements: *70152669859800
179
+ - !ruby/object:Gem::Dependency
180
+ name: zurb-foundation
181
+ requirement: &70152669859340 !ruby/object:Gem::Requirement
72
182
  none: false
73
183
  requirements:
74
184
  - - ~>
75
185
  - !ruby/object:Gem::Version
76
- version: 1.7.3
186
+ version: '4.0'
77
187
  type: :runtime
78
188
  prerelease: false
79
- version_requirements: *70250121264160
189
+ version_requirements: *70152669859340
80
190
  - !ruby/object:Gem::Dependency
81
191
  name: rspec
82
- requirement: &70250121286240 !ruby/object:Gem::Requirement
192
+ requirement: &70152669858680 !ruby/object:Gem::Requirement
83
193
  none: false
84
194
  requirements:
85
195
  - - ~>
86
196
  - !ruby/object:Gem::Version
87
- version: 0.6.1
197
+ version: '0.6'
88
198
  type: :development
89
199
  prerelease: false
90
- version_requirements: *70250121286240
200
+ version_requirements: *70152669858680
91
201
  - !ruby/object:Gem::Dependency
92
202
  name: rake
93
- requirement: &70250121284040 !ruby/object:Gem::Requirement
203
+ requirement: &70152669858220 !ruby/object:Gem::Requirement
94
204
  none: false
95
205
  requirements:
96
206
  - - ~>
97
207
  - !ruby/object:Gem::Version
98
- version: 0.9.2
208
+ version: '0.9'
99
209
  type: :development
100
210
  prerelease: false
101
- version_requirements: *70250121284040
211
+ version_requirements: *70152669858220
102
212
  description: Coming Soon
103
213
  email: m@mattt.me
104
214
  executables:
@@ -106,9 +216,72 @@ executables:
106
216
  extensions: []
107
217
  extra_rdoc_files: []
108
218
  files:
219
+ - ./example/config.ru
220
+ - ./example/Gemfile
221
+ - ./example/Gemfile.lock
222
+ - ./example/Procfile
223
+ - ./example/Sample.xcdatamodeld/Sample.xcdatamodel/contents
109
224
  - ./Gemfile
110
225
  - ./Gemfile.lock
111
226
  - ./helios.gemspec
227
+ - ./lib/helios/backend/data.rb
228
+ - ./lib/helios/backend/in-app-purchase.rb
229
+ - ./lib/helios/backend/passbook.rb
230
+ - ./lib/helios/backend/push-notification.rb
231
+ - ./lib/helios/backend.rb
232
+ - ./lib/helios/commands/new.rb
233
+ - ./lib/helios/commands.rb
234
+ - ./lib/helios/frontend/images/data.png
235
+ - ./lib/helios/frontend/images/data.svg
236
+ - ./lib/helios/frontend/images/in-app-purchase.png
237
+ - ./lib/helios/frontend/images/in-app-purchase.svg
238
+ - ./lib/helios/frontend/images/passbook.png
239
+ - ./lib/helios/frontend/images/passbook.svg
240
+ - ./lib/helios/frontend/images/push-notification.png
241
+ - ./lib/helios/frontend/images/push-notification.svg
242
+ - ./lib/helios/frontend/javascripts/foundation/foundation.alerts.js
243
+ - ./lib/helios/frontend/javascripts/foundation/foundation.clearing.js
244
+ - ./lib/helios/frontend/javascripts/foundation/foundation.cookie.js
245
+ - ./lib/helios/frontend/javascripts/foundation/foundation.dropdown.js
246
+ - ./lib/helios/frontend/javascripts/foundation/foundation.forms.js
247
+ - ./lib/helios/frontend/javascripts/foundation/foundation.joyride.js
248
+ - ./lib/helios/frontend/javascripts/foundation/foundation.js
249
+ - ./lib/helios/frontend/javascripts/foundation/foundation.magellan.js
250
+ - ./lib/helios/frontend/javascripts/foundation/foundation.orbit.js
251
+ - ./lib/helios/frontend/javascripts/foundation/foundation.placeholder.js
252
+ - ./lib/helios/frontend/javascripts/foundation/foundation.reveal.js
253
+ - ./lib/helios/frontend/javascripts/foundation/foundation.section.js
254
+ - ./lib/helios/frontend/javascripts/foundation/foundation.tooltips.js
255
+ - ./lib/helios/frontend/javascripts/foundation/foundation.topbar.js
256
+ - ./lib/helios/frontend/javascripts/helios/collections.coffee
257
+ - ./lib/helios/frontend/javascripts/helios/models.coffee
258
+ - ./lib/helios/frontend/javascripts/helios/router.coffee
259
+ - ./lib/helios/frontend/javascripts/helios/views.coffee
260
+ - ./lib/helios/frontend/javascripts/helios.coffee
261
+ - ./lib/helios/frontend/javascripts/vendor/backbone.datagrid.js
262
+ - ./lib/helios/frontend/javascripts/vendor/backbone.js
263
+ - ./lib/helios/frontend/javascripts/vendor/jquery.js
264
+ - ./lib/helios/frontend/javascripts/vendor/underscore.js
265
+ - ./lib/helios/frontend/stylesheets/_settings.scss
266
+ - ./lib/helios/frontend/stylesheets/screen.sass
267
+ - ./lib/helios/frontend/templates/data/entities.hbs
268
+ - ./lib/helios/frontend/templates/data/entity.hbs
269
+ - ./lib/helios/frontend/templates/in-app-purchase/receipt.hbs
270
+ - ./lib/helios/frontend/templates/in-app-purchase/receipts.hbs
271
+ - ./lib/helios/frontend/templates/passbook/passes.hbs
272
+ - ./lib/helios/frontend/templates/push-notification/device.hbs
273
+ - ./lib/helios/frontend/templates/push-notification/devices.hbs
274
+ - ./lib/helios/frontend/views/devices.jst.tpl
275
+ - ./lib/helios/frontend/views/entities.jst.tpl
276
+ - ./lib/helios/frontend/views/index.haml
277
+ - ./lib/helios/frontend/views/passes.jst.tpl
278
+ - ./lib/helios/frontend/views/receipts.jst.tpl
279
+ - ./lib/helios/frontend.rb
280
+ - ./lib/helios/templates/config.ru.erb
281
+ - ./lib/helios/templates/Gemfile.erb
282
+ - ./lib/helios/templates/Procfile.erb
283
+ - ./lib/helios/templates/README.md.erb
284
+ - ./lib/helios/version.rb
112
285
  - ./lib/helios.rb
113
286
  - ./LICENSE
114
287
  - ./Rakefile
@@ -128,7 +301,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
128
301
  version: '0'
129
302
  segments:
130
303
  - 0
131
- hash: -1449662137682020097
304
+ hash: -3390036529243761825
132
305
  required_rubygems_version: !ruby/object:Gem::Requirement
133
306
  none: false
134
307
  requirements:
@@ -137,7 +310,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
137
310
  version: '0'
138
311
  segments:
139
312
  - 0
140
- hash: -1449662137682020097
313
+ hash: -3390036529243761825
141
314
  requirements: []
142
315
  rubyforge_project:
143
316
  rubygems_version: 1.8.15