forgitter 0.1.1 → 0.1.4
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 +4 -4
- data/.gitignore +54 -14
- data/README.md +5 -7
- data/data/custom/vagrant/.gitkeep +0 -0
- data/forgitter.gemspec +2 -1
- data/lib/forgitter/version.rb +1 -1
- metadata +6 -5
- data/.ruby-version +0 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d2c4c56aa40e8e20b2793f3f46c32bc39d1b46a310b08b94663fe6827d9cfd1b
|
|
4
|
+
data.tar.gz: efcd3e813bc309b95aa9a4ba30f1ed3beef06f09a016c6e12eef6f3e074d523e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 541b39c98336b5d52cc36f6ff5e093f4c34063c3f4a698fecad7c197493a7fe6dfff1a1b10ed40a52182b1730bef2774e14cbb37e7cc35258fbe7c38008b3d85
|
|
7
|
+
data.tar.gz: 20a6721bd03e52390cdaf8c75fa2b237b486b7c84557b861e7d701c1fb549a1551980c823d86e0b1589c2f2802e31521e859bae7eef68225218f4c124eb042d4
|
data/.gitignore
CHANGED
|
@@ -1,17 +1,57 @@
|
|
|
1
|
+
# github/Ruby.gitignore
|
|
1
2
|
*.gem
|
|
2
3
|
*.rbc
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
/.config
|
|
5
|
+
/coverage/
|
|
6
|
+
/InstalledFiles
|
|
7
|
+
/pkg/
|
|
8
|
+
/spec/reports/
|
|
9
|
+
/spec/examples.txt
|
|
10
|
+
/test/tmp/
|
|
11
|
+
/test/version_tmp/
|
|
12
|
+
/tmp/
|
|
13
|
+
|
|
14
|
+
# Used by dotenv library to load environment variables.
|
|
15
|
+
# .env
|
|
16
|
+
|
|
17
|
+
# Ignore Byebug command history file.
|
|
18
|
+
.byebug_history
|
|
19
|
+
|
|
20
|
+
## Specific to RubyMotion:
|
|
21
|
+
.dat*
|
|
22
|
+
.repl_history
|
|
23
|
+
build/
|
|
24
|
+
*.bridgesupport
|
|
25
|
+
build-iPhoneOS/
|
|
26
|
+
build-iPhoneSimulator/
|
|
27
|
+
|
|
28
|
+
## Specific to RubyMotion (use of CocoaPods):
|
|
29
|
+
#
|
|
30
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
|
31
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
|
32
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
|
33
|
+
#
|
|
34
|
+
# vendor/Pods/
|
|
35
|
+
|
|
36
|
+
## Documentation cache and generated files:
|
|
37
|
+
/.yardoc/
|
|
38
|
+
/_yardoc/
|
|
39
|
+
/doc/
|
|
40
|
+
/rdoc/
|
|
41
|
+
|
|
42
|
+
## Environment normalization:
|
|
43
|
+
/.bundle/
|
|
44
|
+
/vendor/bundle
|
|
45
|
+
/lib/bundler/man/
|
|
46
|
+
|
|
47
|
+
# for a library or gem, you might want to ignore these files since the code is
|
|
48
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
6
49
|
Gemfile.lock
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
test/tmp
|
|
16
|
-
test/version_tmp
|
|
17
|
-
tmp
|
|
50
|
+
.ruby-version
|
|
51
|
+
.ruby-gemset
|
|
52
|
+
|
|
53
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
|
54
|
+
.rvmrc
|
|
55
|
+
|
|
56
|
+
# Used by RuboCop. Remote config files pulled in from inherit_from directive.
|
|
57
|
+
# .rubocop-https?--*
|
data/README.md
CHANGED
|
@@ -44,12 +44,10 @@ To see a list of ignorefiles that match specific tags, run:
|
|
|
44
44
|
|
|
45
45
|
forgitter -l TAG1 [TAG2 ...]
|
|
46
46
|
|
|
47
|
-
> $ forgitter -l
|
|
48
|
-
>
|
|
49
|
-
>
|
|
50
|
-
>
|
|
51
|
-
> cloudspace rails ruby cloudspace/rails/Ruby.gitignore
|
|
52
|
-
> github rails github/Rails.gitignore
|
|
47
|
+
> $ forgitter -l vagrant
|
|
48
|
+
> custom vagrant extras custom/vagrant/Extras.gitignore
|
|
49
|
+
> custom vagrant vagrant custom/vagrant/Vagrant.gitignore
|
|
50
|
+
> github global vagrant github/Global/Vagrant.gitignore
|
|
53
51
|
|
|
54
52
|
Running `forgitter -l` without arguments will list all available
|
|
55
53
|
ignorefiles.
|
|
@@ -65,7 +63,7 @@ submodule. After cloning this repository, run the following to retrieve the
|
|
|
65
63
|
\*.gitignore files placed directly under `data/` will be ignored due to tag
|
|
66
64
|
ambiguity.
|
|
67
65
|
|
|
68
|
-
1. Fork it ( http://github.com/
|
|
66
|
+
1. Fork it ( http://github.com/addiedx44/forgitter/fork )
|
|
69
67
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
70
68
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
71
69
|
4. Push to the branch (`git push origin my-new-feature`)
|
|
File without changes
|
data/forgitter.gemspec
CHANGED
|
@@ -10,8 +10,9 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ['addie@v0gel.io']
|
|
11
11
|
spec.summary = %q{Forgitter is a .gitignore generator.}
|
|
12
12
|
spec.description = %q{Forgitter is a .gitignore generator. It is based on the ignorefiles found at https://github.com/github/gitignore.}
|
|
13
|
-
spec.homepage = ''
|
|
13
|
+
spec.homepage = 'https://github.com/addiedx44/forgitter'
|
|
14
14
|
spec.license = 'MIT'
|
|
15
|
+
spec.metadata = { 'source_code_uri' => 'https://github.com/addiedx44/forgitter' }
|
|
15
16
|
|
|
16
17
|
spec.files = `git ls-files -z`.split("\x0")
|
|
17
18
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
data/lib/forgitter/version.rb
CHANGED
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.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Addie Drake
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-08-
|
|
11
|
+
date: 2022-08-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -77,12 +77,12 @@ extra_rdoc_files: []
|
|
|
77
77
|
files:
|
|
78
78
|
- ".gitignore"
|
|
79
79
|
- ".gitmodules"
|
|
80
|
-
- ".ruby-version"
|
|
81
80
|
- Gemfile
|
|
82
81
|
- LICENSE
|
|
83
82
|
- README.md
|
|
84
83
|
- Rakefile
|
|
85
84
|
- bin/forgitter
|
|
85
|
+
- data/custom/vagrant/.gitkeep
|
|
86
86
|
- data/custom/vagrant/Extras.gitignore
|
|
87
87
|
- data/custom/vagrant/Vagrant.gitignore
|
|
88
88
|
- data/github/.github/PULL_REQUEST_TEMPLATE.md
|
|
@@ -350,10 +350,11 @@ files:
|
|
|
350
350
|
- lib/forgitter/options.rb
|
|
351
351
|
- lib/forgitter/runner.rb
|
|
352
352
|
- lib/forgitter/version.rb
|
|
353
|
-
homepage:
|
|
353
|
+
homepage: https://github.com/addiedx44/forgitter
|
|
354
354
|
licenses:
|
|
355
355
|
- MIT
|
|
356
|
-
metadata:
|
|
356
|
+
metadata:
|
|
357
|
+
source_code_uri: https://github.com/addiedx44/forgitter
|
|
357
358
|
post_install_message:
|
|
358
359
|
rdoc_options: []
|
|
359
360
|
require_paths:
|
data/.ruby-version
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
3.1.2
|