forgitter 0.1.0 → 0.1.1

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.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/.ruby-version +1 -1
  3. data/data/github/Android.gitignore +3 -0
  4. data/data/github/CodeIgniter.gitignore +1 -0
  5. data/data/github/Drupal.gitignore +50 -37
  6. data/data/github/FlaxEngine.gitignore +45 -0
  7. data/data/github/Global/JetBrains.gitignore +3 -0
  8. data/data/github/Global/VisualStudioCode.gitignore +4 -0
  9. data/data/github/Global/Xcode.gitignore +1 -21
  10. data/data/github/Go.gitignore +3 -0
  11. data/data/github/Gradle.gitignore +9 -0
  12. data/data/github/Jekyll.gitignore +3 -0
  13. data/data/github/KiCad.gitignore +1 -0
  14. data/data/github/Maven.gitignore +6 -0
  15. data/data/github/Node.gitignore +5 -1
  16. data/data/github/Packer.gitignore +8 -0
  17. data/data/github/Perl.gitignore +1 -1
  18. data/data/github/Python.gitignore +17 -2
  19. data/data/github/R.gitignore +3 -0
  20. data/data/github/README.md +1 -1
  21. data/data/github/Racket.gitignore +7 -0
  22. data/data/github/TeX.gitignore +10 -0
  23. data/data/github/Terraform.gitignore +5 -5
  24. data/data/github/Unity.gitignore +0 -3
  25. data/data/github/VisualStudio.gitignore +4 -1
  26. data/data/github/community/AWS/CDK.gitignore +4 -0
  27. data/data/github/community/AutoIt.gitignore +8 -0
  28. data/data/github/community/B4X.gitignore +3 -0
  29. data/data/github/community/Bazel.gitignore +7 -0
  30. data/data/github/community/Beef.gitignore +3 -0
  31. data/data/github/{Umbraco.gitignore → community/DotNet/Umbraco.gitignore} +20 -0
  32. data/data/github/community/DotNet/core.gitignore +38 -0
  33. data/data/github/community/Golang/Go.AllowList.gitignore +23 -0
  34. data/data/github/community/Nix.gitignore +3 -0
  35. data/data/github/community/Toit.gitignore +2 -0
  36. data/data/github/community/embedded/uVision.gitignore +45 -0
  37. data/lib/forgitter/version.rb +1 -1
  38. metadata +15 -5
  39. data/data/github/.travis.yml +0 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 15be802e175278f3d058ead76227cde27ded86c2e19d3e29e1038c80c4dc8c17
4
- data.tar.gz: 9d51e0c8ff2b374a4af700b607363feeeb32b95b839700991d0691d6215e59ef
3
+ metadata.gz: 52db613ade83c77767867709ccb9acd56b8d47c7a75b8a35d0b126db61e9b299
4
+ data.tar.gz: 788898cca37c2f3809ea593f0a36af8ec920daf421d7f34ad34a9dac5161c430
5
5
  SHA512:
6
- metadata.gz: 4165a0c6bef1880b4fb61695571db7014f9a8a888e6854fa5594b012876004f0cfa7ac88074b68f1bb203a3440e8073e2a8062b11f78901e9db79eb295cca7be
7
- data.tar.gz: 6e38a4a30949db9aef2f774accb472455bb9aa65d656b0477b04a7816045b656c21044ae2e1d5ce75b0f92297bbe2b24a2aba778d1a19c270e7eb2fcf36dac6f
6
+ metadata.gz: b964078bcf972e8fcd315922b793b85c9021057eb38474ebb6ff09b48cc39c871b46c08b8c4f02ffc1788471e681c16103a1b6cf7b30fde45c70394615a8d1a9
7
+ data.tar.gz: 3195f6c2fdb421816092df7479858afbb8c08fd81548efbde9b960b3a3318b1aeb03b5c575fbca632aedd699bc682e01d3f65c57aa510e72f782dc071aa62bc7
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.0.3
1
+ 3.1.2
@@ -18,6 +18,9 @@ output.json
18
18
  # IntelliJ
19
19
  *.iml
20
20
  .idea/
21
+ misc.xml
22
+ deploymentTargetDropDown.xml
23
+ render.experimental.xml
21
24
 
