Massive revamping for Rails 8 and Zurb
This commit is contained in:
parent
7f9502fdfb
commit
b5534b1900
89 changed files with 12555 additions and 736 deletions
39
.gitignore
vendored
39
.gitignore
vendored
|
|
@ -1,19 +1,20 @@
|
|||
# See http://help.github.com/ignore-files/ for more about ignoring files.
|
||||
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
|
||||
#
|
||||
# If you find yourself ignoring temporary files generated by your text editor
|
||||
# or operating system, you probably want to add a global ignore instead:
|
||||
# git config --global core.excludesfile '~/.gitignore_global'
|
||||
# Temporary files generated by your text editor or operating system
|
||||
# belong in git's global ignore instead:
|
||||
# `$XDG_CONFIG_HOME/git/ignore` or `~/.config/git/ignore`
|
||||
|
||||
# Ignore bundler config.
|
||||
/.bundle
|
||||
|
||||
# Ignore the default SQLite database.
|
||||
/db/*.sqlite3
|
||||
/db/*.sqlite3-journal
|
||||
# Ignore all environment files.
|
||||
/.env*
|
||||
|
||||
# Ignore all logfiles and tempfiles.
|
||||
/log/*.log
|
||||
/tmp
|
||||
/log/*
|
||||
/tmp/*
|
||||
!/log/.keep
|
||||
!/tmp/.keep
|
||||
/public/assets/
|
||||
/public/system/
|
||||
# old Paperclip path
|
||||
|
|
@ -27,11 +28,22 @@
|
|||
/public/packs-test/
|
||||
/public/packs/
|
||||
|
||||
/storage
|
||||
# Ignore pidfiles, but keep the directory.
|
||||
/tmp/pids/*
|
||||
!/tmp/pids/
|
||||
!/tmp/pids/.keep
|
||||
|
||||
# Ignore storage (uploaded files in development and any SQLite databases).
|
||||
/storage/*
|
||||
!/storage/.keep
|
||||
/tmp/storage/*
|
||||
!/tmp/storage/
|
||||
!/tmp/storage/.keep
|
||||
*.pdf
|
||||
/debshots2.sublime-workspace
|
||||
|
||||
/public/assets
|
||||
|
||||
/node_modules/
|
||||
/vendor/bundle/ruby/
|
||||
/vendor/ruby/
|
||||
|
|
@ -39,9 +51,16 @@
|
|||
/.vscode
|
||||
*.sql
|
||||
|
||||
# Ignore master key for decrypting credentials and more.
|
||||
/config/master.key
|
||||
# Automatically generated yardoc
|
||||
doc/*.html
|
||||
.yardoc/
|
||||
doc/js/*.js
|
||||
.byebug_history
|
||||
debshots-workspace.code-workspace
|
||||
|
||||
/app/assets/builds/*
|
||||
!/app/assets/builds/.keep
|
||||
|
||||
/node_modules
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue