Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
oswaldoacauan committed Nov 11, 2013
0 parents commit 9a7d78b
Show file tree
Hide file tree
Showing 76 changed files with 7,366 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .bowerrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"directory": "src/assets/_components",
"json": "bower.json"
}
37 changes: 37 additions & 0 deletions .csslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"important": false,
"adjoining-classes": false,
"known-properties": true,
"box-sizing": false,
"box-model": false,
"overqualified-elements": false,
"display-property-grouping": true,
"bulletproof-font-face": false,
"compatible-vendor-prefixes": false,
"regex-selectors": false,
"errors": false,
"duplicate-background-images": false,
"duplicate-properties": false,
"empty-rules": false,
"selector-max-approaching": false,
"gradients": false,
"fallback-colors": true,
"font-sizes": false,
"font-faces": false,
"floats": false,
"star-property-hack": false,
"outline-none": false,
"import": true,
"ids": true,
"underscore-property-hack": false,
"rules-count": false,
"qualified-headings": false,
"selector-max": false,
"shorthand": true,
"text-indent": false,
"unique-headings": false,
"universal-selector": false,
"unqualified-attributes": true,
"vendor-prefix": false,
"zero-units": true
}
10 changes: 10 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# http://editorconfig.org
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto
75 changes: 75 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
# Ignore hidden folders
# This takes care of .tmp, .sass-cache, and many others
.*/

# OSX
._*
.AppleDouble
.DS_Store
.localized
.LSOverride
.Spotlight-V100
.Trashes
Icon

# Windows
Desktop.ini
ehthumbs.db
Thumbs.db

# Linux
*~

# Tags
# Ignore tags created by etags and ctags
TAGS
tags

# Vim
.*.sw[a-z]
.netrwhist
*.un~
Session.vim

# Sublime
*.sublime-project
*.sublime-workspace
*.sublime-projectcompletions

# TextMate
*.tmproj
*.tmproject
tmtags

# NetBeans
nbproject/*

# Always-ignore files and folders
*.diff
*.err
*.log
*.orig
*.rej
*.swn
*.swo
*.swp
*.lock
._*
*~

# Ignore packages
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip

# Packages
node_modules/*
src/assets/_components/*

# Ghostium
build
23 changes: 23 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"node": true,
"browser": true,
"esnext": true,
"bitwise": false,
"curly": false,
"eqeqeq": true,
"eqnull": true,
"immed": true,
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": "single",
"undef": true,
"strict": false,
"trailing": true,
"smarttabs": true,
"globals": {
"$": false,
"jQuery": false,
"Modernizr": false
}
}
1 change: 1 addition & 0 deletions .rvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rvm use 2.0.0
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
language: node_js
node_js:
- '0.10'
rvm:
- '2.0.0'
before_install:
- 'npm install -g bower'
- 'gem install bundler'
before_script:
- 'npm install -g grunt-cli'
Empty file added CHANGELOG.md
Empty file.
13 changes: 13 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Contributing

**DON'T CHANGE BUILDED FILES ON ROOT DIRECTORY**

1. Fork it!
2. Create your feature branch: `git checkout -b my-new-feature`
3. Commit your changes: `git commit -m 'Add some feature'`s
4. Push to the branch: `git push origin my-new-feature`
5. Submit a pull request :D

Changelog is generated with git metadata using [these](https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/) conventions.

English is the universal language nowadays, so please don't create or comment on issues using another language.
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source 'http://rubygems.org'

gem 'sass', '>=3.2.11'
gem 'csscss', '~>1.3.2'
Loading

0 comments on commit 9a7d78b

Please sign in to comment.