22
25
  # Keystore files
23
26
  *.jks
@@ -2,6 +2,7 @@
2
2
  */logs/log-*.php
3
3
  !*/logs/index.html
4
4
  */cache/*
5
+ !system/cache/*
5
6
  !*/cache/index.html
6
7
  !*/cache/.htaccess
7
8
 
@@ -1,49 +1,62 @@
1
1
  # gitignore template for Drupal 8 projects
2
2
  #
3
3
  # earlier versions of Drupal are tracked in `community/PHP/`
4
+ #
5
+ # follows official upstream conventions:
6
+ # https://www.drupal.org/docs/develop/using-composer
4
7
 
5
8
  # Ignore configuration files that may contain sensitive information
6
- /sites/*/*settings*.php
7
- /sites/*/*services*.yml
9
+ /web/sites/*/*settings*.php
10
+ /web/sites/*/*services*.yml
8
11
 
9
12
  # Ignore paths that may contain user-generated content
10
- /sites/*/files
11
- /sites/*/public
12
- /sites/*/private
13
- /sites/*/files-public
14
- /sites/*/files-private
13
+ /web/sites/*/files
14
+ /web/sites/*/public
15
+ /web/sites/*/private
16
+ /web/sites/*/files-public
17
+ /web/sites/*/files-private
15
18
 
16
19
  # Ignore paths that may contain temporary files
17
- /sites/*/translations
18
- /sites/*/tmp
19
- /sites/*/cache
20
-
21
- # Ignore testing related files
22
- /sites/simpletest
20
+ /web/sites/*/translations
21
+ /web/sites/*/tmp
22
+ /web/sites/*/cache
23
23
 
24
24
  # Ignore drupal core (if not versioning drupal sources)
25
- /core
25
+ /web/vendor
26
+ /web/core
27
+ /web/modules/README.txt
28
+ /web/profiles/README.txt
29
+ /web/sites/development.services.yml
30
+ /web/sites/example.settings.local.php
31
+ /web/sites/example.sites.php
32
+ /web/sites/README.txt
33
+ /web/themes/README.txt
34
+ /web/.csslintrc
35
+ /web/.editorconfig
36
+ /web/.eslintignore
37
+ /web/.eslintrc.json
38
+ /web/.gitattributes
39
+ /web/.htaccess
40
+ /web/.ht.router.php
41
+ /web/autoload.php
42
+ /web/composer.json
43
+ /web/composer.lock
44
+ /web/example.gitignore
45
+ /web/index.php
46
+ /web/INSTALL.txt
47
+ /web/LICENSE.txt
48
+ /web/README.txt
49
+ /web/robots.txt
50
+ /web/update.php
51
+ /web/web.config
52
+
53
+ # Ignore vendor dependencies and scripts
26
54
  /vendor
27
- /modules/README.txt
28
- /profiles/README.txt
29
- /themes/README.txt
30
- /sites/README.txt
31
- /sites/example.sites.php
32
- /sites/example.settings.local.php
33
- /sites/development.services.yml
34
- /.csslintrc
35
- /.editorconfig
36
- /.eslintignore
37
- /.eslintrc.json
38
- /.gitattributes
39
- /.ht.router.php
40
- /.htaccess
41
- /autoload.php
42
- /example.gitignore
43
- /index.php
44
- /INSTALL.txt
45
- /LICENSE.txt
46
- /README.txt
47
- /robots.txt
48
- /update.php
49
- /web.config
55
+ /composer.phar
56
+ /composer
57
+ /robo.phar
58
+ /robo
59
+ /drush.phar
60
+ /drush
61
+ /drupal.phar
62
+ /drupal
@@ -0,0 +1,45 @@
1
+ # Ignore Flax project files
2
+ Binaries/
3
+ Cache/
4
+ Logs/
5
+ Output/
6
+ Screenshots/
7
+ *.HotReload.*
8
+
9
+ # Ignore Visual Studio project files (generated locally)
10
+ *.csproj
11
+ *.sln
12
+
13
+ # Ignore thumbnails created by Windows
14
+ Thumbs.db
15
+
16
+ # Ignore files built by Visual Studio
17
+ *.obj
18
+ *.exe
19
+ *.pdb
20
+ *.user
21
+ *.aps
22
+ *.pch
23
+ *.vspscc
24
+ *_i.c
25
+ *_p.c
26
+ *.ncb
27
+ *.suo
28
+ *.tlb
29
+ *.tlh
30
+ *.bak
31
+ *.cache
32
+ *.ilk
33
+ *.log
34
+ [Bb]in
35
+ [Dd]ebug*/
36
+ *.lib
37
+ *.sbr
38
+ obj/
39
+ [Rr]elease*/
40
+ _ReSharper*/
41
+ [Tt]est[Rr]esult*
42
+ .vs/
43
+
44
+ # Ignore Nuget packages folder
45
+ packages/
@@ -61,6 +61,9 @@ atlassian-ide-plugin.xml
61
61
  # Cursive Clojure plugin
