volt-awesome 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (64) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/.rspec +2 -0
  4. data/CODE_OF_CONDUCT.md +13 -0
  5. data/Gemfile +15 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +44 -0
  8. data/Rakefile +1 -0
  9. data/app/awesome/assets/css/awesome.css +149 -0
  10. data/app/awesome/assets/images/ellipsis.svg +62 -0
  11. data/app/awesome/assets/js/01-jquery.js +4 -0
  12. data/app/awesome/assets/js/02-awesome-weather.js +23 -0
  13. data/app/awesome/assets/js/03-simple-weather.js +2 -0
  14. data/app/awesome/config/dependencies.rb +2 -0
  15. data/app/awesome/config/initializers/boot.rb +10 -0
  16. data/app/awesome/config/routes.rb +1 -0
  17. data/app/awesome/controllers/button_controller.rb +11 -0
  18. data/app/awesome/controllers/main_controller.rb +16 -0
  19. data/app/awesome/views/button/down.html +3 -0
  20. data/app/awesome/views/button/facebook.html +6 -0
  21. data/app/awesome/views/button/index.html +13 -0
  22. data/app/awesome/views/button/send.html +3 -0
  23. data/app/awesome/views/button/twitter.html +4 -0
  24. data/app/awesome/views/button/up.html +2 -0
  25. data/app/awesome/views/field/index.html +9 -0
  26. data/app/awesome/views/field/submit.html +3 -0
  27. data/app/awesome/views/icon/index.html +2 -0
  28. data/app/awesome/views/link/index.html +2 -0
  29. data/app/awesome/views/loading/index.html +2 -0
  30. data/app/awesome/views/main/index.html +5 -0
  31. data/app/awesome/views/menu/index.html +0 -0
  32. data/app/awesome/views/nav/index.html +4 -0
  33. data/app/awesome/views/panel/image.html +4 -0
  34. data/app/awesome/views/panel/index.html +11 -0
  35. data/app/awesome/views/panel/info.html +8 -0
  36. data/app/awesome/views/panel/infoicon.html +5 -0
  37. data/app/awesome/views/panel/navfooter.html +7 -0
  38. data/app/awesome/views/panel/profile.html +20 -0
  39. data/app/awesome/views/panel/text.html +11 -0
  40. data/app/awesome/views/search_form/index.html +9 -0
  41. data/app/awesome/views/weather/index.html +16 -0
  42. data/lib/volt/awesome/version.rb +5 -0
  43. data/lib/volt/awesome.rb +18 -0
  44. data/screenshot.png +0 -0
  45. data/spec/dummy/.gitignore +9 -0
  46. data/spec/dummy/README.md +4 -0
  47. data/spec/dummy/app/main/assets/css/app.css.scss +1 -0
  48. data/spec/dummy/app/main/config/dependencies.rb +11 -0
  49. data/spec/dummy/app/main/config/initializers/boot.rb +10 -0
  50. data/spec/dummy/app/main/config/routes.rb +14 -0
  51. data/spec/dummy/app/main/controllers/main_controller.rb +27 -0
  52. data/spec/dummy/app/main/models/user.rb +12 -0
  53. data/spec/dummy/app/main/views/main/about.html +7 -0
  54. data/spec/dummy/app/main/views/main/index.html +6 -0
  55. data/spec/dummy/app/main/views/main/main.html +29 -0
  56. data/spec/dummy/config/app.rb +137 -0
  57. data/spec/dummy/config/base/index.html +15 -0
  58. data/spec/dummy/config/initializers/boot.rb +4 -0
  59. data/spec/dummy/config.ru +4 -0
  60. data/spec/integration/sample_integration_spec.rb +11 -0
  61. data/spec/sample_spec.rb +7 -0
  62. data/spec/spec_helper.rb +18 -0
  63. data/volt-awesome.gemspec +39 -0
  64. metadata +307 -0
