Skip to content

Commit 2ecea3e

Browse files
author
chambaz
committed
Gumby 2 - initial commit
0 parents  commit 2ecea3e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+8065
-0
lines changed

.gitignore

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Numerous always-ignore extensions
2+
*.bak
3+
*.diff
4+
*.err
5+
*.orig
6+
*.log
7+
*.rej
8+
*.swo
9+
*.swp
10+
*.vi
11+
.sass-cache
12+
13+
# OS or Editor folders
14+
.DS_Store
15+
._*
16+
Thumbs.db
17+
.cache
18+
.project
19+
.settings
20+
.tmproj
21+
nbproject
22+
*.sublime-project
23+
*.sublime-workspace
24+
25+
# Dreamweaver added files
26+
_notes
27+
dwsync.xml
28+
29+
# Komodo
30+
*.komodoproject
31+
.komodotools
32+
33+
# Espresso
34+
*.esproj
35+
*.espressostorage
36+
37+
# Rubinius
38+
*.rbc
39+
40+
# Folders to ignore
41+
.hg
42+
.svn
43+
.CVS
44+
.idea

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Gumby Framework
2+
=====================
3+
4+
Gumby Framework is a flexible, responsive CSS Framework, Powered by SASS. Create rapid and logical page layout and app prototypes with a flexible and responsive grid system and UI kit.
5+
6+
Full documentation can be found at [http://gumbyframework.com](http://gumbyframework.com/docs).
7+
8+
Gumby is developed with love by your friends at [Digital Surgeons](http://www.digitalsurgeons.com).
9+
10+
**MIT Open Source License**
11+
12+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
13+
14+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

apple-touch-icon-precomposed.png

54.1 KB
Loading

apple-touch-icon.png

54.1 KB
Loading

config.rb

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Require any additional compass plugins here.
2+
require 'modular-scale'
3+
require 'sassy-math'
4+
5+
# Set this to the root of your project when deployed:
6+
http_path = "/"
7+
css_dir = "css"
8+
sass_dir = "sass"
9+
images_dir = "img"
10+
11+
# You can select your preferred output style here (can be overridden via the command line) :nested or :expanded or :compact or :compressed:
12+
output_style = :compact
13+
14+
# To enable relative paths to assets via compass helper functions. Uncomment:
15+
# relative_assets = true
16+
17+
# To disable debugging comments that display the original location of your selectors. Uncomment:
18+
line_comments = false
19+
20+
21+
# If you prefer the indented syntax, you might want to regenerate this
22+
# project again passing --syntax sass, or you can uncomment this:
23+
# preferred_syntax = :sass
24+
# and then run:
25+
# sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass

0 commit comments

Comments
 (0)