62
62
  .idea/replstate.xml
63
63
 
64
+ # SonarLint plugin
65
+ .idea/sonarlint/
66
+
64
67
  # Crashlytics plugin (for Android Studio and IntelliJ)
65
68
  com_crashlytics_export_strings.xml
66
69
  crashlytics.properties
@@ -3,6 +3,10 @@
3
3
  !.vscode/tasks.json
4
4
  !.vscode/launch.json
5
5
  !.vscode/extensions.json
6
+ !.vscode/*.code-snippets
6
7
 
7
8
  # Local History for Visual Studio Code
8
9
  .history/
10
+
11
+ # Built Visual Studio Code Extensions
12
+ *.vsix
@@ -1,26 +1,6 @@
1
- # Xcode
2
- #
3
- # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
4
-
5
1
  ## User settings
6
2
  xcuserdata/
7
3
 
8
- ## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
4
+ ## Xcode 8 and earlier
9
5
  *.xcscmblueprint
10
6
  *.xccheckout
11
-
12
- ## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
13
- build/
14
- DerivedData/
15
- *.moved-aside
16
- *.pbxuser
17
- !default.pbxuser
18
- *.mode1v3
19
- !default.mode1v3
20
- *.mode2v3
21
- !default.mode2v3
22
- *.perspectivev3
23
- !default.perspectivev3
24
-
25
- ## Gcc Patch
26
- /*.gcno
@@ -1,3 +1,6 @@
1
+ # If you prefer the allow list template instead of the deny list, see community template:
2
+ # https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
3
+ #
1
4
  # Binaries for programs and plugins
2
5
  *.exe
3
6
  *.exe~
@@ -8,5 +8,14 @@ gradle-app.setting
8
8
  # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
9
9
  !gradle-wrapper.jar
10
10
 
11
+ # Avoid ignore Gradle wrappper properties
12
+ !gradle-wrapper.properties
13
+
11
14
  # Cache of project
12
15
  .gradletasknamecache
16
+
17
+ # Eclipse Gradle plugin generated files
18
+ # Eclipse Core
19
+ .project
20
+ # JDT-specific (Eclipse Java Development Tools)
21
+ .classpath
@@ -2,3 +2,6 @@ _site/
2
2
  .sass-cache/
3
3
  .jekyll-cache/
4
4
  .jekyll-metadata
5
+ # Ignore folders generated by Bundler
6
+ .bundle/
7
+ vendor/
@@ -7,6 +7,7 @@
7
7
  *.bck
8
8
  *.kicad_pcb-bak
9
9
  *.kicad_sch-bak
10
+ *-backups
10
11
  *.kicad_prl
11
12
  *.sch-bak
12
13
  *~
@@ -9,3 +9,9 @@ buildNumber.properties
9
9
  .mvn/timing.properties
10
10
  # https://github.com/takari/maven-wrapper#usage-without-binary-jar
11
11
  .mvn/wrapper/maven-wrapper.jar
12
+
13
+ # Eclipse m2e generated files
14
+ # Eclipse Core
15
+ .project
16
+ # JDT-specific (Eclipse Java Development Tools)
17
+ .classpath
@@ -72,7 +72,8 @@ web_modules/
72
72
  # Yarn Integrity file
73
73
  .yarn-integrity
74
74
 
75
- # dotenv environment variables file
75
+ # dotenv environment variable files
76
+ .env
76
77
  .env.development.local
77
78
  .env.test.local
78
79
  .env.production.local
@@ -103,6 +104,9 @@ dist
103
104
  .temp
104
105
  .cache
105
106
 
107
+ # Docusaurus cache and generated files
108
+ .docusaurus
109
+
106
110
  # Serverless directories
107
111
  .serverless/
108
112
 
@@ -4,5 +4,13 @@ packer_cache/
4
4
  # Crash log
5
5
  crash.log
6
6
 
7
+ # https://www.packer.io/guides/hcl/variables
8
+ # Exclude all .pkrvars.hcl files, which are likely to contain sensitive data,
9
+ # such as password, private keys, and other secrets. These should not be part of
10
+ # version control as they are data points which are potentially sensitive and
11
+ # subject to change depending on the environment.
12
+ #
13
+ *.pkrvars.hcl
14
+
7
15
  # For built boxes
8
16
  *.box
@@ -13,7 +13,7 @@ cover_db/
13
13
  # Devel::NYTProf
14
14
  nytprof.out
15
15
 
16
- # Dizt::Zilla
16
+ # Dist::Zilla
17
17
  /.build/
18
18
 
19
19
  # Module::Build
@@ -94,7 +94,22 @@ ipython_config.py
94
94
  # install all needed dependencies.
95
95
  #Pipfile.lock
96
96
 
97
- # PEP 582; used by e.g. github.com/David-OConnor/pyflow
97
+ # poetry
98
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102
+ #poetry.lock
103
+
104
+ # pdm
105
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106
+ #pdm.lock
107
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108
+ # in version control.
109
+ # https://pdm.fming.dev/#use-with-ide
110
+ .pdm.toml
111
+
112
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
98
113
  __pypackages__/
99
114
 
100
115
  # Celery stuff
@@ -138,7 +153,7 @@ dmypy.json
138
153
  cython_debug/
139
154
 
140
155
  # PyCharm
141
- # JetBrains specific template is maintainted in a separate JetBrains.gitignore that can
156
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
142
157
  # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
143
158
  # and can be added to the global gitignore or merged into this file. For a more nuclear
144
159
  # option (not recommended) you can uncomment the following to ignore the entire idea folder.
@@ -44,3 +44,6 @@ docs/
44
44
 
45
45
  # translation temp files
46
46
  po/*~
47
+
48
+ # RStudio Connect folder
49
+ rsconnect/
@@ -26,7 +26,7 @@ We support a collection of templates, organized in this way:
26
26
  unimportant files into your repository.
27
27
  - [`Global`](./Global) contains templates for various editors, tools and
28
28
  operating systems that can be used in different situations. It is recommended
29
- that you either [add these to your global template](https://help.github.com/articles/ignoring-files/#create-a-global-gitignore)
29
+ that you either [add these to your global template](https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files#configuring-ignored-files-for-all-repositories-on-your-computer)
30
30
  or merge these rules into your project-specific templates if you want to use
31
31
  them permanently.
32
32
  - [`community`](./community) contains specialized templates for other popular
@@ -0,0 +1,7 @@
1
+ .DS_Store
2
+ compiled/
3
+ /doc/
4
+ *~
5
+ *.bak
6
+ \#*
7
+ .\#*
@@ -118,6 +118,10 @@ acs-*.bib
118
118
  # uncomment this for glossaries-extra (will ignore makeindex's style files!)
119
119
  # *.ist
120
120
 
121
+ # gnuplot
122
+ *.gnuplot
123
+ *.table
124
+
121
125
  # gnuplottex
122
126
  *-gnuplottex-*
123
127
 
@@ -192,6 +196,9 @@ _minted*
192
196
  # scrwfile
193
197
  *.wrt
194
198
 
199
+ # svg
200
+ svg-inkscape/
201
+
195
202
  # sympy
196
203
  *.sout
197
204
  *.sympy
@@ -216,6 +223,9 @@ pythontex-files-*/
216
223
  *.md5