@@ -0,0 +1,11 @@
1
+ # Specify which components you wish to include when
2
+ # the "home" component loads.
3
+
4
+ # bootstrap css framework
5
+ component 'bootstrap'
6
+
7
+ # a default theme for the bootstrap framework
8
+ component 'bootstrap_jumbotron_theme'
9
+
10
+ # provides templates for login, signup, and logout
11
+ component 'user_templates'
@@ -0,0 +1,10 @@
1
+ # Place any code you want to run when the component is included on the client
2
+ # or server.
3
+
4
+ # To include code only on the client use:
5
+ # if RUBY_PLATFORM == 'opal'
6
+ #
7
+ # To include code only on the server, use:
8
+ # unless RUBY_PLATFORM == 'opal'
9
+ # ^^ this will not send compile in code in the conditional to the client.
10
+ # ^^ this include code required in the conditional.
@@ -0,0 +1,14 @@
1
+ # See https://github.com/voltrb/volt#routes for more info on routes
2
+
3
+ client '/about', action: 'about'
4
+
5
+ # Routes for login and signup, provided by user_templates component gem
6
+ client '/signup', component: 'user_templates', controller: 'signup'
7
+ client '/login', component: 'user_templates', controller: 'login', action: 'index'
8
+ client '/password_reset', component: 'user_templates', controller: 'password_reset', action: 'index'
9
+ client '/forgot', component: 'user_templates', controller: 'login', action: 'forgot'
10
+ client '/account', component: 'user_templates', controller: 'account', action: 'index'
11
+
12
+ # The main route, this should be last. It will match any params not
13
+ # previously matched.
14
+ client '/', {}
@@ -0,0 +1,27 @@
1
+ # By default Volt generates this controller for your Main component
2
+ module Main
3
+ class MainController < Volt::ModelController
4
+ def index
5
+ # Add code for when the index view is loaded
6
+ end
7
+
8
+ def about
9
+ # Add code for when the about view is loaded
10
+ end
11
+
12
+ private
13
+
14
+ # The main template contains a #template binding that shows another
15
+ # template. This is the path to that template. It may change based
16
+ # on the params._component, params._controller, and params._action values.
17
+ def main_path
18
+ "#{params._component || 'main'}/#{params._controller || 'main'}/#{params._action || 'index'}"
19
+ end
20
+
21
+ # Determine if the current nav component is the active one by looking
22
+ # at the first part of the url against the href attribute.
23
+ def active_tab?
24
+ url.path.split('/')[1] == attrs.href.split('/')[1]
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,12 @@
1
+ # By default Volt generates this User model which inherits from Volt::User,
2
+ # you can rename this if you want.
3
+ class User < Volt::User
4
+ # login_field is set to :email by default and can be changed to :username
5
+ # in config/app.rb
6
+ field login_field
7
+ field :name
8
+
9
+ validate login_field, unique: true, length: 8
10
+ validate :email, email: true
11
+
12
+ end
@@ -0,0 +1,7 @@
1
+ <:Title>
2
+ About
3
+
4
+ <:Body>
5
+ <h1>About</h1>
6
+
7
+ <p>About page...</p>
@@ -0,0 +1,6 @@
1
+ <:Title>
2
+ Home
3
+
4
+ <:Body>
5
+ <h1>Home</h1>
6
+
@@ -0,0 +1,29 @@
1
+ <:Title>
2
+ {{ view main_path, "title", {controller_group: 'main'} }}
3
+
4
+ <:Body>
5
+ <div class="container">
6
+ <div class="header">
7
+ <ul class="nav nav-pills pull-right">
8
+ <:nav href="/">Home</:nav>
9
+ <:nav href="/about">About</:nav>
10
+ <:user_templates:menu />
11
+ </ul>
12
+ <h3 class="text-muted">dummy</h3>
13
+ </div>
14
+
15
+ <:volt:notices />
16
+
17
+ {{ view main_path, 'body', {controller_group: 'main'} }}
18
+
19
+ <div class="footer">
20
+ <p>&copy; Company {{ Time.now.year }}</p>
21
+ </div>
22
+
23
+ </div>
24
+
25
+ <:Nav>
26
+ <li class="{{ if active_tab? }}active{{ end }}">
27
+ <a href="{{ attrs.href }}">{{ yield }}</a>
28
+ </li>
29
+
@@ -0,0 +1,137 @@
1
+ # app.rb is used to configure your app. This code is only run on the server,
2
+ # then any config options in config.public are passed to the client as well.
3
+
4
+ Volt.configure do |config|
5
+ # Setup your global app config here.
6
+
7
+ #######################################
8
+ # Basic App Info (stuff you should set)
9
+ #######################################
10
+ config.domain = 'dummy.com'
11
+ config.app_name = 'Dummy'
12
+ config.mailer.from = 'Dummy <no-reply@dummy.com>'
13
+
14
+ ############
15
+ # App Secret
16
+ ############
17
+ # Your app secret is used for signing things like the user cookie so it can't
18
+ # be tampered with. A random value is generated on new projects that will work
19
+ # without the need to customize. Make sure this value doesn't leave your server.
20
+ #
21
+ # For added security we recommend moving the app secret into an environment. You can
22
+ # setup that like so:
23
+ #
24
+ # config.app_secret = ENV['APP_SECRET']
25
+ #
26
+ config.app_secret = 'kbxEA5GpNtnDWqVXrfG9nJwX2FJ2BeV5T5eraIw6MdY9EwCCbg3lG1SB-X8c_x8t8N0'
27
+
28
+ ###############
29
+ # Log Filtering
30
+ ###############
31
+ # Data updates from the client come in via Tasks. The task dispatcher logs all calls to tasks.
32
+ # By default hashes in the arguments can be filtered based on keys. So any hash with a key of
33
+ # password will be filtered. You can add more fields to filter below:
34
+ config.filter_keys = [:password]
35
+
36
+ ##########
37
+ # Database
38
+ ##########
39
+ # Database config all start with db_ and can be set either in the config
40
+ # file or with an environment variable (DB_NAME for example).
41
+
42
+ # config.db_driver = 'mongo'
43
+ # config.db_name = (config.app_name + '_' + Volt.env.to_s)
44
+ # config.db_host = 'localhost'
45
+ # config.db_port = 27017
46
+
47
+ #####################
48
+ # Compression options
49
+ #####################
50
+ # If you are not running behind something like nginx in production, you can
51
+ # have rack deflate all files.
52
+ # config.deflate = true
53
+
54
+ #######################
55
+ # Public configurations
56
+ #######################
57
+ # Anything under config.public will be sent to the client as well as the server,
58
+ # so be sure no private data ends up under public
59
+
60
+ # Use username instead of email as the login
61
+ # config.public.auth.use_username = true
62
+
63
+ #####################
64
+ # Compression Options
65
+ #####################
66
+ # Disable or enable css/js/image compression. Default is to only run in production.
67
+ # if Volt.env.production?
68
+ # config.compress_javascript = true
69
+ # config.compress_css = true
70
+ # config.compress_images = true
71
+ # end
72
+
73
+ ################
74
+ # Mailer options
75
+ ################
76
+ # The volt-mailer gem uses pony (https://github.com/benprew/pony) to deliver e-mail. Any
77
+ # options you would pass to pony can be setup below.
78
+ # NOTE: The from address is setup at the top
79
+
80
+ # Normally pony uses /usr/sbin/sendmail if one is installed. You can specify smtp below:
81
+ # config.mailer.via = :smtp
82
+ # config.mailer.via_options = {
83
+ # :address => 'smtp.yourserver.com',
84
+ # :port => '25',
85
+ # :user_name => 'user',
86
+ # :password => 'password',
87
+ # :authentication => :plain, # :plain, :login, :cram_md5, no auth by default
88
+ # :domain => "localhost.localdomain" # the HELO domain provided by the client to the server
89
+ # }
90
+
91
+ #############
92
+ # Message Bus
93
+ #############
94
+ # Volt provides a "Message Bus" out of the box. The message bus provides
95
+ # a pub/sub service between any volt instance (server, client, runner, etc..)
96
+ # that share the same database. The message bus can be used by app code. It
97
+ # is also used internally to push data to any listening clients.
98
+ #
99
+ # The default message bus (called "peer_to_peer") uses the database to sync
100
+ # socket ip's/ports.
101
+ # config.message_bus.bus_name = 'peer_to_peer'
102
+ #
103
+ # Encrypt message bus - messages on the message bus are encrypted by default
104
+ # using rbnacl.
105
+
106
+ #
107
+ # For dummy apps, we disable_encryption, to simplify the gem requirements.
108
+ config.message_bus.disable_encryption = true
109
+
110
+ #
111
+ # ## MessageBus Server -- the message bus binds to a port and ip which the
112
+ # other volt instances need to be able to connect to. You can customize
113
+ # the server below:
114
+ #
115
+ # Port range - you can specify a range of ports that an instance can bind the
116
+ # message bus on. You can specify a range, an array of Integers, or an array
117
+ # of ranges.
118
+ # config.message_bus.bind_port_ranges = (58000..61000)
119
+ #
120
+ # Bind Ip - specifies the ip address the message bus server should bind on.
121
+ # config.message_bus.bind_ip = '127.0.0.1'
122
+
123
+ #############
124
+ # Concurrency
125
+ #############
126
+ # Volt provides a thread worker pool for incoming task requests (and all
127
+ # database requests, since those use tasks to do their work.) The following
128
+ # lets you control the size of the worker pool. Threads are only created as
129
+ # needed, and are removed after a certain amount of inactivity.
130
+ # config.min_worker_threads = 1
131
+ # config.max_worker_threads = 10
132
+ #
133
+ # You can also specify the amount of time a Task should run for before it
134
+ # timeout's. Setting this to short can cause unexpected results, currently
135
+ # we recomend it be at least 10 seconds.
136
+ # config.worker_timeout = 60
137
+ end
@@ -0,0 +1,15 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <%# IMPORTANT: Please read before changing! %>
4
+ <%# This file is rendered on the server using ERB, so it does NOT use Volt's %>
5
+ <%# normal template system. You can add to it, but keep in mind the template %>
6
+ <%# language difference. This file handles auto-loading all JS/Opal and CSS. %>
7
+ <head>
8
+ <meta charset="UTF-8" />
9
+ <%= javascript_tags %>
10
+ <%= css_tags %>
11
+ </head>
12
+ <body>
13
+
14
+ </body>
15
+ </html>
@@ -0,0 +1,4 @@
1
+ # Any ./config/initializers/*.rb files will when the app starts up on the server.
2
+ # To load code on the client (or client and server), you can use the
3
+ # config/initializers folder in a component in the app directory. This folder
4
+ # is only for things that are server only. (Usually for things like config)
@@ -0,0 +1,4 @@
1
+ # Run via rack server
2
+ require 'bundler/setup'
3
+ require 'volt/server'
4
+ run Volt::Server.new.app
@@ -0,0 +1,11 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'sample integration test', type: :feature do
4
+ # An example integration spec, this will only be run if ENV['BROWSER'] is
5
+ # specified. Current values for ENV['BROWSER'] are 'firefox' and 'phantom'
6
+ it 'should load the page' do
7
+ visit '/'
8
+
9
+ expect(page).to have_content('Home')
10
+ end
11
+ end
@@ -0,0 +1,7 @@
1
+ require 'spec_helper'
2
+
3
+ describe Volt::Awesome do
4
+ it 'should do something useful' do
5
+ expect(false).to be true
6
+ end
7
+ end
@@ -0,0 +1,18 @@
1
+ # Volt sets up rspec and capybara for testing.
2
+ require 'volt/spec/setup'
3
+
4
+ # When testing Volt component gems, we boot up a dummy app first to run the
5
+ # test in, so we have access to Volt itself.
6
+ dummy_app_path = File.join(File.dirname(__FILE__), 'dummy')
7
+ Volt.spec_setup(dummy_app_path)
8
+
9
+ RSpec.configure do |config|
10
+ config.run_all_when_everything_filtered = true
11
+ config.filter_run :focus
12
+
13
+ # Run specs in random order to surface order dependencies. If you find an
14
+ # order dependency and want to debug it, you can fix the order by providing
15
+ # the seed, which is printed after each run.
16
+ # --seed 1234
17
+ config.order = 'random'
18
+ end
@@ -0,0 +1,39 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'volt/awesome/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "volt-awesome"
8
+ spec.version = Volt::Awesome::VERSION
9
+ spec.authors = ["heri"]
10
+ spec.email = ["heri@madmedia.ca"]
11
+ spec.summary = %q{Awesome UI for Volt Framework applications}
12
+ spec.description = %q{Awesome UI for @VoltFramework applications. Great for prototyping and hackathons. View github for example}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "volt", "~> 0.9.5"
22
+ spec.add_development_dependency "rake"
23
+
24
+ # Testing gems
25
+ spec.add_development_dependency 'rspec', '~> 3.2.0'
26
+ spec.add_development_dependency 'opal-rspec', '~> 0.4.2'
27
+ spec.add_development_dependency 'capybara', '~> 2.4.4'
28
+ spec.add_development_dependency 'selenium-webdriver', '~> 2.47.0'
29
+ spec.add_development_dependency 'chromedriver-helper', '~> 1.0.0'
30
+ spec.add_development_dependency 'poltergeist', '~> 1.6.0'
31
+
32
+ # Gems to run the dummy app
33
+ spec.add_development_dependency 'volt-mongo', '0.1.1'
34
+ spec.add_development_dependency 'volt-bootstrap', '~> 0.1.0'
35
+ spec.add_development_dependency 'volt-bootstrap_jumbotron_theme', '~> 0.1.0'
36
+ spec.add_development_dependency 'volt-user_templates', '~> 0.4.0'
37
+ spec.add_development_dependency 'thin', '~> 1.6.0'
38
+
39
+ end
metadata ADDED
@@ -0,0 +1,307 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: volt-awesome
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - heri
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-09-29 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: volt
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.9.5
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 0.9.5
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 3.2.0
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 3.2.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: opal-rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 0.4.2
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 0.4.2
69
+ - !ruby/object:Gem::Dependency
70
+ name: capybara
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 2.4.4
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 2.4.4
83
+ - !ruby/object:Gem::Dependency
84
+ name: selenium-webdriver
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: 2.47.0
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: 2.47.0
97
+ - !ruby/object:Gem::Dependency
98
+ name: chromedriver-helper
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: 1.0.0
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: 1.0.0
111
+ - !ruby/object:Gem::Dependency
112
+ name: poltergeist
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: 1.6.0
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: 1.6.0
125
+ - !ruby/object:Gem::Dependency
126
+ name: volt-mongo
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - '='
130
+ - !ruby/object:Gem::Version
131
+ version: 0.1.1
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - '='
137
+ - !ruby/object:Gem::Version
138
+ version: 0.1.1
139
+ - !ruby/object:Gem::Dependency
140
+ name: volt-bootstrap
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - "~>"
144
+ - !ruby/object:Gem::Version
145
+ version: 0.1.0
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: 0.1.0
153
+ - !ruby/object:Gem::Dependency
154
+ name: volt-bootstrap_jumbotron_theme
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - "~>"
158
+ - !ruby/object:Gem::Version
159
+ version: 0.1.0
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - "~>"
165
+ - !ruby/object:Gem::Version
166
+ version: 0.1.0
167
+ - !ruby/object:Gem::Dependency
168
+ name: volt-user_templates
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - "~>"
172
+ - !ruby/object:Gem::Version
173
+ version: 0.4.0
174
+ type: :development
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - "~>"
179
+ - !ruby/object:Gem::Version
180
+ version: 0.4.0
181
+ - !ruby/object:Gem::Dependency
182
+ name: thin
183
+ requirement: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - "~>"
186
+ - !ruby/object:Gem::Version
187
+ version: 1.6.0
188
+ type: :development
189
+ prerelease: false
190
+ version_requirements: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - "~>"
193
+ - !ruby/object:Gem::Version
194
+ version: 1.6.0
195
+ description: Awesome UI for @VoltFramework applications. Great for prototyping and
196
+ hackathons. View github for example
197
+ email:
198
+ - heri@madmedia.ca
199
+ executables: []
200
+ extensions: []
201
+ extra_rdoc_files: []
202
+ files:
203
+ - ".gitignore"
204
+ - ".rspec"
205
+ - CODE_OF_CONDUCT.md
206
+ - Gemfile
207
+ - LICENSE.txt
208
+ - README.md
209
+ - Rakefile
210
+ - app/awesome/assets/css/awesome.css
211
+ - app/awesome/assets/images/ellipsis.svg
212
+ - app/awesome/assets/js/01-jquery.js
213
+ - app/awesome/assets/js/02-awesome-weather.js
214
+ - app/awesome/assets/js/03-simple-weather.js
215
+ - app/awesome/config/dependencies.rb
216
+ - app/awesome/config/initializers/boot.rb
217
+ - app/awesome/config/routes.rb
218
+ - app/awesome/controllers/button_controller.rb
219
+ - app/awesome/controllers/main_controller.rb
220
+ - app/awesome/views/button/down.html
221
+ - app/awesome/views/button/facebook.html
222
+ - app/awesome/views/button/index.html
223
+ - app/awesome/views/button/send.html
224
+ - app/awesome/views/button/twitter.html
225
+ - app/awesome/views/button/up.html
226
+ - app/awesome/views/field/index.html
227
+ - app/awesome/views/field/submit.html
228
+ - app/awesome/views/icon/index.html
229
+ - app/awesome/views/link/index.html
230
+ - app/awesome/views/loading/index.html
231
+ - app/awesome/views/main/index.html
232
+ - app/awesome/views/menu/index.html
233
+ - app/awesome/views/nav/index.html
234
+ - app/awesome/views/panel/image.html
235
+ - app/awesome/views/panel/index.html
236
+ - app/awesome/views/panel/info.html
237
+ - app/awesome/views/panel/infoicon.html
238
+ - app/awesome/views/panel/navfooter.html
239
+ - app/awesome/views/panel/profile.html
240
+ - app/awesome/views/panel/text.html
241
+ - app/awesome/views/search_form/index.html
242
+ - app/awesome/views/weather/index.html
243
+ - lib/volt/awesome.rb
244
+ - lib/volt/awesome/version.rb
245
+ - screenshot.png
246
+ - spec/dummy/.gitignore
247
+ - spec/dummy/README.md
248
+ - spec/dummy/app/main/assets/css/app.css.scss
249
+ - spec/dummy/app/main/config/dependencies.rb
250
+ - spec/dummy/app/main/config/initializers/boot.rb
251
+ - spec/dummy/app/main/config/routes.rb
252
+ - spec/dummy/app/main/controllers/main_controller.rb
253
+ - spec/dummy/app/main/models/user.rb
254
+ - spec/dummy/app/main/views/main/about.html
255
+ - spec/dummy/app/main/views/main/index.html
256
+ - spec/dummy/app/main/views/main/main.html
257
+ - spec/dummy/config.ru
258
+ - spec/dummy/config/app.rb
259
+ - spec/dummy/config/base/index.html
260
+ - spec/dummy/config/initializers/boot.rb
261
+ - spec/integration/sample_integration_spec.rb
262
+ - spec/sample_spec.rb
263
+ - spec/spec_helper.rb
264
+ - volt-awesome.gemspec
265
+ homepage: ''
266
+ licenses:
267
+ - MIT
268
+ metadata: {}
269
+ post_install_message:
270
+ rdoc_options: []
271
+ require_paths:
272
+ - lib
273
+ required_ruby_version: !ruby/object:Gem::Requirement
274
+ requirements:
275
+ - - ">="
276
+ - !ruby/object:Gem::Version
277
+ version: '0'
278
+ required_rubygems_version: !ruby/object:Gem::Requirement
279
+ requirements:
280
+ - - ">="
281
+ - !ruby/object:Gem::Version
282
+ version: '0'
283
+ requirements: []
284
+ rubyforge_project:
285
+ rubygems_version: 2.4.8
286
+ signing_key:
287
+ specification_version: 4
288
+ summary: Awesome UI for Volt Framework applications
289
+ test_files:
290
+ - spec/dummy/.gitignore
291
+ - spec/dummy/README.md
292
+ - spec/dummy/app/main/assets/css/app.css.scss
293
+ - spec/dummy/app/main/config/dependencies.rb
294
+ - spec/dummy/app/main/config/initializers/boot.rb
295
+ - spec/dummy/app/main/config/routes.rb
296
+ - spec/dummy/app/main/controllers/main_controller.rb
297
+ - spec/dummy/app/main/models/user.rb
298
+ - spec/dummy/app/main/views/main/about.html
299
+ - spec/dummy/app/main/views/main/index.html
300
+ - spec/dummy/app/main/views/main/main.html
301
+ - spec/dummy/config.ru
302
+ - spec/dummy/config/app.rb
303
+ - spec/dummy/config/base/index.html
304
+ - spec/dummy/config/initializers/boot.rb
305
+ - spec/integration/sample_integration_spec.rb
306
+ - spec/sample_spec.rb
307
+ - spec/spec_helper.rb