-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
141 lines (118 loc) · 3.13 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
# Warning! .gitignore does not permit comments on the same line as the ignored pattern.
# They will cause a pattern mis-match!
# Ask me how I know...
# There is a collection of useful patterns here:
# https://github.com/github/gitignore
#---------------------------------------------------------------------
# General common-sense patterns and application backup files
# If you'd like to keep an "old" version of a file around for a while,
# please use .orig
#---------------------------------------------------------------------
tmp/
*.tmp
*.bak
~*.xlsx
~*.docx
~*.pptx
#------------------
# Rhodes
#------------------
rholog.txt
rholog-*
sim-*
public/api/generated/
.cbc
# Generated code in native extensions
# ERRONEOUS: No need to check-in, as it is generated by buind from the
# XML description of the API. Build generates if not present,
# and you can also generate with `rhodes api foo.xml`
# -----
# No! This should be checked-in IMO.
#generated/
# Native extensions get built inside build/ directories for each platform, not in project/
build/
# build output
bin/
project/
rhosimulator/*
rhoconfig.txt.changes
#------
# rvm
#------
# Do not check-in rvm auto-selection files, because these just tell rvm
# the NAME of the ruby version and gemset to use, which may be different
# on different user's system
# .ruby-version/.ruby-gemset is current (cross-tool config files, not .rvm-specific)
#.ruby-version
#.ruby-gemset
#----------
# bootstrap
#----------
# public/css/bootstrap/_gh_pages/*
# public/css/bootstrap/docs/*
# public/css/bootstrap/img/*
# public/css/bootstrap/node_modules/*
npm-debug.log
*-sample.json
#----------------------
# Apple nuisance files
#----------------------
.DS_Store
.AppleDouble
.LSOverride
# These might be around if you copied files from an external disk, thumb drive, etc.
.Spotlight-V100
.Trashes
#--------------------------------------------------
# Eclipse. Who, knows, somebody might try RhoStudio
#--------------------------------------------------
.metadata
*.swp
*~.nib
local.properties
.settings/
.loadpath
.externalToolBuilders/
# Locally stored "Eclipse launch configurations"
*.launch
#-------
# XCode
#-------
xcworkspace/
xcworkspace/*
# user-specific
xcuserdata
xcuserdata/*
.xcworkspace
*.xccheckout
contents.xcworkspacedata
#-------------
# Text editors
#-------------
# Textmate
*.tmproj
*.tmproject
tmtags
# Sublime
# DO check-in *.sublime-project. Use project name as first part.
# This guides developers on project settings if they use sublime.
# It is important to maintain project standards for spacing, tabs,
# line endings, etc. to minimize difficulties when comparing files,
# git differences, etc.
#
# If developers want to make some personal changes, DO check-in
# a project file with initials - e.g.
# jci-rhomobile.jt.sublime-project for transparancy.
#
# Do NOT check-in *.sublime-workspace, as this is throwaway info
# such as bookmarks, etc.
*.sublime-workspace
#---------
# SASS
#---------
.sass-cache
# cache file used by oh-my-zsh fast-rake plugin
.rake_tasks
# Normally I do not exclude this. I am excluding it for security reasons
# as I have omitted the use of the pre-build "prepare" script
build.yml