217
224
  *.auxlock
218
225
 
226
+ # titletoc
227
+ *.ptc
228
+
219
229
  # todonotes
220
230
  *.tdo
221
231
 
@@ -7,13 +7,14 @@
7
7
 
8
8
  # Crash log files
9
9
  crash.log
10
+ crash.*.log
10
11
 
11
- # Exclude all .tfvars files, which are likely to contain sentitive data, such as
12
- # password, private keys, and other secrets. These should not be part of version
13
- # control as they are data points which are potentially sensitive and subject
12
+ # Exclude all .tfvars files, which are likely to contain sensitive data, such as
13
+ # password, private keys, and other secrets. These should not be part of version
14
+ # control as they are data points which are potentially sensitive and subject
14
15
  # to change depending on the environment.
15
- #
16
16
  *.tfvars
17
+ *.tfvars.json
17
18
 
18
19
  # Ignore override files as they are usually used to override resources locally and so
19
20
  # are not checked in
@@ -23,7 +24,6 @@ override.tf.json
23
24
  *_override.tf.json
24
25
 
25
26
  # Include override files you do wish to add to version control using negated pattern
26
- #
27
27
  # !example_override.tf
28
28
 
29
29
  # Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
@@ -17,9 +17,6 @@
17
17
  # Recordings can get excessive in size
