wor-batchifier 0.0.2 → 1.0.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 +5 -5
- data/.gitignore +327 -327
- data/.rubocop.yml +25 -25
- data/Gemfile +4 -4
- data/README.md +155 -134
- data/Rakefile +6 -6
- data/lib/wor/batchifier.rb +31 -36
- data/lib/wor/batchifier/add.rb +9 -9
- data/lib/wor/batchifier/array_merge.rb +10 -10
- data/lib/wor/batchifier/exceptions.rb +11 -10
- data/lib/wor/batchifier/maintain_unique.rb +9 -9
- data/lib/wor/batchifier/merge_params/object.rb +15 -0
- data/lib/wor/batchifier/merge_params/proc.rb +15 -0
- data/lib/wor/batchifier/merge_params/symbol.rb +24 -0
- data/lib/wor/batchifier/no_response.rb +9 -9
- data/lib/wor/batchifier/strategy.rb +20 -20
- data/lib/wor/batchifier/version.rb +5 -5
- data/wor-batchifier.gemspec +33 -33
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 175a0c2742dd7df3b5f73ab61bb289382b4182cd
|
4
|
+
data.tar.gz: 78330610ed2be696414b4308c58281ae4358e060
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e86b98dbd746c34efa40f4bed797f0ec249a53e783653248b564d4ee36da592c051ba6810af977f11184e824dc9c73521a9b4b006b6eaf4ab59f825011ae70b6
|
7
|
+
data.tar.gz: 50b18a8564895bb1182e533c7f9392e9db2ea22b19cd2207db667e40632ededdf4f00c83a2569a456768819a1899cc86bc822c7ab9d41523b8eb6fd75e3c2ef5
|
data/.gitignore
CHANGED
@@ -1,327 +1,327 @@
|
|
1
|
-
/.bundle/
|
2
|
-
/.yardoc
|
3
|
-
/Gemfile.lock
|
4
|
-
/_yardoc/
|
5
|
-
/coverage/
|
6
|
-
/doc/
|
7
|
-
/pkg/
|
8
|
-
/spec/reports/
|
9
|
-
/tmp/
|
10
|
-
*.gem
|
11
|
-
|
12
|
-
|
13
|
-
# Created by https://www.gitignore.io/api/ruby,rubymine,rails,emacs,vim,sublimetext,osx,macos,linux,windows
|
14
|
-
|
15
|
-
### Emacs ###
|
16
|
-
# -*- mode: gitignore; -*-
|
17
|
-
*~
|
18
|
-
\#*\#
|
19
|
-
/.emacs.desktop
|
20
|
-
/.emacs.desktop.lock
|
21
|
-
*.elc
|
22
|
-
auto-save-list
|
23
|
-
tramp
|
24
|
-
.\#*
|
25
|
-
|
26
|
-
# Org-mode
|
27
|
-
.org-id-locations
|
28
|
-
*_archive
|
29
|
-
|
30
|
-
# flymake-mode
|
31
|
-
*_flymake.*
|
32
|
-
|
33
|
-
# eshell files
|
34
|
-
/eshell/history
|
35
|
-
/eshell/lastdir
|
36
|
-
|
37
|
-
# elpa packages
|
38
|
-
/elpa/
|
39
|
-
|
40
|
-
# reftex files
|
41
|
-
*.rel
|
42
|
-
|
43
|
-
# AUCTeX auto folder
|
44
|
-
/auto/
|
45
|
-
|
46
|
-
# cask packages
|
47
|
-
.cask/
|
48
|
-
dist/
|
49
|
-
|
50
|
-
# Flycheck
|
51
|
-
flycheck_*.el
|
52
|
-
|
53
|
-
# server auth directory
|
54
|
-
/server/
|
55
|
-
|
56
|
-
# projectiles files
|
57
|
-
.projectile
|
58
|
-
|
59
|
-
# directory configuration
|
60
|
-
.dir-locals.el
|
61
|
-
|
62
|
-
### Linux ###
|
63
|
-
|
64
|
-
# temporary files which can be created if a process still has a handle open of a deleted file
|
65
|
-
.fuse_hidden*
|
66
|
-
|
67
|
-
# KDE directory preferences
|
68
|
-
.directory
|
69
|
-
|
70
|
-
# Linux trash folder which might appear on any partition or disk
|
71
|
-
.Trash-*
|
72
|
-
|
73
|
-
# .nfs files are created when an open file is removed but is still being accessed
|
74
|
-
.nfs*
|
75
|
-
|
76
|
-
### macOS ###
|
77
|
-
*.DS_Store
|
78
|
-
.AppleDouble
|
79
|
-
.LSOverride
|
80
|
-
|
81
|
-
# Icon must end with two \r
|
82
|
-
Icon
|
83
|
-
|
84
|
-
|
85
|
-
# Thumbnails
|
86
|
-
._*
|
87
|
-
|
88
|
-
# Files that might appear in the root of a volume
|
89
|
-
.DocumentRevisions-V100
|
90
|
-
.fseventsd
|
91
|
-
.Spotlight-V100
|
92
|
-
.TemporaryItems
|
93
|
-
.Trashes
|
94
|
-
.VolumeIcon.icns
|
95
|
-
.com.apple.timemachine.donotpresent
|
96
|
-
|
97
|
-
# Directories potentially created on remote AFP share
|
98
|
-
.AppleDB
|
99
|
-
.AppleDesktop
|
100
|
-
Network Trash Folder
|
101
|
-
Temporary Items
|
102
|
-
.apdisk
|
103
|
-
|
104
|
-
### OSX ###
|
105
|
-
|
106
|
-
# Icon must end with two \r
|
107
|
-
|
108
|
-
|
109
|
-
# Thumbnails
|
110
|
-
|
111
|
-
# Files that might appear in the root of a volume
|
112
|
-
|
113
|
-
# Directories potentially created on remote AFP share
|
114
|
-
|
115
|
-
### Rails ###
|
116
|
-
*.rbc
|
117
|
-
capybara-*.html
|
118
|
-
.rspec
|
119
|
-
/log
|
120
|
-
/tmp
|
121
|
-
/db/*.sqlite3
|
122
|
-
/db/*.sqlite3-journal
|
123
|
-
/public/system
|
124
|
-
/coverage/
|
125
|
-
/spec/tmp
|
126
|
-
**.orig
|
127
|
-
rerun.txt
|
128
|
-
pickle-email-*.html
|
129
|
-
|
130
|
-
# TODO Comment out this rule if you are OK with secrets being uploaded to the repo
|
131
|
-
config/initializers/secret_token.rb
|
132
|
-
|
133
|
-
# Only include if you have production secrets in this file, which is no longer a Rails default
|
134
|
-
# config/secrets.yml
|
135
|
-
|
136
|
-
# dotenv
|
137
|
-
# TODO Comment out this rule if environment variables can be committed
|
138
|
-
.env
|
139
|
-
|
140
|
-
## Environment normalization:
|
141
|
-
/.bundle
|
142
|
-
/vendor/bundle
|
143
|
-
|
144
|
-
# these should all be checked in to normalize the environment:
|
145
|
-
# Gemfile.lock, .ruby-version, .ruby-gemset
|
146
|
-
|
147
|
-
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
148
|
-
.rvmrc
|
149
|
-
|
150
|
-
# if using bower-rails ignore default bower_components path bower.json files
|
151
|
-
/vendor/assets/bower_components
|
152
|
-
*.bowerrc
|
153
|
-
bower.json
|
154
|
-
|
155
|
-
# Ignore pow environment settings
|
156
|
-
.powenv
|
157
|
-
|
158
|
-
# Ignore Byebug command history file.
|
159
|
-
.byebug_history
|
160
|
-
|
161
|
-
### Ruby ###
|
162
|
-
*.gem
|
163
|
-
/.config
|
164
|
-
/InstalledFiles
|
165
|
-
/pkg/
|
166
|
-
/spec/reports/
|
167
|
-
/spec/examples.txt
|
168
|
-
/test/tmp/
|
169
|
-
/test/version_tmp/
|
170
|
-
/tmp/
|
171
|
-
|
172
|
-
# Used by dotenv library to load environment variables.
|
173
|
-
# .env
|
174
|
-
|
175
|
-
## Specific to RubyMotion:
|
176
|
-
.dat*
|
177
|
-
.repl_history
|
178
|
-
build/
|
179
|
-
*.bridgesupport
|
180
|
-
build-iPhoneOS/
|
181
|
-
build-iPhoneSimulator/
|
182
|
-
|
183
|
-
## Specific to RubyMotion (use of CocoaPods):
|
184
|
-
#
|
185
|
-
# We recommend against adding the Pods directory to your .gitignore. However
|
186
|
-
# you should judge for yourself, the pros and cons are mentioned at:
|
187
|
-
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
188
|
-
#
|
189
|
-
# vendor/Pods/
|
190
|
-
|
191
|
-
## Documentation cache and generated files:
|
192
|
-
/.yardoc/
|
193
|
-
/_yardoc/
|
194
|
-
/doc/
|
195
|
-
/rdoc/
|
196
|
-
|
197
|
-
## Environment normalization:
|
198
|
-
/.bundle/
|
199
|
-
/lib/bundler/man/
|
200
|
-
|
201
|
-
# for a library or gem, you might want to ignore these files since the code is
|
202
|
-
# intended to run in multiple environments; otherwise, check them in:
|
203
|
-
# Gemfile.lock
|
204
|
-
# .ruby-version
|
205
|
-
# .ruby-gemset
|
206
|
-
|
207
|
-
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
208
|
-
|
209
|
-
### RubyMine ###
|
210
|
-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
211
|
-
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
212
|
-
|
213
|
-
# User-specific stuff:
|
214
|
-
.idea/**/workspace.xml
|
215
|
-
.idea/**/tasks.xml
|
216
|
-
|
217
|
-
# Sensitive or high-churn files:
|
218
|
-
.idea/**/dataSources/
|
219
|
-
.idea/**/dataSources.ids
|
220
|
-
.idea/**/dataSources.xml
|
221
|
-
.idea/**/dataSources.local.xml
|
222
|
-
.idea/**/sqlDataSources.xml
|
223
|
-
.idea/**/dynamic.xml
|
224
|
-
.idea/**/uiDesigner.xml
|
225
|
-
|
226
|
-
# Gradle:
|
227
|
-
.idea/**/gradle.xml
|
228
|
-
.idea/**/libraries
|
229
|
-
|
230
|
-
# Mongo Explorer plugin:
|
231
|
-
.idea/**/mongoSettings.xml
|
232
|
-
|
233
|
-
## File-based project format:
|
234
|
-
*.iws
|
235
|
-
|
236
|
-
## Plugin-specific files:
|
237
|
-
|
238
|
-
# IntelliJ
|
239
|
-
/out/
|
240
|
-
|
241
|
-
# mpeltonen/sbt-idea plugin
|
242
|
-
.idea_modules/
|
243
|
-
|
244
|
-
# JIRA plugin
|
245
|
-
atlassian-ide-plugin.xml
|
246
|
-
|
247
|
-
# Crashlytics plugin (for Android Studio and IntelliJ)
|
248
|
-
com_crashlytics_export_strings.xml
|
249
|
-
crashlytics.properties
|
250
|
-
crashlytics-build.properties
|
251
|
-
fabric.properties
|
252
|
-
|
253
|
-
### RubyMine Patch ###
|
254
|
-
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
|
255
|
-
|
256
|
-
# *.iml
|
257
|
-
# modules.xml
|
258
|
-
# .idea/misc.xml
|
259
|
-
# *.ipr
|
260
|
-
|
261
|
-
### SublimeText ###
|
262
|
-
# cache files for sublime text
|
263
|
-
*.tmlanguage.cache
|
264
|
-
*.tmPreferences.cache
|
265
|
-
*.stTheme.cache
|
266
|
-
|
267
|
-
# workspace files are user-specific
|
268
|
-
*.sublime-workspace
|
269
|
-
|
270
|
-
# project files should be checked into the repository, unless a significant
|
271
|
-
# proportion of contributors will probably not be using SublimeText
|
272
|
-
# *.sublime-project
|
273
|
-
|
274
|
-
# sftp configuration file
|
275
|
-
sftp-config.json
|
276
|
-
|
277
|
-
# Package control specific files
|
278
|
-
Package Control.last-run
|
279
|
-
Package Control.ca-list
|
280
|
-
Package Control.ca-bundle
|
281
|
-
Package Control.system-ca-bundle
|
282
|
-
Package Control.cache/
|
283
|
-
Package Control.ca-certs/
|
284
|
-
Package Control.merged-ca-bundle
|
285
|
-
Package Control.user-ca-bundle
|
286
|
-
oscrypto-ca-bundle.crt
|
287
|
-
bh_unicode_properties.cache
|
288
|
-
|
289
|
-
# Sublime-github package stores a github token in this file
|
290
|
-
# https://packagecontrol.io/packages/sublime-github
|
291
|
-
GitHub.sublime-settings
|
292
|
-
|
293
|
-
### Vim ###
|
294
|
-
# swap
|
295
|
-
[._]*.s[a-v][a-z]
|
296
|
-
[._]*.sw[a-p]
|
297
|
-
[._]s[a-v][a-z]
|
298
|
-
[._]sw[a-p]
|
299
|
-
# session
|
300
|
-
Session.vim
|
301
|
-
# temporary
|
302
|
-
.netrwhist
|
303
|
-
# auto-generated tag files
|
304
|
-
tags
|
305
|
-
|
306
|
-
### Windows ###
|
307
|
-
# Windows thumbnail cache files
|
308
|
-
Thumbs.db
|
309
|
-
ehthumbs.db
|
310
|
-
ehthumbs_vista.db
|
311
|
-
|
312
|
-
# Folder config file
|
313
|
-
Desktop.ini
|
314
|
-
|
315
|
-
# Recycle Bin used on file shares
|
316
|
-
$RECYCLE.BIN/
|
317
|
-
|
318
|
-
# Windows Installer files
|
319
|
-
*.cab
|
320
|
-
*.msi
|
321
|
-
*.msm
|
322
|
-
*.msp
|
323
|
-
|
324
|
-
# Windows shortcuts
|
325
|
-
*.lnk
|
326
|
-
|
327
|
-
# End of https://www.gitignore.io/api/ruby,rubymine,rails,emacs,vim,sublimetext,osx,macos,linux,windows
|
1
|
+
/.bundle/
|
2
|
+
/.yardoc
|
3
|
+
/Gemfile.lock
|
4
|
+
/_yardoc/
|
5
|
+
/coverage/
|
6
|
+
/doc/
|
7
|
+
/pkg/
|
8
|
+
/spec/reports/
|
9
|
+
/tmp/
|
10
|
+
*.gem
|
11
|
+
|
12
|
+
|
13
|
+
# Created by https://www.gitignore.io/api/ruby,rubymine,rails,emacs,vim,sublimetext,osx,macos,linux,windows
|
14
|
+
|
15
|
+
### Emacs ###
|
16
|
+
# -*- mode: gitignore; -*-
|
17
|
+
*~
|
18
|
+
\#*\#
|
19
|
+
/.emacs.desktop
|
20
|
+
/.emacs.desktop.lock
|
21
|
+
*.elc
|
22
|
+
auto-save-list
|
23
|
+
tramp
|
24
|
+
.\#*
|
25
|
+
|
26
|
+
# Org-mode
|
27
|
+
.org-id-locations
|
28
|
+
*_archive
|
29
|
+
|
30
|
+
# flymake-mode
|
31
|
+
*_flymake.*
|
32
|
+
|
33
|
+
# eshell files
|
34
|
+
/eshell/history
|
35
|
+
/eshell/lastdir
|
36
|
+
|
37
|
+
# elpa packages
|
38
|
+
/elpa/
|
39
|
+
|
40
|
+
# reftex files
|
41
|
+
*.rel
|
42
|
+
|
43
|
+
# AUCTeX auto folder
|
44
|
+
/auto/
|
45
|
+
|
46
|
+
# cask packages
|
47
|
+
.cask/
|
48
|
+
dist/
|
49
|
+
|
50
|
+
# Flycheck
|
51
|
+
flycheck_*.el
|
52
|
+
|
53
|
+
# server auth directory
|
54
|
+
/server/
|
55
|
+
|
56
|
+
# projectiles files
|
57
|
+
.projectile
|
58
|
+
|
59
|
+
# directory configuration
|
60
|
+
.dir-locals.el
|
61
|
+
|
62
|
+
### Linux ###
|
63
|
+
|
64
|
+
# temporary files which can be created if a process still has a handle open of a deleted file
|
65
|
+
.fuse_hidden*
|
66
|
+
|
67
|
+
# KDE directory preferences
|
68
|
+
.directory
|
69
|
+
|
70
|
+
# Linux trash folder which might appear on any partition or disk
|
71
|
+
.Trash-*
|
72
|
+
|
73
|
+
# .nfs files are created when an open file is removed but is still being accessed
|
74
|
+
.nfs*
|
75
|
+
|
76
|
+
### macOS ###
|
77
|
+
*.DS_Store
|
78
|
+
.AppleDouble
|
79
|
+
.LSOverride
|
80
|
+
|
81
|
+
# Icon must end with two \r
|
82
|
+
Icon
|
83
|
+
|
84
|
+
|
85
|
+
# Thumbnails
|
86
|
+
._*
|
87
|
+
|
88
|
+
# Files that might appear in the root of a volume
|
89
|
+
.DocumentRevisions-V100
|
90
|
+
.fseventsd
|
91
|
+
.Spotlight-V100
|
92
|
+
.TemporaryItems
|
93
|
+
.Trashes
|
94
|
+
.VolumeIcon.icns
|
95
|
+
.com.apple.timemachine.donotpresent
|
96
|
+
|
97
|
+
# Directories potentially created on remote AFP share
|
98
|
+
.AppleDB
|
99
|
+
.AppleDesktop
|
100
|
+
Network Trash Folder
|
101
|
+
Temporary Items
|
102
|
+
.apdisk
|
103
|
+
|
104
|
+
### OSX ###
|
105
|
+
|
106
|
+
# Icon must end with two \r
|
107
|
+
|
108
|
+
|
109
|
+
# Thumbnails
|
110
|
+
|
111
|
+
# Files that might appear in the root of a volume
|
112
|
+
|
113
|
+
# Directories potentially created on remote AFP share
|
114
|
+
|
115
|
+
### Rails ###
|
116
|
+
*.rbc
|
117
|
+
capybara-*.html
|
118
|
+
.rspec
|
119
|
+
/log
|
120
|
+
/tmp
|
121
|
+
/db/*.sqlite3
|
122
|
+
/db/*.sqlite3-journal
|
123
|
+
/public/system
|
124
|
+
/coverage/
|
125
|
+
/spec/tmp
|
126
|
+
**.orig
|
127
|
+
rerun.txt
|
128
|
+
pickle-email-*.html
|
129
|
+
|
130
|
+
# TODO Comment out this rule if you are OK with secrets being uploaded to the repo
|
131
|
+
config/initializers/secret_token.rb
|
132
|
+
|
133
|
+
# Only include if you have production secrets in this file, which is no longer a Rails default
|
134
|
+
# config/secrets.yml
|
135
|
+
|
136
|
+
# dotenv
|
137
|
+
# TODO Comment out this rule if environment variables can be committed
|
138
|
+
.env
|
139
|
+
|
140
|
+
## Environment normalization:
|
141
|
+
/.bundle
|
142
|
+
/vendor/bundle
|
143
|
+
|
144
|
+
# these should all be checked in to normalize the environment:
|
145
|
+
# Gemfile.lock, .ruby-version, .ruby-gemset
|
146
|
+
|
147
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
148
|
+
.rvmrc
|
149
|
+
|
150
|
+
# if using bower-rails ignore default bower_components path bower.json files
|
151
|
+
/vendor/assets/bower_components
|
152
|
+
*.bowerrc
|
153
|
+
bower.json
|
154
|
+
|
155
|
+
# Ignore pow environment settings
|
156
|
+
.powenv
|
157
|
+
|
158
|
+
# Ignore Byebug command history file.
|
159
|
+
.byebug_history
|
160
|
+
|
161
|
+
### Ruby ###
|
162
|
+
*.gem
|
163
|
+
/.config
|
164
|
+
/InstalledFiles
|
165
|
+
/pkg/
|
166
|
+
/spec/reports/
|
167
|
+
/spec/examples.txt
|
168
|
+
/test/tmp/
|
169
|
+
/test/version_tmp/
|
170
|
+
/tmp/
|
171
|
+
|
172
|
+
# Used by dotenv library to load environment variables.
|
173
|
+
# .env
|
174
|
+
|
175
|
+
## Specific to RubyMotion:
|
176
|
+
.dat*
|
177
|
+
.repl_history
|
178
|
+
build/
|
179
|
+
*.bridgesupport
|
180
|
+
build-iPhoneOS/
|
181
|
+
build-iPhoneSimulator/
|
182
|
+
|
183
|
+
## Specific to RubyMotion (use of CocoaPods):
|
184
|
+
#
|
185
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
186
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
187
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
188
|
+
#
|
189
|
+
# vendor/Pods/
|
190
|
+
|
191
|
+
## Documentation cache and generated files:
|
192
|
+
/.yardoc/
|
193
|
+
/_yardoc/
|
194
|
+
/doc/
|
195
|
+
/rdoc/
|
196
|
+
|
197
|
+
## Environment normalization:
|
198
|
+
/.bundle/
|
199
|
+
/lib/bundler/man/
|
200
|
+
|
201
|
+
# for a library or gem, you might want to ignore these files since the code is
|
202
|
+
# intended to run in multiple environments; otherwise, check them in:
|
203
|
+
# Gemfile.lock
|
204
|
+
# .ruby-version
|
205
|
+
# .ruby-gemset
|
206
|
+
|
207
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
208
|
+
|
209
|
+
### RubyMine ###
|
210
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
211
|
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
212
|
+
|
213
|
+
# User-specific stuff:
|
214
|
+
.idea/**/workspace.xml
|
215
|
+
.idea/**/tasks.xml
|
216
|
+
|
217
|
+
# Sensitive or high-churn files:
|
218
|
+
.idea/**/dataSources/
|
219
|
+
.idea/**/dataSources.ids
|
220
|
+
.idea/**/dataSources.xml
|
221
|
+
.idea/**/dataSources.local.xml
|
222
|
+
.idea/**/sqlDataSources.xml
|
223
|
+
.idea/**/dynamic.xml
|
224
|
+
.idea/**/uiDesigner.xml
|
225
|
+
|
226
|
+
# Gradle:
|
227
|
+
.idea/**/gradle.xml
|
228
|
+
.idea/**/libraries
|
229
|
+
|
230
|
+
# Mongo Explorer plugin:
|
231
|
+
.idea/**/mongoSettings.xml
|
232
|
+
|
233
|
+
## File-based project format:
|
234
|
+
*.iws
|
235
|
+
|
236
|
+
## Plugin-specific files:
|
237
|
+
|
238
|
+
# IntelliJ
|
239
|
+
/out/
|
240
|
+
|
241
|
+
# mpeltonen/sbt-idea plugin
|
242
|
+
.idea_modules/
|
243
|
+
|
244
|
+
# JIRA plugin
|
245
|
+
atlassian-ide-plugin.xml
|
246
|
+
|
247
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
248
|
+
com_crashlytics_export_strings.xml
|
249
|
+
crashlytics.properties
|
250
|
+
crashlytics-build.properties
|
251
|
+
fabric.properties
|
252
|
+
|
253
|
+
### RubyMine Patch ###
|
254
|
+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
|
255
|
+
|
256
|
+
# *.iml
|
257
|
+
# modules.xml
|
258
|
+
# .idea/misc.xml
|
259
|
+
# *.ipr
|
260
|
+
|
261
|
+
### SublimeText ###
|
262
|
+
# cache files for sublime text
|
263
|
+
*.tmlanguage.cache
|
264
|
+
*.tmPreferences.cache
|
265
|
+
*.stTheme.cache
|
266
|
+
|
267
|
+
# workspace files are user-specific
|
268
|
+
*.sublime-workspace
|
269
|
+
|
270
|
+
# project files should be checked into the repository, unless a significant
|
271
|
+
# proportion of contributors will probably not be using SublimeText
|
272
|
+
# *.sublime-project
|
273
|
+
|
274
|
+
# sftp configuration file
|
275
|
+
sftp-config.json
|
276
|
+
|
277
|
+
# Package control specific files
|
278
|
+
Package Control.last-run
|
279
|
+
Package Control.ca-list
|
280
|
+
Package Control.ca-bundle
|
281
|
+
Package Control.system-ca-bundle
|
282
|
+
Package Control.cache/
|
283
|
+
Package Control.ca-certs/
|
284
|
+
Package Control.merged-ca-bundle
|
285
|
+
Package Control.user-ca-bundle
|
286
|
+
oscrypto-ca-bundle.crt
|
287
|
+
bh_unicode_properties.cache
|
288
|
+
|
289
|
+
# Sublime-github package stores a github token in this file
|
290
|
+
# https://packagecontrol.io/packages/sublime-github
|
291
|
+
GitHub.sublime-settings
|
292
|
+
|
293
|
+
### Vim ###
|
294
|
+
# swap
|
295
|
+
[._]*.s[a-v][a-z]
|
296
|
+
[._]*.sw[a-p]
|
297
|
+
[._]s[a-v][a-z]
|
298
|
+
[._]sw[a-p]
|
299
|
+
# session
|
300
|
+
Session.vim
|
301
|
+
# temporary
|
302
|
+
.netrwhist
|
303
|
+
# auto-generated tag files
|
304
|
+
tags
|
305
|
+
|
306
|
+
### Windows ###
|
307
|
+
# Windows thumbnail cache files
|
308
|
+
Thumbs.db
|
309
|
+
ehthumbs.db
|
310
|
+
ehthumbs_vista.db
|
311
|
+
|
312
|
+
# Folder config file
|
313
|
+
Desktop.ini
|
314
|
+
|
315
|
+
# Recycle Bin used on file shares
|
316
|
+
$RECYCLE.BIN/
|
317
|
+
|
318
|
+
# Windows Installer files
|
319
|
+
*.cab
|
320
|
+
*.msi
|
321
|
+
*.msm
|
322
|
+
*.msp
|
323
|
+
|
324
|
+
# Windows shortcuts
|
325
|
+
*.lnk
|
326
|
+
|
327
|
+
# End of https://www.gitignore.io/api/ruby,rubymine,rails,emacs,vim,sublimetext,osx,macos,linux,windows
|