pueri 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitattributes +194 -0
- data/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- data/.github/ISSUE_TEMPLATE/user_question.md +14 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +14 -0
- data/.github/config.yml +49 -0
- data/.gitignore +252 -0
- data/.rspec +3 -0
- data/.rubocop.yml +10 -0
- data/.travis.yml +22 -0
- data/CHANGELOG.md +26 -0
- data/CODE-OF-CONDUCT.md +78 -0
- data/CONTRIBUTING.md +22 -0
- data/Gemfile +10 -0
- data/Gemfile.lock +82 -0
- data/LICENSE.md +13 -0
- data/README.md +43 -0
- data/Rakefile +8 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/docs/Pueri.html +231 -0
- data/docs/Pueri/Age.html +600 -0
- data/docs/Pueri/Neuro.html +660 -0
- data/docs/Pueri/Vax.html +698 -0
- data/docs/_index.html +152 -0
- data/docs/class_list.html +51 -0
- data/docs/css/common.css +1 -0
- data/docs/css/full_list.css +58 -0
- data/docs/css/style.css +496 -0
- data/docs/file.README.html +116 -0
- data/docs/file_list.html +56 -0
- data/docs/frames.html +17 -0
- data/docs/index.html +116 -0
- data/docs/js/app.js +303 -0
- data/docs/js/full_list.js +216 -0
- data/docs/js/jquery.js +4 -0
- data/docs/method_list.html +211 -0
- data/docs/top-level-namespace.html +110 -0
- data/lib/pueri.rb +15 -0
- data/lib/pueri/age.rb +161 -0
- data/lib/pueri/neuro.rb +144 -0
- data/lib/pueri/vax.rb +121 -0
- data/lib/pueri/version.rb +17 -0
- data/package.json +16 -0
- data/pueri.gemspec +45 -0
- metadata +163 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: e773fa7554f1ef16161c4d466f74879bb174976a20e9bc3bf3f356856007b781
|
4
|
+
data.tar.gz: 496cede959595a1b9a50019fdc88ae1a7f0b0f7cb0dcd57f8884fabaaaabdeda
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 59765cfb694c2bc17dca13707a85d6dcbe0998d40f47d955ff1e66b8b0f5637c9097b7b016bcd96222eb6cf7cc4be5d467187266fff957c4c972f0390baf577e
|
7
|
+
data.tar.gz: eb137c5b1c3997f8efef136093da6c1b526c109dd3cabda1de82f58c031be934754f84e9bb336220b100d83b63b921cc3f1420238d4cb9157b88cd49c26880e0
|
data/.gitattributes
ADDED
@@ -0,0 +1,194 @@
|
|
1
|
+
## GITATTRIBUTES FOR WEB PROJECTS
|
2
|
+
#
|
3
|
+
# These settings are for any web project.
|
4
|
+
#
|
5
|
+
# Details per file setting:
|
6
|
+
# text These files should be normalized (i.e. convert CRLF to LF).
|
7
|
+
# binary These files are binary and should be left untouched.
|
8
|
+
#
|
9
|
+
# Note that binary is a macro for -text -diff.
|
10
|
+
######################################################################
|
11
|
+
|
12
|
+
## AUTO-DETECT - Handle line endings automatically for files detected
|
13
|
+
## as text and leave all files detected as binary untouched.
|
14
|
+
## This will handle all files NOT defined below.
|
15
|
+
* text=auto
|
16
|
+
|
17
|
+
## SOURCE CODE
|
18
|
+
*.bat text
|
19
|
+
*.coffee text
|
20
|
+
*.css text
|
21
|
+
*.htm text
|
22
|
+
*.html text
|
23
|
+
*.inc text
|
24
|
+
*.ini text
|
25
|
+
*.js text
|
26
|
+
*.jsx text
|
27
|
+
*.json text
|
28
|
+
*.less text
|
29
|
+
*.php text
|
30
|
+
*.pl text
|
31
|
+
*.py text
|
32
|
+
*.rb text
|
33
|
+
*.sass text
|
34
|
+
*.scm text
|
35
|
+
*.scss text
|
36
|
+
*.sh text
|
37
|
+
*.sql text
|
38
|
+
*.styl text
|
39
|
+
*.ts text
|
40
|
+
*.xml text
|
41
|
+
*.xhtml text
|
42
|
+
|
43
|
+
## DOCUMENTATION
|
44
|
+
*.markdown text
|
45
|
+
*.md text
|
46
|
+
*.mdwn text
|
47
|
+
*.mdown text
|
48
|
+
*.mkd text
|
49
|
+
*.mkdn text
|
50
|
+
*.mdtxt text
|
51
|
+
*.mdtext text
|
52
|
+
*.txt text
|
53
|
+
AUTHORS text
|
54
|
+
CHANGELOG text
|
55
|
+
CHANGES text
|
56
|
+
CONTRIBUTING text
|
57
|
+
COPYING text
|
58
|
+
INSTALL text
|
59
|
+
license text
|
60
|
+
LICENSE text
|
61
|
+
NEWS text
|
62
|
+
readme text
|
63
|
+
*README* text
|
64
|
+
TODO text
|
65
|
+
|
66
|
+
## TEMPLATES
|
67
|
+
*.dot text
|
68
|
+
*.ejs text
|
69
|
+
*.haml text
|
70
|
+
*.handlebars text
|
71
|
+
*.hbs text
|
72
|
+
*.hbt text
|
73
|
+
*.jade text
|
74
|
+
*.latte text
|
75
|
+
*.mustache text
|
76
|
+
*.phtml text
|
77
|
+
*.tmpl text
|
78
|
+
|
79
|
+
## LINTERS
|
80
|
+
.csslintrc text
|
81
|
+
.eslintrc text
|
82
|
+
.jscsrc text
|
83
|
+
.jshintrc text
|
84
|
+
.jshintignore text
|
85
|
+
.stylelintrc text
|
86
|
+
|
87
|
+
## CONFIGS
|
88
|
+
*.bowerrc text
|
89
|
+
*.cnf text
|
90
|
+
*.conf text
|
91
|
+
*.config text
|
92
|
+
.editorconfig text
|
93
|
+
.gitattributes text
|
94
|
+
.gitconfig text
|
95
|
+
.gitignore text
|
96
|
+
.htaccess text
|
97
|
+
*.npmignore text
|
98
|
+
*.yaml text
|
99
|
+
*.yml text
|
100
|
+
Makefile text
|
101
|
+
makefile text
|
102
|
+
|
103
|
+
## HEROKU
|
104
|
+
Procfile text
|
105
|
+
.slugignore text
|
106
|
+
|
107
|
+
## GRAPHICS
|
108
|
+
*.ai filter=lfs diff=lfs merge=lfs -text
|
109
|
+
*.bmp binary
|
110
|
+
*.eps filter=lfs diff=lfs merge=lfs -text
|
111
|
+
*.gif binary
|
112
|
+
*.ico binary
|
113
|
+
*.jng binary
|
114
|
+
*.jp2 binary
|
115
|
+
*.jpg binary
|
116
|
+
*.jpeg binary
|
117
|
+
*.jpx binary
|
118
|
+
*.jxr binary
|
119
|
+
*.pdf binary
|
120
|
+
*.png binary
|
121
|
+
*.psb binary
|
122
|
+
*.psd filter=lfs diff=lfs merge=lfs -text
|
123
|
+
*.svg text
|
124
|
+
*.svgz binary
|
125
|
+
*.tif filter=lfs diff=lfs merge=lfs -text
|
126
|
+
*.tiff filter=lfs diff=lfs merge=lfs -text
|
127
|
+
*.wbmp binary
|
128
|
+
*.webp binary
|
129
|
+
|
130
|
+
## AUDIO
|
131
|
+
*.kar filter=lfs diff=lfs merge=lfs -text
|
132
|
+
*.m4a filter=lfs diff=lfs merge=lfs -text
|
133
|
+
*.mid filter=lfs diff=lfs merge=lfs -text
|
134
|
+
*.midi filter=lfs diff=lfs merge=lfs -text
|
135
|
+
*.mp3 filter=lfs diff=lfs merge=lfs -text
|
136
|
+
*.ogg filter=lfs diff=lfs merge=lfs -text
|
137
|
+
*.ra filter=lfs diff=lfs merge=lfs -text
|
138
|
+
|
139
|
+
## VIDEO
|
140
|
+
*.3gpp filter=lfs diff=lfs merge=lfs -text
|
141
|
+
*.3gp filter=lfs diff=lfs merge=lfs -text
|
142
|
+
*.as filter=lfs diff=lfs merge=lfs -text
|
143
|
+
*.asf filter=lfs diff=lfs merge=lfs -text
|
144
|
+
*.asx filter=lfs diff=lfs merge=lfs -text
|
145
|
+
*.fla filter=lfs diff=lfs merge=lfs -text
|
146
|
+
*.flv filter=lfs diff=lfs merge=lfs -text
|
147
|
+
*.m4v filter=lfs diff=lfs merge=lfs -text
|
148
|
+
*.mng filter=lfs diff=lfs merge=lfs -text
|
149
|
+
*.mov filter=lfs diff=lfs merge=lfs -text
|
150
|
+
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
151
|
+
*.mpeg filter=lfs diff=lfs merge=lfs -text
|
152
|
+
*.mpg filter=lfs diff=lfs merge=lfs -text
|
153
|
+
*.swc filter=lfs diff=lfs merge=lfs -text
|
154
|
+
*.swf filter=lfs diff=lfs merge=lfs -text
|
155
|
+
*.webm filter=lfs diff=lfs merge=lfs -text
|
156
|
+
|
157
|
+
## ARCHIVES
|
158
|
+
*.7z binary
|
159
|
+
*.gz binary
|
160
|
+
*.rar binary
|
161
|
+
*.tar binary
|
162
|
+
*.zip binary
|
163
|
+
|
164
|
+
## FONTS
|
165
|
+
*.ttf binary
|
166
|
+
*.eot binary
|
167
|
+
*.otf binary
|
168
|
+
*.woff binary
|
169
|
+
*.woff2 binary
|
170
|
+
|
171
|
+
## EXECUTABLES
|
172
|
+
*.exe binary
|
173
|
+
*.pyc binary
|
174
|
+
|
175
|
+
|
176
|
+
# Documents
|
177
|
+
*.doc diff=astextplain
|
178
|
+
*.DOC diff=astextplain
|
179
|
+
*.docx diff=astextplain
|
180
|
+
*.DOCX diff=astextplain
|
181
|
+
*.dot diff=astextplain
|
182
|
+
*.DOT diff=astextplain
|
183
|
+
*.pdf diff=astextplain
|
184
|
+
*.PDF diff=astextplain
|
185
|
+
*.rtf diff=astextplain
|
186
|
+
*.RTF diff=astextplain
|
187
|
+
*.md text
|
188
|
+
*.adoc text
|
189
|
+
*.textile text
|
190
|
+
*.mustache text
|
191
|
+
*.csv text
|
192
|
+
*.tab text
|
193
|
+
*.tsv text
|
194
|
+
*.sql text
|
@@ -0,0 +1,38 @@
|
|
1
|
+
---
|
2
|
+
name: Bug report
|
3
|
+
about: Create a report to help us improve
|
4
|
+
title: ''
|
5
|
+
labels: 'bug'
|
6
|
+
assignees: ''
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
**Describe the bug**
|
11
|
+
A clear and concise description of what the bug is.
|
12
|
+
|
13
|
+
**To Reproduce**
|
14
|
+
Steps to reproduce the behavior:
|
15
|
+
1. Go to '...'
|
16
|
+
2. Click on '....'
|
17
|
+
3. Scroll down to '....'
|
18
|
+
4. See error
|
19
|
+
|
20
|
+
**Expected behavior**
|
21
|
+
A clear and concise description of what you expected to happen.
|
22
|
+
|
23
|
+
**Screenshots**
|
24
|
+
If applicable, add screenshots to help explain your problem.
|
25
|
+
|
26
|
+
**Desktop (please complete the following information):**
|
27
|
+
- OS: [e.g. iOS]
|
28
|
+
- Browser [e.g. chrome, safari]
|
29
|
+
- Version [e.g. 22]
|
30
|
+
|
31
|
+
**Smartphone (please complete the following information):**
|
32
|
+
- Device: [e.g. iPhone6]
|
33
|
+
- OS: [e.g. iOS8.1]
|
34
|
+
- Browser [e.g. stock browser, safari]
|
35
|
+
- Version [e.g. 22]
|
36
|
+
|
37
|
+
**Additional context**
|
38
|
+
Add any other context about the problem here.
|
@@ -0,0 +1,20 @@
|
|
1
|
+
---
|
2
|
+
name: Feature request
|
3
|
+
about: Suggest an idea for this project
|
4
|
+
title: ''
|
5
|
+
labels: 'enhancement'
|
6
|
+
assignees: ''
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
**Is your feature request related to a problem? Please describe.**
|
11
|
+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
12
|
+
|
13
|
+
**Describe the solution you'd like**
|
14
|
+
A clear and concise description of what you want to happen.
|
15
|
+
|
16
|
+
**Describe alternatives you've considered**
|
17
|
+
A clear and concise description of any alternative solutions or features you've considered.
|
18
|
+
|
19
|
+
**Additional context**
|
20
|
+
Add any other context or screenshots about the feature request here.
|
@@ -0,0 +1,14 @@
|
|
1
|
+
---
|
2
|
+
name: User Question
|
3
|
+
about: Ask us a question
|
4
|
+
title: ''
|
5
|
+
labels: 'question'
|
6
|
+
assignees: ''
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
**My question:**
|
11
|
+
Briefly describe your question. What are you trying to accomplish?
|
12
|
+
|
13
|
+
**I've already tried:**
|
14
|
+
Help us help you by letting us know what you have already tried in your efforts to accomplish this.
|
@@ -0,0 +1,14 @@
|
|
1
|
+
Describe concisely the changes implemented by the code on this pull request.
|
2
|
+
|
3
|
+
- **Added:**
|
4
|
+
- Added stuff on this PR.
|
5
|
+
- **Changed:**
|
6
|
+
- Changed stuff on this PR.
|
7
|
+
- **Deprecated:**
|
8
|
+
- Deprecated stuff on this PR.
|
9
|
+
- **Removed:**
|
10
|
+
- Removed stuff on this PR.
|
11
|
+
- **Fixed:**
|
12
|
+
- Fixed stuff on this PR.
|
13
|
+
- **Security:**
|
14
|
+
- Security stuff on this PR.
|
data/.github/config.yml
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
####################################################
|
2
|
+
# ToDo Bot Configuration #
|
3
|
+
####################################################
|
4
|
+
todo:
|
5
|
+
autoAssign: true
|
6
|
+
exclude: "\.gitattributes"
|
7
|
+
|
8
|
+
####################################################
|
9
|
+
# Welcome Bot Configuration #
|
10
|
+
####################################################
|
11
|
+
# new-issue-welcome #
|
12
|
+
# https://github.com/behaviorbot/new-issue-welcome #
|
13
|
+
####################################################
|
14
|
+
newIssueWelcomeComment: >
|
15
|
+
Thanks for opening your first issue here! :sparkles:
|
16
|
+
|
17
|
+
This repository has an **issue template** and we ask that you follow it.
|
18
|
+
|
19
|
+
Also, note that there is a **[Code of Conduct](CODE-OF-CONDUCT.md)**. Please take a time to read it.
|
20
|
+
|
21
|
+
The :busts_in_silhouette: humans will be here shortly to assess your issue! And thanks once again for your first issue! :tada:
|
22
|
+
####################################################
|
23
|
+
# new-pr-welcome #
|
24
|
+
# https://github.com/behaviorbot/new-pr-welcome #
|
25
|
+
####################################################
|
26
|
+
newPRWelcomeComment: >
|
27
|
+
Thanks for opening this pull request! :octocat:
|
28
|
+
|
29
|
+
Please check out our [Contributing Guidelines](CONTRIBUTING.md) and our [Code of Conduct](CODE-OF-CONDUCT.md).
|
30
|
+
####################################################
|
31
|
+
# first-pr-merge #
|
32
|
+
# https://github.com/behaviorbot/first-pr-merge #
|
33
|
+
####################################################
|
34
|
+
firstPRMergeComment: >
|
35
|
+
Congrats on merging your first pull request! :+1:
|
36
|
+
|
37
|
+
Keep on coding! :tada:
|
38
|
+
|
39
|
+
####################################################
|
40
|
+
# Sentiment Bot Configuration #
|
41
|
+
####################################################
|
42
|
+
# sentiment-bot #
|
43
|
+
# https://github.com/behaviorbot/sentiment-bot #
|
44
|
+
####################################################
|
45
|
+
sentimentBotToxicityThreshold: .7
|
46
|
+
sentimentBotReplyComment: >
|
47
|
+
Please be sure to review the [code of conduct](code-of-conduct.md) and be respectful.
|
48
|
+
|
49
|
+
The human @Nereare will be here to review this shortly.
|
data/.gitignore
ADDED
@@ -0,0 +1,252 @@
|
|
1
|
+
# Created by https://www.gitignore.io/api/osx,node,ruby,code,linux,grunt,macos,dropbox,windows
|
2
|
+
# Edit at https://www.gitignore.io/?templates=osx,node,ruby,code,linux,grunt,macos,dropbox,windows
|
3
|
+
|
4
|
+
### Code ###
|
5
|
+
.vscode/*
|
6
|
+
!.vscode/settings.json
|
7
|
+
!.vscode/tasks.json
|
8
|
+
!.vscode/launch.json
|
9
|
+
!.vscode/extensions.json
|
10
|
+
|
11
|
+
### Dropbox ###
|
12
|
+
# Dropbox settings and caches
|
13
|
+
.dropbox
|
14
|
+
.dropbox.attr
|
15
|
+
.dropbox.cache
|
16
|
+
|
17
|
+
### grunt ###
|
18
|
+
# Grunt usually compiles files inside this directory
|
19
|
+
dist/
|
20
|
+
|
21
|
+
# Grunt usually preprocesses files such as coffeescript, compass... inside the .tmp directory
|
22
|
+
.tmp/
|
23
|
+
|
24
|
+
### Linux ###
|
25
|
+
*~
|
26
|
+
|
27
|
+
# temporary files which can be created if a process still has a handle open of a deleted file
|
28
|
+
.fuse_hidden*
|
29
|
+
|
30
|
+
# KDE directory preferences
|
31
|
+
.directory
|
32
|
+
|
33
|
+
# Linux trash folder which might appear on any partition or disk
|
34
|
+
.Trash-*
|
35
|
+
|
36
|
+
# .nfs files are created when an open file is removed but is still being accessed
|
37
|
+
.nfs*
|
38
|
+
|
39
|
+
### macOS ###
|
40
|
+
# General
|
41
|
+
.DS_Store
|
42
|
+
.AppleDouble
|
43
|
+
.LSOverride
|
44
|
+
|
45
|
+
# Icon must end with two \r
|
46
|
+
Icon
|
47
|
+
|
48
|
+
# Thumbnails
|
49
|
+
._*
|
50
|
+
|
51
|
+
# Files that might appear in the root of a volume
|
52
|
+
.DocumentRevisions-V100
|
53
|
+
.fseventsd
|
54
|
+
.Spotlight-V100
|
55
|
+
.TemporaryItems
|
56
|
+
.Trashes
|
57
|
+
.VolumeIcon.icns
|
58
|
+
.com.apple.timemachine.donotpresent
|
59
|
+
|
60
|
+
# Directories potentially created on remote AFP share
|
61
|
+
.AppleDB
|
62
|
+
.AppleDesktop
|
63
|
+
Network Trash Folder
|
64
|
+
Temporary Items
|
65
|
+
.apdisk
|
66
|
+
|
67
|
+
### Node ###
|
68
|
+
# Logs
|
69
|
+
logs
|
70
|
+
*.log
|
71
|
+
npm-debug.log*
|
72
|
+
yarn-debug.log*
|
73
|
+
yarn-error.log*
|
74
|
+
lerna-debug.log*
|
75
|
+
|
76
|
+
# Diagnostic reports (https://nodejs.org/api/report.html)
|
77
|
+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
78
|
+
|
79
|
+
# Runtime data
|
80
|
+
pids
|
81
|
+
*.pid
|
82
|
+
*.seed
|
83
|
+
*.pid.lock
|
84
|
+
|
85
|
+
# Directory for instrumented libs generated by jscoverage/JSCover
|
86
|
+
lib-cov
|
87
|
+
|
88
|
+
# Coverage directory used by tools like istanbul
|
89
|
+
coverage
|
90
|
+
*.lcov
|
91
|
+
|
92
|
+
# nyc test coverage
|
93
|
+
.nyc_output
|
94
|
+
|
95
|
+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
96
|
+
.grunt
|
97
|
+
|
98
|
+
# Bower dependency directory (https://bower.io/)
|
99
|
+
bower_components
|
100
|
+
|
101
|
+
# node-waf configuration
|
102
|
+
.lock-wscript
|
103
|
+
|
104
|
+
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
105
|
+
build/Release
|
106
|
+
|
107
|
+
# Dependency directories
|
108
|
+
node_modules/
|
109
|
+
jspm_packages/
|
110
|
+
|
111
|
+
# TypeScript v1 declaration files
|
112
|
+
typings/
|
113
|
+
|
114
|
+
# TypeScript cache
|
115
|
+
*.tsbuildinfo
|
116
|
+
|
117
|
+
# Optional npm cache directory
|
118
|
+
.npm
|
119
|
+
|
120
|
+
# Optional eslint cache
|
121
|
+
.eslintcache
|
122
|
+
|
123
|
+
# Optional REPL history
|
124
|
+
.node_repl_history
|
125
|
+
|
126
|
+
# Output of 'npm pack'
|
127
|
+
*.tgz
|
128
|
+
|
129
|
+
# Yarn Integrity file
|
130
|
+
.yarn-integrity
|
131
|
+
|
132
|
+
# dotenv environment variables file
|
133
|
+
.env
|
134
|
+
.env.test
|
135
|
+
|
136
|
+
# parcel-bundler cache (https://parceljs.org/)
|
137
|
+
.cache
|
138
|
+
|
139
|
+
# next.js build output
|
140
|
+
.next
|
141
|
+
|
142
|
+
# nuxt.js build output
|
143
|
+
.nuxt
|
144
|
+
|
145
|
+
# react / gatsby
|
146
|
+
public/
|
147
|
+
|
148
|
+
# vuepress build output
|
149
|
+
.vuepress/dist
|
150
|
+
|
151
|
+
# Serverless directories
|
152
|
+
.serverless/
|
153
|
+
|
154
|
+
# FuseBox cache
|
155
|
+
.fusebox/
|
156
|
+
|
157
|
+
# DynamoDB Local files
|
158
|
+
.dynamodb/
|
159
|
+
|
160
|
+
### OSX ###
|
161
|
+
# General
|
162
|
+
|
163
|
+
# Icon must end with two \r
|
164
|
+
|
165
|
+
# Thumbnails
|
166
|
+
|
167
|
+
# Files that might appear in the root of a volume
|
168
|
+
|
169
|
+
# Directories potentially created on remote AFP share
|
170
|
+
|
171
|
+
### Ruby ###
|
172
|
+
*.gem
|
173
|
+
*.rbc
|
174
|
+
/.config
|
175
|
+
/coverage/
|
176
|
+
/InstalledFiles
|
177
|
+
/pkg/
|
178
|
+
/spec/reports/
|
179
|
+
/spec/examples.txt
|
180
|
+
/test/tmp/
|
181
|
+
/test/version_tmp/
|
182
|
+
/tmp/
|
183
|
+
.rspec_status
|
184
|
+
|
185
|
+
# Used by dotenv library to load environment variables.
|
186
|
+
# .env
|
187
|
+
|
188
|
+
# Ignore Byebug command history file.
|
189
|
+
.byebug_history
|
190
|
+
|
191
|
+
## Specific to RubyMotion:
|
192
|
+
.dat*
|
193
|
+
.repl_history
|
194
|
+
build/
|
195
|
+
*.bridgesupport
|
196
|
+
build-iPhoneOS/
|
197
|
+
build-iPhoneSimulator/
|
198
|
+
|
199
|
+
## Specific to RubyMotion (use of CocoaPods):
|
200
|
+
#
|
201
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
202
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
203
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
204
|
+
# vendor/Pods/
|
205
|
+
|
206
|
+
## Documentation cache and generated files:
|
207
|
+
/.yardoc/
|
208
|
+
/_yardoc/
|
209
|
+
/doc/
|
210
|
+
/rdoc/
|
211
|
+
|
212
|
+
## Environment normalization:
|
213
|
+
/.bundle/
|
214
|
+
/vendor/bundle
|
215
|
+
/lib/bundler/man/
|
216
|
+
|
217
|
+
# for a library or gem, you might want to ignore these files since the code is
|
218
|
+
# intended to run in multiple environments; otherwise, check them in:
|
219
|
+
# Gemfile.lock
|
220
|
+
# .ruby-version
|
221
|
+
# .ruby-gemset
|
222
|
+
|
223
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
224
|
+
.rvmrc
|
225
|
+
|
226
|
+
### Windows ###
|
227
|
+
# Windows thumbnail cache files
|
228
|
+
Thumbs.db
|
229
|
+
Thumbs.db:encryptable
|
230
|
+
ehthumbs.db
|
231
|
+
ehthumbs_vista.db
|
232
|
+
|
233
|
+
# Dump file
|
234
|
+
*.stackdump
|
235
|
+
|
236
|
+
# Folder config file
|
237
|
+
[Dd]esktop.ini
|
238
|
+
|
239
|
+
# Recycle Bin used on file shares
|
240
|
+
$RECYCLE.BIN/
|
241
|
+
|
242
|
+
# Windows Installer files
|
243
|
+
*.cab
|
244
|
+
*.msi
|
245
|
+
*.msix
|
246
|
+
*.msm
|
247
|
+
*.msp
|
248
|
+
|
249
|
+
# Windows shortcuts
|
250
|
+
*.lnk
|
251
|
+
|
252
|
+
# End of https://www.gitignore.io/api/osx,node,ruby,code,linux,grunt,macos,dropbox,windows
|