18
18
  /[Rr]ecordings/
19
19
 
20
- # Asset meta data should only be ignored when the corresponding asset is also ignored
21
- !/[Aa]ssets/**/*.meta
22
-
23
20
  # Uncomment this line if you wish to ignore the asset store tools plugin
24
21
  # /[Aa]ssets/AssetStoreTools*
25
22
 
@@ -301,7 +301,7 @@ node_modules/
301
301
  *.dsw
302
302
  *.dsp
303
303
 
304
- # Visual Studio 6 technical files
304
+ # Visual Studio 6 technical files
305
305
  *.ncb
306
306
  *.aps
307
307
 
@@ -361,6 +361,9 @@ ASALocalRun/
361
361
  # Local History for Visual Studio
362
362
  .localhistory/
363
363
 
364
+ # Visual Studio History (VSHistory) files
365
+ .vshistory/
366
+
364
367
  # BeatPulse healthcheck temp database
365
368
  healthchecksdb
366
369
 
@@ -0,0 +1,4 @@
1
+ # CDK asset staging directory.
2
+ # For more information about AWS-CDK, see https://docs.aws.amazon.com/cdk/
3
+ .cdk.staging/
4
+ cdk.out/
@@ -0,0 +1,8 @@
1
+ # Compiled Scripts
2
+ *.a3x
3
+
4
+ # Tidy Auto-Generated Backups
5
+ Backup/*
6
+
7
+ # Au3Stripper Auto-Generated Files
8
+ *_stripped.au3
@@ -0,0 +1,3 @@
1
+ **/Objects
2
+ **/AutoBackups
3
+ *.meta
@@ -4,3 +4,10 @@
4
4
  # Ignore all bazel-* symlinks. There is no full list since this can change
5
5
  # based on the name of the directory bazel is cloned into.
6
6
  /bazel-*
7
+
8
+ # Directories for the Bazel IntelliJ plugin containing the generated
9
+ # IntelliJ project files and plugin configuration. Seperate directories are
10
+ # for the IntelliJ, Android Studio and CLion versions of the plugin.
11
+ /.ijwb/
12
+ /.aswb/
13
+ /.clwb/
@@ -0,0 +1,3 @@
1
+ build/
2
+ recovery/
3
+ BeefSpace_User.toml
@@ -19,6 +19,10 @@
19
19
  ## Uncomment this line if you think it fits the way you work on your project.
20
20
  ## **/[Uu]mbraco/
21
21
 
22
+ ## The [Mm]edia/ folder contains content. Content may vary by environment and should therefore not be added to source control.
23
+ ## Uncomment this line if you think it fits the way you work on your project.
24
+ ## **/[Mm]edia/
25
+
22
26
  # Don't ignore Umbraco packages (VisualStudio.gitignore mistakes this for a NuGet packages folder)
23
27
  # Make sure to include details from VisualStudio.gitignore BEFORE this
24
28
  !**/App_Data/[Pp]ackages/*
@@ -30,3 +34,19 @@
30
34
 
31
35
  # Ignore the Models Builder models out of date flag
32
36
  **/ood.flag
