helios 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (27) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +93 -71
  3. data/README.md +150 -127
  4. data/helios.gemspec +5 -4
  5. data/lib/helios/backend/push-notification.rb +1 -0
  6. data/lib/helios/commands/link.rb +2 -0
  7. data/lib/helios/commands/new.rb +1 -0
  8. data/lib/helios/frontend/javascripts/vendor/foundation.js +163 -47
  9. data/lib/helios/frontend/javascripts/vendor/foundation/foundation.alerts.js +6 -4
  10. data/lib/helios/frontend/javascripts/vendor/foundation/foundation.clearing.js +70 -32
  11. data/lib/helios/frontend/javascripts/vendor/foundation/foundation.dropdown.js +87 -31
  12. data/lib/helios/frontend/javascripts/vendor/foundation/foundation.forms.js +360 -238
  13. data/lib/helios/frontend/javascripts/vendor/foundation/foundation.interchange.js +271 -0
  14. data/lib/helios/frontend/javascripts/vendor/foundation/foundation.joyride.js +279 -48
  15. data/lib/helios/frontend/javascripts/vendor/foundation/foundation.magellan.js +8 -4
  16. data/lib/helios/frontend/javascripts/vendor/foundation/foundation.orbit.js +59 -24
  17. data/lib/helios/frontend/javascripts/vendor/foundation/foundation.placeholder.js +21 -1
  18. data/lib/helios/frontend/javascripts/vendor/foundation/foundation.reveal.js +100 -42
  19. data/lib/helios/frontend/javascripts/vendor/foundation/foundation.section.js +299 -60
  20. data/lib/helios/frontend/javascripts/vendor/foundation/foundation.tooltips.js +26 -13
  21. data/lib/helios/frontend/javascripts/vendor/foundation/foundation.topbar.js +154 -59
  22. data/lib/helios/frontend/javascripts/vendor/foundation/index.js +17 -0
  23. data/lib/helios/frontend/stylesheets/screen.sass +0 -1
  24. data/lib/helios/frontend/templates/push-notification/devices.jst.tpl +0 -3
  25. data/lib/helios/templates/.gitignore.erb +32 -0
  26. data/lib/helios/version.rb +1 -1
  27. metadata +31 -14
@@ -4,9 +4,6 @@
4
4
  <form class="filter">
5
5
  <input type="text" placeholder="Filter Devices..." value=""/>
6
6
  </form>
7
- <% if (false) { %>
8
- <button class="button" data-reveal-id="compose-modal">Compose</button>
9
- <% } %>
10
7
  </div>
11
8
 
12
9
  <div class="master">
@@ -0,0 +1,32 @@
1
+ *.gem
2
+ *.rbc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /test/tmp/
9
+ /test/version_tmp/
10
+ /tmp/
11
+
12
+ ## Sass:
13
+ .sass-cache
14
+
15
+ ## Documentation cache and generated files:
16
+ /.yardoc/
17
+ /_yardoc/
18
+ /doc/
19
+ /rdoc/
20
+
21
+ ## Environment normalisation:
22
+ /.bundle/
23
+ /lib/bundler/man/
24
+
25
+ # for a library or gem, you might want to ignore these files since the code is
26
+ # intended to run in multiple environments; otherwise, check them in:
27
+ # Gemfile.lock
28
+ # .ruby-version
29
+ # .ruby-gemset
30
+
31
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
32
+ .rvmrc
@@ -1,3 +1,3 @@
1
1
  module Helios
2
- VERSION = "0.3.0"
2
+ VERSION = "0.4.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: helios
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mattt Thompson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-07-15 00:00:00.000000000 Z
11
+ date: 2014-08-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: commander
@@ -112,30 +112,44 @@ dependencies:
112
112
  name: rack-scaffold
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
- - - '>='
115
+ - - ~>
116
116
  - !ruby/object:Gem::Version
117
- version: 0.0.3
117
+ version: '0.2'
118
118
  type: :runtime
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
- - - '>='
122
+ - - ~>
123
123
  - !ruby/object:Gem::Version
124
- version: 0.0.3
124
+ version: '0.2'
125
125
  - !ruby/object:Gem::Dependency
