waterfall_neat_bourbon_rails 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 84f4498bf3710f7bc38c6bc966a9101392c01b0a
4
+ data.tar.gz: 43ecb4a1f21f65fd5951089548446bd3247169c3
5
+ SHA512:
6
+ metadata.gz: 178a1f77f4910fdaef72e36fe85e29e910f69c830b938480641ec7fa180fc2d4b06dba0a8846b8ec8277a14a686c28aa3adcf602e16fc7b9016a5406f0bfb931
7
+ data.tar.gz: c9de79665c19d2d631f0068d68e6088889e6c0bcfe72230079f232ab0554c79efb7f50c5781324ac84caea12d6cd9e4ee7193003c758d95696dfd7a0012c4bd0
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2014 YOURNAME
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1 @@
1
+ //= require waterfall_bourbon_neat_rails/application.js
@@ -0,0 +1,4 @@
1
+ //= require jquery
2
+ //= require jquery.autocomplete
3
+ //= require jquery.validate
4
+ //= require jquery.validate.additional-methods
@@ -0,0 +1,36 @@
1
+ @import 'waterfall_bourbon_neat_rails/application'
2
+
3
+ div.container {
4
+ @include outer-container;
5
+ }
6
+
7
+ div.nav-bar {
8
+ @include span-columns(12);
9
+ @include row(table);
10
+ }
11
+
12
+ div.side-bar {
13
+ @include span-columns(4);
14
+ @include pad();
15
+ }
16
+
17
+ div.main-content {
18
+ @include span-columns(8);
19
+ @include reset-display;
20
+ @include pad();
21
+ }
22
+
23
+ div.footer {
24
+ @include span-columns(12);
25
+ div.copyright {
26
+ @include span-columns(6 of 12);
27
+ }
28
+ div.fake-links-container {
29
+ @include span-columns(6 of 12);
30
+ }
31
+ }
32
+
33
+ li.fake-link {
34
+ @include span-columns(3);
35
+ @include omega(4n);
36
+ }
@@ -0,0 +1,4 @@
1
+ @import "bourbon";
2
+ @import "neat";
3
+ @import 'flash';
4
+ @import 'jquery.autocomplete';
@@ -0,0 +1,11 @@
1
+ doctype html
2
+ head
3
+ title "Title Placeholder"
4
+ == render 'waterfall_bourbon_neat_rails/header_tags'
5
+ meta charset => 'utf-8'
6
+ meta name='ROBOTS' content= 'NOODP'
7
+ = stylesheet_link_tag :application, :media => 'all'
8
+ = csrf_meta_tags
9
+
10
+ body class=body_class
11
+ == render 'waterfall_bourbon_neat_rails/full_body'
@@ -0,0 +1,3 @@
1
+ /- flash.each do |key, value|
2
+ div class=["panel", "flash-panel-#{key}"]
3
+ value
@@ -0,0 +1,13 @@
1
+ .copyright
2
+ p
3
+ Copyright Waterfall Software Inc., All rights reserved
4
+
5
+ .fake-links-container
6
+ li.fake_link
7
+ a href="#" title='Link 1' Link 1
8
+ li.fake_link
9
+ a href="#" title='Link 2' Link 2
10
+ li.fake_link
11
+ a href="#" title='Link 3' Link 3
12
+ li.fake_link
13
+ a href="#" title='Link 4' Link 4
@@ -0,0 +1,16 @@
1
+ .container
2
+
3
+ .nav-bar
4
+ == render 'waterfall_bourbon_neat_rails/nav'
5
+
6
+ .side-bar
7
+ == render 'waterfall_bourbon_neat_rails/side_bar'
8
+
9
+ .main-content
10
+ == render 'waterfall_bourbon_neat_rails/flash'
11
+ == yield
12
+
13
+ .footer
14
+ = render 'waterfall_bourbon_neat_rails/footer'
15
+
16
+ == render 'waterfall_bourbon_neat_rails/javascript'
@@ -0,0 +1 @@
1
+ meta name="viewport" content="width=device-width, initial-scale=1.0"
@@ -0,0 +1,5 @@
1
+ javascript 'application'
2
+
3
+ == yield :javascript
4
+
5
+
@@ -0,0 +1,10 @@
1
+ nav data='topbar'
2
+ ul
3
+ li
4
+ h1
5
+ = a href="#" title='My Title'
6
+
7
+ section
8
+ ul
9
+ li
10
+ = link_to 'Logout', "#"
@@ -0,0 +1,5 @@
1
+ img src='http://placehold.it/500x500&text=Logo'
2
+
3
+ div
4
+ h3 Something
5
+ h5 Risus ligula aliquam nec fermentum vitae
@@ -0,0 +1,4 @@
1
+ require "waterfall_bourbon_neat_rails/rails/engine"
2
+
3
+ module WaterfallBourbonNeatRails
4
+ end
@@ -0,0 +1,7 @@
1
+ # module WaterfallBourbonNeatRails
2
+ # module Rails
3
+ # class Engine < ::Rails::Engine
4
+ # # isolate_namespace WaterfallBourbonNeatRails
5
+ # end
6
+ # end
7
+ # end
@@ -0,0 +1,3 @@
1
+ module WaterfallBourbonNeatRails
2
+ VERSION = "0.0.1"
3
+ end
metadata ADDED
@@ -0,0 +1,157 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: waterfall_neat_bourbon_rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Waterfall Software Inc.
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-04-03 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: jquery-rails
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
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: jquery-validation-rails
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: jquery_autocomplete_rails
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: bourbon
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - '>='
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: neat
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ~>
88
+ - !ruby/object:Gem::Version
89
+ version: 1.6.0
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ~>
95
+ - !ruby/object:Gem::Version
96
+ version: 1.6.0
97
+ - !ruby/object:Gem::Dependency
98
+ name: slim
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - '>='
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - '>='
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ description: The Waterfall standard UI.
112
+ email:
113
+ - support@waterfallsoftware.com
114
+ executables: []
115
+ extensions: []
116
+ extra_rdoc_files: []
117
+ files:
118
+ - app/assets/javascripts/waterfall_bourbon_neat_rails/application.js
119
+ - app/assets/javascripts/waterfall_bourbon_neat_rails.js
120
+ - app/assets/stylesheets/waterfall_bourbon_neat_rails/application.css.scss
121
+ - app/assets/stylesheets/waterfall_bourbon_neat_rails.css.scss
122
+ - app/views/layouts/application.html.slim
123
+ - app/views/waterfall_bourbon_neat_rails/_flash.html.slim
124
+ - app/views/waterfall_bourbon_neat_rails/_footer.html.slim
125
+ - app/views/waterfall_bourbon_neat_rails/_full_body.html.slim
126
+ - app/views/waterfall_bourbon_neat_rails/_header_tags.html.slim
127
+ - app/views/waterfall_bourbon_neat_rails/_javascript.html.slim
128
+ - app/views/waterfall_bourbon_neat_rails/_nav.html.slim
129
+ - app/views/waterfall_bourbon_neat_rails/_side_bar.html.slim
130
+ - lib/waterfall_bourbon_neat_rails/rails/engine.rb
131
+ - lib/waterfall_bourbon_neat_rails/version.rb
132
+ - lib/waterfall_bourbon_neat_rails.rb
133
+ - MIT-LICENSE
134
+ homepage: http://waterfallsoftware.com
135
+ licenses: []
136
+ metadata: {}
137
+ post_install_message:
138
+ rdoc_options: []
139
+ require_paths:
140
+ - lib
141
+ required_ruby_version: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - '>='
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
+ required_rubygems_version: !ruby/object:Gem::Requirement
147
+ requirements:
148
+ - - '>='
149
+ - !ruby/object:Gem::Version
150
+ version: '0'
151
+ requirements: []
152
+ rubyforge_project: waterfall_bourbon_neat_rails
153
+ rubygems_version: 2.1.5
154
+ signing_key:
155
+ specification_version: 4
156
+ summary: The Waterfall standard UI.
157
+ test_files: []