37
+
38
+ # NEW for version 9 .Net 5 (Core)
39
+ #ignore umbraco backoffice assest from wwwroot
40
+ **/wwwroot/umbraco/
41
+
42
+ # SQLite files
43
+ *.sqlite.db*
44
+
45
+ #ignore umbraco data/views/settings
46
+ **/umbraco/
47
+
48
+ #include default location for modelsbuilder output
49
+ !**/umbraco/models
50
+
51
+ #include default location for packages
52
+ !**/umbraco/Data/packages
@@ -0,0 +1,38 @@
1
+ *.swp
2
+ *.*~
3
+ project.lock.json
4
+ .DS_Store
5
+ *.pyc
6
+ nupkg/
7
+
8
+ # Visual Studio Code
9
+ .vscode
10
+
11
+ # Rider
12
+ .idea
13
+
14
+ # User-specific files
15
+ *.suo
16
+ *.user
17
+ *.userosscache
18
+ *.sln.docstates
19
+
20
+ # Build results
21
+ [Dd]ebug/
22
+ [Dd]ebugPublic/
23
+ [Rr]elease/
24
+ [Rr]eleases/
25
+ x64/
26
+ x86/
27
+ build/
28
+ bld/
29
+ [Bb]in/
30
+ [Oo]bj/
31
+ [Oo]ut/
32
+ msbuild.log
33
+ msbuild.err
34
+ msbuild.wrn
35
+
36
+ # Visual Studio 2015
37
+ .vs/
38
+
@@ -0,0 +1,23 @@
1
+ # Allowlisting gitignore template for GO projects prevents us
2
+ # from adding various unwanted local files, such as generated
3
+ # files, developer configurations or IDE-specific files etc.
4
+ #
5
+ # Recommended: Go.AllowList.gitignore
6
+
7
+ # Ignore everything
8
+ *
9
+
10
+ # But not these files...
11
+ !/.gitignore
12
+
13
+ !*.go
14
+ !go.sum
15
+ !go.mod
16
+
17
+ !README.md
18
+ !LICENSE
19
+
20
+ # !Makefile
21
+
22
+ # ...even if they are in subdirectories
23
+ !*/
@@ -0,0 +1,3 @@
1
+ # Ignore build outputs from performing a nix-build or `nix build` command
2
+ result
3
+ result-*
@@ -0,0 +1,2 @@
1
+ .packages
2
+ *_pb.toit
@@ -0,0 +1,45 @@
1
+ # git ignore file for Keil µVision Project
2
+
3
+ # µVision 5 and µVision 4 Project screen layout file
4
+ *.uvguix.*
5
+ *.uvgui.*
6
+
7
+ # Listing Files
8
+ *.i
9
+ *.lst
10
+ *.m51
11
+ *.m66
12
+ *.map
13
+
14
+ # Object Files
15
+ *.axf
16
+ *.b[0-2][0-9]
17
+ *.b3[0-1]
18
+ *.bak
19
+ *.build_log.htm
20
+ *.crf
21
+ *.d
22
+ *.dep
23
+ *.elf
24
+ *.htm
25
+ *.iex
26
+ *.lnp
27
+ *.o
28
+ *.obj
29
+ *.sbr
30
+
31
+ # Firmware Files
32
+ *.bin
33
+ *.h86
34
+ *.hex
35
+
36
+ # Build Files
37
+ .bat
38
+
39
+ # Debugger Files
40
+ .ini
41
+
42
+ # JLink Files
43
+ JLinkLog.txt
44
+
45
+ # Other Files
@@ -1,3 +1,3 @@
1
1
  module Forgitter
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: forgitter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Addie Drake
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-10 00:00:00.000000000 Z
11
+ date: 2022-08-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -86,7 +86,6 @@ files:
86
86
  - data/custom/vagrant/Extras.gitignore
87
87
  - data/custom/vagrant/Vagrant.gitignore
88
88
  - data/github/.github/PULL_REQUEST_TEMPLATE.md
89
- - data/github/.travis.yml
90
89
  - data/github/AL.gitignore
91
90
  - data/github/Actionscript.gitignore
92
91
  - data/github/Ada.gitignore
@@ -126,6 +125,7 @@ files:
126
125
  - data/github/ExtJs.gitignore
127
126
  - data/github/Fancy.gitignore
128
127
  - data/github/Finale.gitignore
