files_in_my_diff 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/lib/files_in_my_diff/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a88f0f02b2aefb31e6da55d59de6c6daf93d4bb4fbe747f3ec1a6a374e95eb0
|
4
|
+
data.tar.gz: 4054752c36ceaa2b84fed573babefa0cecf41785acfa5dcb2b075b053cbc89f0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eae51049ca35c407e012f1d79d3035872a69758ec4a750c46ec274aecad9254941b6b3f402db96f0e2bf9e2e6225a45d2f0e0f03a984f4870892cc05bf4a92f2
|
7
|
+
data.tar.gz: 5504a07ab0d7c1b3e6ed5acb367384b0daf9d784343e20730cd75835693728756fbcbea43f9365845ef410a6cb367ef4d93a9f5566f87a566924eeaad2963a5a
|
data/README.md
CHANGED
@@ -1,21 +1,21 @@
|
|
1
|
+
[![Gem Version](https://badge.fury.io/rb/files_in_my_diff.svg)](https://badge.fury.io/rb/files_in_my_diff)
|
2
|
+
|
1
3
|
# FilesInMyDiff
|
2
4
|
|
3
5
|
A command line tool that takes a git repository path and revision as input. It creates a temporary worktree, checks out the specified revision, and returns a JSON object containing the worktree path, commit SHA, and list of changed files. The tool helps you inspect changes in any git revision without affecting your current working directory.
|
4
6
|
|
5
7
|
## Installation
|
6
8
|
|
7
|
-
TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
|
8
|
-
|
9
9
|
Install the gem and add to the application's Gemfile by executing:
|
10
10
|
|
11
11
|
```bash
|
12
|
-
bundle add
|
12
|
+
bundle add files_in_my_diff
|
13
13
|
```
|
14
14
|
|
15
15
|
If bundler is not being used to manage dependencies, install the gem by executing:
|
16
16
|
|
17
17
|
```bash
|
18
|
-
gem install
|
18
|
+
gem install files_in_my_diff
|
19
19
|
```
|
20
20
|
|
21
21
|
## Usage
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: files_in_my_diff
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Erik T. Madsen
|
@@ -52,13 +52,13 @@ files:
|
|
52
52
|
- lib/files_in_my_diff/tmp_dir/revision_dir.rb
|
53
53
|
- lib/files_in_my_diff/version.rb
|
54
54
|
- lib/setup_git.rb
|
55
|
-
homepage: https://github.com/beatmadsen/
|
55
|
+
homepage: https://github.com/beatmadsen/files_in_my_diff
|
56
56
|
licenses:
|
57
57
|
- MIT
|
58
58
|
metadata:
|
59
|
-
homepage_uri: https://github.com/beatmadsen/
|
60
|
-
source_code_uri: https://github.com/beatmadsen/
|
61
|
-
changelog_uri: https://github.com/beatmadsen/
|
59
|
+
homepage_uri: https://github.com/beatmadsen/files_in_my_diff
|
60
|
+
source_code_uri: https://github.com/beatmadsen/files_in_my_diff
|
61
|
+
changelog_uri: https://github.com/beatmadsen/files_in_my_diff/blob/main/CHANGELOG.md
|
62
62
|
rubygems_mfa_required: 'true'
|
63
63
|
rdoc_options: []
|
64
64
|
require_paths:
|