betters 0.1.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/.gitignore +727 -0
- data/.rspec +3 -0
- data/.travis.yml +5 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +37 -0
- data/LICENSE +21 -0
- data/README.md +35 -0
- data/Rakefile +6 -0
- data/_README.md +2 -0
- data/betters.gemspec +36 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/core/_base.scss +14 -0
- data/core/_buttons.scss +43 -0
- data/core/_forms.scss +95 -0
- data/core/_layout.scss +18 -0
- data/core/_lists.scss +19 -0
- data/core/_media.scss +9 -0
- data/core/_tables.scss +29 -0
- data/core/_typography.scss +45 -0
- data/core/_variables.scss +60 -0
- data/exe/betters +3 -0
- data/lib/betters.rb +84 -0
- data/lib/betters/version.rb +3 -0
- metadata +127 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: bfd5926bdfb233e8362f06f72483e6600750a58d
|
|
4
|
+
data.tar.gz: de066feb51b9b8ccce3fd0dc6bd3d1eea690aa6c
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 04ffef134c808f499f08d9bb3886084b584daadcd2bfa9a78891ac2e488807031438da90b4f60f3608ab0fb23e944696ecd818118465f033e671f4ad4e7c95f6
|
|
7
|
+
data.tar.gz: e35d866741b185167161b4e14da5199abf522e75fb0ba86222a80041ba103720682ec488e79bed64be9b08e015c0f2fb6908480f92107b463a2858e17a863d1e
|
data/.gitignore
ADDED
|
@@ -0,0 +1,727 @@
|
|
|
1
|
+
/.bundle/
|
|
2
|
+
/.yardoc
|
|
3
|
+
/_yardoc/
|
|
4
|
+
/coverage/
|
|
5
|
+
/doc/
|
|
6
|
+
/pkg/
|
|
7
|
+
/spec/reports/
|
|
8
|
+
/tmp/
|
|
9
|
+
|
|
10
|
+
# rspec failure tracking
|
|
11
|
+
.rspec_status
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
# Created by https://www.gitignore.io/api/osx,ruby,sass,node,test,macos,yeoman,webstorm,rubymine,intellij,jetbrains,webstorm+all,webstorm+iml,intellij+iml,rubymine+all,rubymine+iml,intellij+all,jetbrains+iml,jetbrains+all
|
|
16
|
+
|
|
17
|
+
### Intellij ###
|
|
18
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
|
19
|
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
20
|
+
|
|
21
|
+
# User-specific stuff:
|
|
22
|
+
.idea/**/workspace.xml
|
|
23
|
+
.idea/**/tasks.xml
|
|
24
|
+
.idea/dictionaries
|
|
25
|
+
|
|
26
|
+
# Sensitive or high-churn files:
|
|
27
|
+
.idea/**/dataSources/
|
|
28
|
+
.idea/**/dataSources.ids
|
|
29
|
+
.idea/**/dataSources.xml
|
|
30
|
+
.idea/**/dataSources.local.xml
|
|
31
|
+
.idea/**/sqlDataSources.xml
|
|
32
|
+
.idea/**/dynamic.xml
|
|
33
|
+
.idea/**/uiDesigner.xml
|
|
34
|
+
|
|
35
|
+
# Gradle:
|
|
36
|
+
.idea/**/gradle.xml
|
|
37
|
+
.idea/**/libraries
|
|
38
|
+
|
|
39
|
+
# CMake
|
|
40
|
+
cmake-build-debug/
|
|
41
|
+
|
|
42
|
+
# Mongo Explorer plugin:
|
|
43
|
+
.idea/**/mongoSettings.xml
|
|
44
|
+
|
|
45
|
+
## File-based project format:
|
|
46
|
+
*.iws
|
|
47
|
+
|
|
48
|
+
## Plugin-specific files:
|
|
49
|
+
|
|
50
|
+
# IntelliJ
|
|
51
|
+
/out/
|
|
52
|
+
|
|
53
|
+
# mpeltonen/sbt-idea plugin
|
|
54
|
+
.idea_modules/
|
|
55
|
+
|
|
56
|
+
# JIRA plugin
|
|
57
|
+
atlassian-ide-plugin.xml
|
|
58
|
+
|
|
59
|
+
# Cursive Clojure plugin
|
|
60
|
+
.idea/replstate.xml
|
|
61
|
+
|
|
62
|
+
# Ruby plugin and RubyMine
|
|
63
|
+
/.rakeTasks
|
|
64
|
+
|
|
65
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
66
|
+
com_crashlytics_export_strings.xml
|
|
67
|
+
crashlytics.properties
|
|
68
|
+
crashlytics-build.properties
|
|
69
|
+
fabric.properties
|
|
70
|
+
|
|
71
|
+
### Intellij Patch ###
|
|
72
|
+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
|
|
73
|
+
|
|
74
|
+
# *.iml
|
|
75
|
+
# modules.xml
|
|
76
|
+
# .idea/misc.xml
|
|
77
|
+
# *.ipr
|
|
78
|
+
|
|
79
|
+
# Sonarlint plugin
|
|
80
|
+
.idea/sonarlint
|
|
81
|
+
|
|
82
|
+
### Intellij+all ###
|
|
83
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
|
84
|
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
85
|
+
|
|
86
|
+
# User-specific stuff:
|
|
87
|
+
|
|
88
|
+
# Sensitive or high-churn files:
|
|
89
|
+
|
|
90
|
+
# Gradle:
|
|
91
|
+
|
|
92
|
+
# CMake
|
|
93
|
+
|
|
94
|
+
# Mongo Explorer plugin:
|
|
95
|
+
|
|
96
|
+
## File-based project format:
|
|
97
|
+
|
|
98
|
+
## Plugin-specific files:
|
|
99
|
+
|
|
100
|
+
# IntelliJ
|
|
101
|
+
|
|
102
|
+
# mpeltonen/sbt-idea plugin
|
|
103
|
+
|
|
104
|
+
# JIRA plugin
|
|
105
|
+
|
|
106
|
+
# Cursive Clojure plugin
|
|
107
|
+
|
|
108
|
+
# Ruby plugin and RubyMine
|
|
109
|
+
|
|
110
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
111
|
+
|
|
112
|
+
### Intellij+all Patch ###
|
|
113
|
+
# Ignores the whole idea folder
|
|
114
|
+
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
|
|
115
|
+
|
|
116
|
+
.idea/
|
|
117
|
+
|
|
118
|
+
### Intellij+iml ###
|
|
119
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
|
120
|
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
121
|
+
|
|
122
|
+
# User-specific stuff:
|
|
123
|
+
|
|
124
|
+
# Sensitive or high-churn files:
|
|
125
|
+
|
|
126
|
+
# Gradle:
|
|
127
|
+
|
|
128
|
+
# CMake
|
|
129
|
+
|
|
130
|
+
# Mongo Explorer plugin:
|
|
131
|
+
|
|
132
|
+
## File-based project format:
|
|
133
|
+
|
|
134
|
+
## Plugin-specific files:
|
|
135
|
+
|
|
136
|
+
# IntelliJ
|
|
137
|
+
|
|
138
|
+
# mpeltonen/sbt-idea plugin
|
|
139
|
+
|
|
140
|
+
# JIRA plugin
|
|
141
|
+
|
|
142
|
+
# Cursive Clojure plugin
|
|
143
|
+
|
|
144
|
+
# Ruby plugin and RubyMine
|
|
145
|
+
|
|
146
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
147
|
+
|
|
148
|
+
### Intellij+iml Patch ###
|
|
149
|
+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
|
|
150
|
+
|
|
151
|
+
*.iml
|
|
152
|
+
modules.xml
|
|
153
|
+
.idea/misc.xml
|
|
154
|
+
*.ipr
|
|
155
|
+
|
|
156
|
+
### JetBrains ###
|
|
157
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
|
158
|
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
159
|
+
|
|
160
|
+
# User-specific stuff:
|
|
161
|
+
|
|
162
|
+
# Sensitive or high-churn files:
|
|
163
|
+
|
|
164
|
+
# Gradle:
|
|
165
|
+
|
|
166
|
+
# CMake
|
|
167
|
+
|
|
168
|
+
# Mongo Explorer plugin:
|
|
169
|
+
|
|
170
|
+
## File-based project format:
|
|
171
|
+
|
|
172
|
+
## Plugin-specific files:
|
|
173
|
+
|
|
174
|
+
# IntelliJ
|
|
175
|
+
|
|
176
|
+
# mpeltonen/sbt-idea plugin
|
|
177
|
+
|
|
178
|
+
# JIRA plugin
|
|
179
|
+
|
|
180
|
+
# Cursive Clojure plugin
|
|
181
|
+
|
|
182
|
+
# Ruby plugin and RubyMine
|
|
183
|
+
|
|
184
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
185
|
+
|
|
186
|
+
### JetBrains Patch ###
|
|
187
|
+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
|
|
188
|
+
|
|
189
|
+
# *.iml
|
|
190
|
+
# modules.xml
|
|
191
|
+
# .idea/misc.xml
|
|
192
|
+
# *.ipr
|
|
193
|
+
|
|
194
|
+
# Sonarlint plugin
|
|
195
|
+
|
|
196
|
+
### JetBrains+all ###
|
|
197
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
|
198
|
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
199
|
+
|
|
200
|
+
# User-specific stuff:
|
|
201
|
+
|
|
202
|
+
# Sensitive or high-churn files:
|
|
203
|
+
|
|
204
|
+
# Gradle:
|
|
205
|
+
|
|
206
|
+
# CMake
|
|
207
|
+
|
|
208
|
+
# Mongo Explorer plugin:
|
|
209
|
+
|
|
210
|
+
## File-based project format:
|
|
211
|
+
|
|
212
|
+
## Plugin-specific files:
|
|
213
|
+
|
|
214
|
+
# IntelliJ
|
|
215
|
+
|
|
216
|
+
# mpeltonen/sbt-idea plugin
|
|
217
|
+
|
|
218
|
+
# JIRA plugin
|
|
219
|
+
|
|
220
|
+
# Cursive Clojure plugin
|
|
221
|
+
|
|
222
|
+
# Ruby plugin and RubyMine
|
|
223
|
+
|
|
224
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
225
|
+
|
|
226
|
+
### JetBrains+all Patch ###
|
|
227
|
+
# Ignores the whole idea folder
|
|
228
|
+
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
### JetBrains+iml ###
|
|
232
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
|
233
|
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
234
|
+
|
|
235
|
+
# User-specific stuff:
|
|
236
|
+
|
|
237
|
+
# Sensitive or high-churn files:
|
|
238
|
+
|
|
239
|
+
# Gradle:
|
|
240
|
+
|
|
241
|
+
# CMake
|
|
242
|
+
|
|
243
|
+
# Mongo Explorer plugin:
|
|
244
|
+
|
|
245
|
+
## File-based project format:
|
|
246
|
+
|
|
247
|
+
## Plugin-specific files:
|
|
248
|
+
|
|
249
|
+
# IntelliJ
|
|
250
|
+
|
|
251
|
+
# mpeltonen/sbt-idea plugin
|
|
252
|
+
|
|
253
|
+
# JIRA plugin
|
|
254
|
+
|
|
255
|
+
# Cursive Clojure plugin
|
|
256
|
+
|
|
257
|
+
# Ruby plugin and RubyMine
|
|
258
|
+
|
|
259
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
260
|
+
|
|
261
|
+
### JetBrains+iml Patch ###
|
|
262
|
+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
### macOS ###
|
|
266
|
+
*.DS_Store
|
|
267
|
+
.AppleDouble
|
|
268
|
+
.LSOverride
|
|
269
|
+
|
|
270
|
+
# Icon must end with two \r
|
|
271
|
+
Icon
|
|
272
|
+
|
|
273
|
+
# Thumbnails
|
|
274
|
+
._*
|
|
275
|
+
|
|
276
|
+
# Files that might appear in the root of a volume
|
|
277
|
+
.DocumentRevisions-V100
|
|
278
|
+
.fseventsd
|
|
279
|
+
.Spotlight-V100
|
|
280
|
+
.TemporaryItems
|
|
281
|
+
.Trashes
|
|
282
|
+
.VolumeIcon.icns
|
|
283
|
+
.com.apple.timemachine.donotpresent
|
|
284
|
+
|
|
285
|
+
# Directories potentially created on remote AFP share
|
|
286
|
+
.AppleDB
|
|
287
|
+
.AppleDesktop
|
|
288
|
+
Network Trash Folder
|
|
289
|
+
Temporary Items
|
|
290
|
+
.apdisk
|
|
291
|
+
|
|
292
|
+
### Node ###
|
|
293
|
+
# Logs
|
|
294
|
+
logs
|
|
295
|
+
*.log
|
|
296
|
+
npm-debug.log*
|
|
297
|
+
yarn-debug.log*
|
|
298
|
+
yarn-error.log*
|
|
299
|
+
|
|
300
|
+
# Runtime data
|
|
301
|
+
pids
|
|
302
|
+
*.pid
|
|
303
|
+
*.seed
|
|
304
|
+
*.pid.lock
|
|
305
|
+
|
|
306
|
+
# Directory for instrumented libs generated by jscoverage/JSCover
|
|
307
|
+
lib-cov
|
|
308
|
+
|
|
309
|
+
# Coverage directory used by tools like istanbul
|
|
310
|
+
coverage
|
|
311
|
+
|
|
312
|
+
# nyc test coverage
|
|
313
|
+
.nyc_output
|
|
314
|
+
|
|
315
|
+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
|
|
316
|
+
.grunt
|
|
317
|
+
|
|
318
|
+
# Bower dependency directory (https://bower.io/)
|
|
319
|
+
bower_components
|
|
320
|
+
|
|
321
|
+
# node-waf configuration
|
|
322
|
+
.lock-wscript
|
|
323
|
+
|
|
324
|
+
# Compiled binary addons (http://nodejs.org/api/addons.html)
|
|
325
|
+
build/Release
|
|
326
|
+
|
|
327
|
+
# Dependency directories
|
|
328
|
+
node_modules/
|
|
329
|
+
jspm_packages/
|
|
330
|
+
|
|
331
|
+
# Typescript v1 declaration files
|
|
332
|
+
typings/
|
|
333
|
+
|
|
334
|
+
# Optional npm cache directory
|
|
335
|
+
.npm
|
|
336
|
+
|
|
337
|
+
# Optional eslint cache
|
|
338
|
+
.eslintcache
|
|
339
|
+
|
|
340
|
+
# Optional REPL history
|
|
341
|
+
.node_repl_history
|
|
342
|
+
|
|
343
|
+
# Output of 'npm pack'
|
|
344
|
+
*.tgz
|
|
345
|
+
|
|
346
|
+
# Yarn Integrity file
|
|
347
|
+
.yarn-integrity
|
|
348
|
+
|
|
349
|
+
# dotenv environment variables file
|
|
350
|
+
.env
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
### OSX ###
|
|
354
|
+
|
|
355
|
+
# Icon must end with two \r
|
|
356
|
+
|
|
357
|
+
# Thumbnails
|
|
358
|
+
|
|
359
|
+
# Files that might appear in the root of a volume
|
|
360
|
+
|
|
361
|
+
# Directories potentially created on remote AFP share
|
|
362
|
+
|
|
363
|
+
### Ruby ###
|
|
364
|
+
*.gem
|
|
365
|
+
*.rbc
|
|
366
|
+
/.config
|
|
367
|
+
/coverage/
|
|
368
|
+
/InstalledFiles
|
|
369
|
+
/pkg/
|
|
370
|
+
/spec/reports/
|
|
371
|
+
/spec/examples.txt
|
|
372
|
+
/test/tmp/
|
|
373
|
+
/test/version_tmp/
|
|
374
|
+
/tmp/
|
|
375
|
+
|
|
376
|
+
# Used by dotenv library to load environment variables.
|
|
377
|
+
# .env
|
|
378
|
+
|
|
379
|
+
## Specific to RubyMotion:
|
|
380
|
+
.dat*
|
|
381
|
+
.repl_history
|
|
382
|
+
build/
|
|
383
|
+
*.bridgesupport
|
|
384
|
+
build-iPhoneOS/
|
|
385
|
+
build-iPhoneSimulator/
|
|
386
|
+
|
|
387
|
+
## Specific to RubyMotion (use of CocoaPods):
|
|
388
|
+
#
|
|
389
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
|
390
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
|
391
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
|
392
|
+
#
|
|
393
|
+
# vendor/Pods/
|
|
394
|
+
|
|
395
|
+
## Documentation cache and generated files:
|
|
396
|
+
/.yardoc/
|
|
397
|
+
/_yardoc/
|
|
398
|
+
/doc/
|
|
399
|
+
/rdoc/
|
|
400
|
+
|
|
401
|
+
## Environment normalization:
|
|
402
|
+
/.bundle/
|
|
403
|
+
/vendor/bundle
|
|
404
|
+
/lib/bundler/man/
|
|
405
|
+
|
|
406
|
+
# for a library or gem, you might want to ignore these files since the code is
|
|
407
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
408
|
+
# Gemfile.lock
|
|
409
|
+
# .ruby-version
|
|
410
|
+
# .ruby-gemset
|
|
411
|
+
|
|
412
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
|
413
|
+
.rvmrc
|
|
414
|
+
|
|
415
|
+
### RubyMine ###
|
|
416
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
|
417
|
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
418
|
+
|
|
419
|
+
# User-specific stuff:
|
|
420
|
+
|
|
421
|
+
# Sensitive or high-churn files:
|
|
422
|
+
|
|
423
|
+
# Gradle:
|
|
424
|
+
|
|
425
|
+
# CMake
|
|
426
|
+
|
|
427
|
+
# Mongo Explorer plugin:
|
|
428
|
+
|
|
429
|
+
## File-based project format:
|
|
430
|
+
|
|
431
|
+
## Plugin-specific files:
|
|
432
|
+
|
|
433
|
+
# IntelliJ
|
|
434
|
+
|
|
435
|
+
# mpeltonen/sbt-idea plugin
|
|
436
|
+
|
|
437
|
+
# JIRA plugin
|
|
438
|
+
|
|
439
|
+
# Cursive Clojure plugin
|
|
440
|
+
|
|
441
|
+
# Ruby plugin and RubyMine
|
|
442
|
+
|
|
443
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
444
|
+
|
|
445
|
+
### RubyMine Patch ###
|
|
446
|
+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
|
|
447
|
+
|
|
448
|
+
# *.iml
|
|
449
|
+
# modules.xml
|
|
450
|
+
# .idea/misc.xml
|
|
451
|
+
# *.ipr
|
|
452
|
+
|
|
453
|
+
# Sonarlint plugin
|
|
454
|
+
|
|
455
|
+
### RubyMine+all ###
|
|
456
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
|
457
|
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
458
|
+
|
|
459
|
+
# User-specific stuff:
|
|
460
|
+
|
|
461
|
+
# Sensitive or high-churn files:
|
|
462
|
+
|
|
463
|
+
# Gradle:
|
|
464
|
+
|
|
465
|
+
# CMake
|
|
466
|
+
|
|
467
|
+
# Mongo Explorer plugin:
|
|
468
|
+
|
|
469
|
+
## File-based project format:
|
|
470
|
+
|
|
471
|
+
## Plugin-specific files:
|
|
472
|
+
|
|
473
|
+
# IntelliJ
|
|
474
|
+
|
|
475
|
+
# mpeltonen/sbt-idea plugin
|
|
476
|
+
|
|
477
|
+
# JIRA plugin
|
|
478
|
+
|
|
479
|
+
# Cursive Clojure plugin
|
|
480
|
+
|
|
481
|
+
# Ruby plugin and RubyMine
|
|
482
|
+
|
|
483
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
484
|
+
|
|
485
|
+
### RubyMine+all Patch ###
|
|
486
|
+
# Ignores the whole idea folder
|
|
487
|
+
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
### RubyMine+iml ###
|
|
491
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
|
492
|
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
493
|
+
|
|
494
|
+
# User-specific stuff:
|
|
495
|
+
|
|
496
|
+
# Sensitive or high-churn files:
|
|
497
|
+
|
|
498
|
+
# Gradle:
|
|
499
|
+
|
|
500
|
+
# CMake
|
|
501
|
+
|
|
502
|
+
# Mongo Explorer plugin:
|
|
503
|
+
|
|
504
|
+
## File-based project format:
|
|
505
|
+
|
|
506
|
+
## Plugin-specific files:
|
|
507
|
+
|
|
508
|
+
# IntelliJ
|
|
509
|
+
|
|
510
|
+
# mpeltonen/sbt-idea plugin
|
|
511
|
+
|
|
512
|
+
# JIRA plugin
|
|
513
|
+
|
|
514
|
+
# Cursive Clojure plugin
|
|
515
|
+
|
|
516
|
+
# Ruby plugin and RubyMine
|
|
517
|
+
|
|
518
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
519
|
+
|
|
520
|
+
### RubyMine+iml Patch ###
|
|
521
|
+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
|
|
522
|
+
|
|
523
|
+
|
|
524
|
+
### Sass ###
|
|
525
|
+
.sass-cache/
|
|
526
|
+
*.css.map
|
|
527
|
+
|
|
528
|
+
### Test ###
|
|
529
|
+
### Ignore all files that could be used to test your code and
|
|
530
|
+
### you wouldn't want to push
|
|
531
|
+
|
|
532
|
+
# Reference https://en.wikipedia.org/wiki/Metasyntactic_variable
|
|
533
|
+
|
|
534
|
+
# Most common
|
|
535
|
+
*foo
|
|
536
|
+
*bar
|
|
537
|
+
*fubar
|
|
538
|
+
*foobar
|
|
539
|
+
*baz
|
|
540
|
+
|
|
541
|
+
# Less common
|
|
542
|
+
*qux
|
|
543
|
+
*quux
|
|
544
|
+
*bongo
|
|
545
|
+
*bazola
|
|
546
|
+
*ztesch
|
|
547
|
+
|
|
548
|
+
# UK, Australia
|
|
549
|
+
*wibble
|
|
550
|
+
*wobble
|
|
551
|
+
*wubble
|
|
552
|
+
*flob
|
|
553
|
+
*blep
|
|
554
|
+
*blah
|
|
555
|
+
*boop
|
|
556
|
+
*beep
|
|
557
|
+
|
|
558
|
+
# Japanese
|
|
559
|
+
*hoge
|
|
560
|
+
*piyo
|
|
561
|
+
*fuga
|
|
562
|
+
*hogera
|
|
563
|
+
*hogehoge
|
|
564
|
+
|
|
565
|
+
# Portugal, Spain
|
|
566
|
+
*fulano
|
|
567
|
+
*sicrano
|
|
568
|
+
*beltrano
|
|
569
|
+
*mengano
|
|
570
|
+
*perengano
|
|
571
|
+
*zutano
|
|
572
|
+
|
|
573
|
+
# France, Italy, the Netherlands
|
|
574
|
+
*toto
|
|
575
|
+
*titi
|
|
576
|
+
*tata
|
|
577
|
+
*tutu
|
|
578
|
+
*pipppo
|
|
579
|
+
*pluto
|
|
580
|
+
*paperino
|
|
581
|
+
*aap
|
|
582
|
+
*noot
|
|
583
|
+
*mies
|
|
584
|
+
|
|
585
|
+
# Other names that would make sense
|
|
586
|
+
*tests
|
|
587
|
+
*testsdir
|
|
588
|
+
*testsfile
|
|
589
|
+
*testsfiles
|
|
590
|
+
*test
|
|
591
|
+
*testdir
|
|
592
|
+
*testfile
|
|
593
|
+
*testfiles
|
|
594
|
+
*testing
|
|
595
|
+
*testingdir
|
|
596
|
+
*testingfile
|
|
597
|
+
*testingfiles
|
|
598
|
+
*temp
|
|
599
|
+
*tempdir
|
|
600
|
+
*tempfile
|
|
601
|
+
*tempfiles
|
|
602
|
+
*tmp
|
|
603
|
+
*tmpdir
|
|
604
|
+
*tmpfile
|
|
605
|
+
*tmpfiles
|
|
606
|
+
*lol
|
|
607
|
+
|
|
608
|
+
### WebStorm ###
|
|
609
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
|
610
|
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
611
|
+
|
|
612
|
+
# User-specific stuff:
|
|
613
|
+
|
|
614
|
+
# Sensitive or high-churn files:
|
|
615
|
+
|
|
616
|
+
# Gradle:
|
|
617
|
+
|
|
618
|
+
# CMake
|
|
619
|
+
|
|
620
|
+
# Mongo Explorer plugin:
|
|
621
|
+
|
|
622
|
+
## File-based project format:
|
|
623
|
+
|
|
624
|
+
## Plugin-specific files:
|
|
625
|
+
|
|
626
|
+
# IntelliJ
|
|
627
|
+
|
|
628
|
+
# mpeltonen/sbt-idea plugin
|
|
629
|
+
|
|
630
|
+
# JIRA plugin
|
|
631
|
+
|
|
632
|
+
# Cursive Clojure plugin
|
|
633
|
+
|
|
634
|
+
# Ruby plugin and RubyMine
|
|
635
|
+
|
|
636
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
637
|
+
|
|
638
|
+
### WebStorm Patch ###
|
|
639
|
+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
|
|
640
|
+
|
|
641
|
+
# *.iml
|
|
642
|
+
# modules.xml
|
|
643
|
+
# .idea/misc.xml
|
|
644
|
+
# *.ipr
|
|
645
|
+
|
|
646
|
+
# Sonarlint plugin
|
|
647
|
+
|
|
648
|
+
### WebStorm+all ###
|
|
649
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
|
650
|
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
651
|
+
|
|
652
|
+
# User-specific stuff:
|
|
653
|
+
|
|
654
|
+
# Sensitive or high-churn files:
|
|
655
|
+
|
|
656
|
+
# Gradle:
|
|
657
|
+
|
|
658
|
+
# CMake
|
|
659
|
+
|
|
660
|
+
# Mongo Explorer plugin:
|
|
661
|
+
|
|
662
|
+
## File-based project format:
|
|
663
|
+
|
|
664
|
+
## Plugin-specific files:
|
|
665
|
+
|
|
666
|
+
# IntelliJ
|
|
667
|
+
|
|
668
|
+
# mpeltonen/sbt-idea plugin
|
|
669
|
+
|
|
670
|
+
# JIRA plugin
|
|
671
|
+
|
|
672
|
+
# Cursive Clojure plugin
|
|
673
|
+
|
|
674
|
+
# Ruby plugin and RubyMine
|
|
675
|
+
|
|
676
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
677
|
+
|
|
678
|
+
### WebStorm+all Patch ###
|
|
679
|
+
# Ignores the whole idea folder
|
|
680
|
+
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
|
|
681
|
+
|
|
682
|
+
|
|
683
|
+
### WebStorm+iml ###
|
|
684
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
|
685
|
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
686
|
+
|
|
687
|
+
# User-specific stuff:
|
|
688
|
+
|
|
689
|
+
# Sensitive or high-churn files:
|
|
690
|
+
|
|
691
|
+
# Gradle:
|
|
692
|
+
|
|
693
|
+
# CMake
|
|
694
|
+
|
|
695
|
+
# Mongo Explorer plugin:
|
|
696
|
+
|
|
697
|
+
## File-based project format:
|
|
698
|
+
|
|
699
|
+
## Plugin-specific files:
|
|
700
|
+
|
|
701
|
+
# IntelliJ
|
|
702
|
+
|
|
703
|
+
# mpeltonen/sbt-idea plugin
|
|
704
|
+
|
|
705
|
+
# JIRA plugin
|
|
706
|
+
|
|
707
|
+
# Cursive Clojure plugin
|
|
708
|
+
|
|
709
|
+
# Ruby plugin and RubyMine
|
|
710
|
+
|
|
711
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
712
|
+
|
|
713
|
+
### WebStorm+iml Patch ###
|
|
714
|
+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
|
|
715
|
+
|
|
716
|
+
|
|
717
|
+
### Yeoman ###
|
|
718
|
+
bower_components/
|
|
719
|
+
|
|
720
|
+
dist/
|
|
721
|
+
|
|
722
|
+
# End of https://www.gitignore.io/api/osx,ruby,sass,node,test,macos,yeoman,webstorm,rubymine,intellij,jetbrains,webstorm+all,webstorm+iml,intellij+iml,rubymine+all,rubymine+iml,intellij+all,jetbrains+iml,jetbrains+all
|
|
723
|
+
.idea/inspectionProfiles/Project_Default.xml
|
|
724
|
+
.idea/inspectionProfiles/Project_Default.xml
|
|
725
|
+
.idea/betters.iml
|
|
726
|
+
.idea/workspace.xml
|
|
727
|
+
.idea/betters.iml
|