bundler_issue_report 0.0.1 → 0.0.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.
- data/README.md +13 -17
- data/bin/bundler_issue_report +2 -0
- data/lib/bundler_issue_report/version.rb +1 -1
- metadata +4 -4
data/README.md
CHANGED
|
@@ -1,29 +1,25 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
TODO: Write a gem description
|
|
4
|
-
|
|
5
|
-
## Installation
|
|
1
|
+
***This gem is deprecated. Please use `bundle env` instead.***
|
|
6
2
|
|
|
7
|
-
|
|
3
|
+
# BundlerIssueReport
|
|
8
4
|
|
|
9
|
-
|
|
5
|
+
The Bundler team asks that users report [certain information][ISSUES.md] when
|
|
6
|
+
they file an issue. There's a lot of it. It's kind of a pain to gather.
|
|
7
|
+
This does it all in one command.
|
|
10
8
|
|
|
11
|
-
|
|
9
|
+
[ISSUES.md]: https://github.com/Peeja/pair_exchange/commit/bb6da645656c7be8c8a752eed4990e8541565eda
|
|
12
10
|
|
|
13
|
-
$ bundle
|
|
14
11
|
|
|
15
|
-
|
|
12
|
+
## Installation
|
|
16
13
|
|
|
17
14
|
$ gem install bundler_issue_report
|
|
18
15
|
|
|
19
16
|
## Usage
|
|
20
17
|
|
|
21
|
-
|
|
18
|
+
$ cd project_where_i_see_an_issue
|
|
19
|
+
$ bundler_issue_report | pbcopy # (on a Mac)
|
|
20
|
+
|
|
21
|
+
or
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
$ bundler_issue_report > report.txt
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
27
|
-
3. Commit your changes (`git commit -am 'Added some feature'`)
|
|
28
|
-
4. Push to the branch (`git push origin my-new-feature`)
|
|
29
|
-
5. Create new Pull Request
|
|
25
|
+
Then paste the report into a new gist and link to it in your issue.
|
data/bin/bundler_issue_report
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bundler_issue_report
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-01-
|
|
12
|
+
date: 2013-01-21 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|
|
@@ -58,7 +58,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
58
58
|
version: '0'
|
|
59
59
|
segments:
|
|
60
60
|
- 0
|
|
61
|
-
hash:
|
|
61
|
+
hash: -1809232516540287704
|
|
62
62
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
63
63
|
none: false
|
|
64
64
|
requirements:
|
|
@@ -67,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
67
67
|
version: '0'
|
|
68
68
|
segments:
|
|
69
69
|
- 0
|
|
70
|
-
hash:
|
|
70
|
+
hash: -1809232516540287704
|
|
71
71
|
requirements: []
|
|
72
72
|
rubyforge_project:
|
|
73
73
|
rubygems_version: 1.8.24
|