forgitter 0.1.1 → 0.1.2
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/data/custom/vagrant/.gitkeep +0 -0
- data/forgitter.gemspec +1 -1
- data/lib/forgitter/version.rb +1 -1
- metadata +3 -3
- 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: 68ca42df72e73e7c628dbebfd42031b3c98d81736cc8d4dbe0df2cef9a93dce0
|
|
4
|
+
data.tar.gz: f07f15f1ada5043dc95117630bb02d256801322a76922864e6174096623887f4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: be809fa4f1096f4c4aca7604eb535d3f7e96c07b5e770c64b4b7cabae5ac4db956498e33e1f5f551e853cb8d12b12d29fe428e4c95982a80d0805b36c1a5b801
|
|
7
|
+
data.tar.gz: 0744dd773a5b1210ed2b940f7ab6034a7896853ce830f271cce6c8b10f34c6d816c3778bf9f4c17c0faa5074dbd02870ba4002b57ee4c3713a7df496d4bd4d15
|
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?--*
|
|
File without changes
|
data/forgitter.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ 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
15
|
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0")
|
data/lib/forgitter/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Addie Drake
|
|
@@ -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,7 +350,7 @@ 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
356
|
metadata: {}
|
data/.ruby-version
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
3.1.2
|