128
+ - data/github/FlaxEngine.gitignore
129
129
  - data/github/ForceDotCom.gitignore
130
130
  - data/github/Fortran.gitignore
131
131
  - data/github/FuelPHP.gitignore
@@ -252,6 +252,7 @@ files:
252
252
  - data/github/R.gitignore
253
253
  - data/github/README.md
254
254
  - data/github/ROS.gitignore
255
+ - data/github/Racket.gitignore
255
256
  - data/github/Rails.gitignore
256
257
  - data/github/Raku.gitignore
257
258
  - data/github/RhodesRhomobile.gitignore
@@ -277,7 +278,6 @@ files:
277
278
  - data/github/TurboGears2.gitignore
278
279
  - data/github/TwinCAT3.gitignore
279
280
  - data/github/Typo3.gitignore
280
- - data/github/Umbraco.gitignore
281
281
  - data/github/Unity.gitignore
282
282
  - data/github/UnrealEngine.gitignore
283
283
  - data/github/VVVV.gitignore
@@ -289,14 +289,21 @@ files:
289
289
  - data/github/Yii.gitignore
290
290
  - data/github/ZendFramework.gitignore
291
291
  - data/github/Zephir.gitignore
292
+ - data/github/community/AWS/CDK.gitignore
292
293
  - data/github/community/AWS/SAM.gitignore
293
294
  - data/github/community/AltiumDesigner.gitignore
295
+ - data/github/community/AutoIt.gitignore
296
+ - data/github/community/B4X.gitignore
294
297
  - data/github/community/Bazel.gitignore
298
+ - data/github/community/Beef.gitignore
295
299
  - data/github/community/DotNet/InforCMS.gitignore
296
300
  - data/github/community/DotNet/Kentico.gitignore
301
+ - data/github/community/DotNet/Umbraco.gitignore
302
+ - data/github/community/DotNet/core.gitignore
297
303
  - data/github/community/Elixir/Phoenix.gitignore
298
304
  - data/github/community/Exercism.gitignore
299
305
  - data/github/community/GNOME/GNOMEShellExtension.gitignore
306
+ - data/github/community/Golang/Go.AllowList.gitignore
300
307
  - data/github/community/Golang/Hugo.gitignore
301
308
  - data/github/community/Gretl.gitignore
302
309
  - data/github/community/Java/JBoss4.gitignore
@@ -309,6 +316,7 @@ files:
309
316
  - data/github/community/Linux/Snap.gitignore
310
317
  - data/github/community/Logtalk.gitignore
311
318
  - data/github/community/NasaSpecsIntact.gitignore
319
+ - data/github/community/Nix.gitignore
312
320
  - data/github/community/OpenSSL.gitignore
313
321
  - data/github/community/PHP/Bitrix.gitignore
314
322
  - data/github/community/PHP/CodeSniffer.gitignore
@@ -327,11 +335,13 @@ files:
327
335
  - data/github/community/SPFx.gitignore
328
336
  - data/github/community/Splunk.gitignore
329
337
  - data/github/community/Strapi.gitignore
338
+ - data/github/community/Toit.gitignore
330
339
  - data/github/community/V.gitignore
331
340
  - data/github/community/Xilinx.gitignore
332
341
  - data/github/community/embedded/AtmelStudio.gitignore
333
342
  - data/github/community/embedded/IAR_EWARM.gitignore
334
343
  - data/github/community/embedded/esp-idf.gitignore
344
+ - data/github/community/embedded/uVision.gitignore
335
345
  - forgitter.gemspec
336
346
  - lib/forgitter.rb
337
347
  - lib/forgitter/cli.rb
@@ -359,7 +369,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
359
369
  - !ruby/object:Gem::Version
360
370
  version: '0'
361
371
  requirements: []
362
- rubygems_version: 3.2.32
372
+ rubygems_version: 3.3.7
363
373
  signing_key:
364
374
  specification_version: 4
365
375
  summary: Forgitter is a .gitignore generator.
@@ -1,10 +0,0 @@
1
- language: ruby
2
-
3
- sudo: false
4
-
5
- branches:
6
- only:
7
- - master
8
-
9
- script:
10
- - ruby -e "puts 'Hello world!'"