safedep 0.1.0 → 0.1.1
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/CHANGELOG.md +4 -0
- data/README.md +20 -10
- data/lib/safedep/cli/option_parser.rb +1 -1
- data/lib/safedep/version.rb +1 -1
- data/spec/safedep/cli_spec.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 073181294c53aaa47b98decfae315f69483ecaba
|
4
|
+
data.tar.gz: 892e8eea3c963afb826c387e01f407423da13e8e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7332be02da69cffbd75edb5c83c5036797fe0863ac55ff9fb3bb54b8a1d0ac7939ae5e170919b9ab29ac63e6f783ff45f49d5751687c54cb7889dc477841cd11
|
7
|
+
data.tar.gz: 38c86e5409d9352418e91021fac8970b96d96f7ea21d0ce630566e2efa6f2c7747ffb09f099a7e169691d55c4018d8a4237ac39b8023aac346262d44ce68387c
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -14,16 +14,6 @@
|
|
14
14
|
$ gem install safedep
|
15
15
|
```
|
16
16
|
|
17
|
-
## Usage
|
18
|
-
|
19
|
-
Just run `safedep` command in your project's root directory,
|
20
|
-
and then you should see the `Gemfile` is modified.
|
21
|
-
|
22
|
-
```bash
|
23
|
-
$ cd your-project
|
24
|
-
$ safedep
|
25
|
-
```
|
26
|
-
|
27
17
|
## Example
|
28
18
|
|
29
19
|
Here's a `Gemfile` with dependencies without version specifier:
|
@@ -75,6 +65,26 @@ index 5ff2c3c..488dd41 100644
|
|
75
65
|
end
|
76
66
|
```
|
77
67
|
|
68
|
+
## Usage
|
69
|
+
|
70
|
+
Just run `safedep` command in your project's root directory,
|
71
|
+
and then you should see the `Gemfile` is modified.
|
72
|
+
|
73
|
+
```bash
|
74
|
+
$ cd your-project
|
75
|
+
$ safedep
|
76
|
+
```
|
77
|
+
|
78
|
+
## Options
|
79
|
+
|
80
|
+
### `--without`
|
81
|
+
|
82
|
+
Specify groups to skip modification as comma-separated list.
|
83
|
+
|
84
|
+
```bash
|
85
|
+
$ safedep --without development,test
|
86
|
+
```
|
87
|
+
|
78
88
|
## Compatibility
|
79
89
|
|
80
90
|
Tested on MRI 1.9.3, 2.0, 2.1, 2.2 and JRuby in 1.9 mode.
|
data/lib/safedep/version.rb
CHANGED
data/spec/safedep/cli_spec.rb
CHANGED