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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 52db613ade83c77767867709ccb9acd56b8d47c7a75b8a35d0b126db61e9b299
4
- data.tar.gz: 788898cca37c2f3809ea593f0a36af8ec920daf421d7f34ad34a9dac5161c430
3
+ metadata.gz: 68ca42df72e73e7c628dbebfd42031b3c98d81736cc8d4dbe0df2cef9a93dce0
4
+ data.tar.gz: f07f15f1ada5043dc95117630bb02d256801322a76922864e6174096623887f4
5
5
  SHA512:
6
- metadata.gz: b964078bcf972e8fcd315922b793b85c9021057eb38474ebb6ff09b48cc39c871b46c08b8c4f02ffc1788471e681c16103a1b6cf7b30fde45c70394615a8d1a9
7
- data.tar.gz: 3195f6c2fdb421816092df7479858afbb8c08fd81548efbde9b960b3a3318b1aeb03b5c575fbca632aedd699bc682e01d3f65c57aa510e72f782dc071aa62bc7
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
- .bundle
4
- .config
5
- .yardoc
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
- InstalledFiles
8
- _yardoc
9
- coverage
10
- doc/
11
- lib/bundler/man
12
- pkg
13
- rdoc
14
- spec/reports
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")
@@ -1,3 +1,3 @@
1
1
  module Forgitter
2
- VERSION = '0.1.1'
2
+ VERSION = '0.1.2'
3
3
  end
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.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