126
126
  name: core_data
127
127
  requirement: !ruby/object:Gem::Requirement
128
128
  requirements:
129
- - - '>='
129
+ - - ~>
130
130
  - !ruby/object:Gem::Version
131
- version: '0'
131
+ version: '0.1'
132
132
  type: :runtime
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
- - - '>='
136
+ - - ~>
137
137
  - !ruby/object:Gem::Version
138
- version: '0'
138
+ version: '0.1'
139
+ - !ruby/object:Gem::Dependency
140
+ name: pg
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ~>
144
+ - !ruby/object:Gem::Version
145
+ version: '0.17'
146
+ type: :runtime
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ~>
151
+ - !ruby/object:Gem::Version
152
+ version: '0.17'
139
153
  - !ruby/object:Gem::Dependency
140
154
  name: json
141
155
  requirement: !ruby/object:Gem::Requirement
@@ -324,14 +338,14 @@ dependencies:
324
338
  requirements:
325
339
  - - ~>
326
340
  - !ruby/object:Gem::Version
327
- version: '0.2'
341
+ version: '2.2'
328
342
  type: :runtime
329
343
  prerelease: false
330
344
  version_requirements: !ruby/object:Gem::Requirement
331
345
  requirements:
332
346
  - - ~>
333
347
  - !ruby/object:Gem::Version
334
- version: '0.2'
348
+ version: '2.2'
335
349
  - !ruby/object:Gem::Dependency
336
350
  name: rake
337
351
  requirement: !ruby/object:Gem::Requirement
@@ -365,7 +379,7 @@ description: Helios is an open-source framework that provides essential backend
365
379
  in-app purchases, and passbook integration. It allows developers to get a client-server
366
380
  app up-and-running in just a few minutes, and seamlessly incorporate functionality
367
381
  as necessary.
368
- email: mattt@heroku.com
382
+ email: m@mattt.me
369
383
  executables:
370
384
  - helios
371
385
  extensions: []
@@ -406,6 +420,7 @@ files:
406
420
  - ./lib/helios/frontend/javascripts/vendor/foundation/foundation.cookie.js
407
421
  - ./lib/helios/frontend/javascripts/vendor/foundation/foundation.dropdown.js
408
422
  - ./lib/helios/frontend/javascripts/vendor/foundation/foundation.forms.js
423
+ - ./lib/helios/frontend/javascripts/vendor/foundation/foundation.interchange.js
409
424
  - ./lib/helios/frontend/javascripts/vendor/foundation/foundation.joyride.js
410
425
  - ./lib/helios/frontend/javascripts/vendor/foundation/foundation.magellan.js
411
426
  - ./lib/helios/frontend/javascripts/vendor/foundation/foundation.orbit.js
@@ -414,6 +429,7 @@ files:
414
429
  - ./lib/helios/frontend/javascripts/vendor/foundation/foundation.section.js
415
430
  - ./lib/helios/frontend/javascripts/vendor/foundation/foundation.tooltips.js
416
431
  - ./lib/helios/frontend/javascripts/vendor/foundation/foundation.topbar.js
432
+ - ./lib/helios/frontend/javascripts/vendor/foundation/index.js
417
433
  - ./lib/helios/frontend/javascripts/vendor/foundation.js
418
434
  - ./lib/helios/frontend/javascripts/vendor/jquery/jquery.fileupload-ui.js
419
435
  - ./lib/helios/frontend/javascripts/vendor/jquery/jquery.fileupload.js
@@ -447,6 +463,7 @@ files:
447
463
  - ./README.md
448
464
  - ./lib/helios/templates/.env.erb
449
465
  - ./lib/helios/templates/.gitignore
466
+ - ./lib/helios/templates/.gitignore.erb
450
467
  - bin/helios
451
468
  homepage: http://helios.io
452
469
  licenses:
@@ -468,7 +485,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
468
485
  version: '0'
469
486
  requirements: []
470
487
  rubyforge_project:
471
- rubygems_version: 2.0.3
488
+ rubygems_version: 2.1.11
472
489
  signing_key:
473
490
  specification_version: 4
474
491
  summary: An extensible open-source mobile backend framework