orderly_garden 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/CHANGELOG.md +5 -0
- data/Gemfile.lock +3 -3
- data/LICENSE.txt +1 -1
- data/README.md +9 -5
- data/lib/orderly_garden/version.rb +1 -1
- data/tasks/lint.rake +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3a778d1c130e6c14377e1f14cac0067864233ba1
|
|
4
|
+
data.tar.gz: 61580c645356c8208de189a31ce53fc294ab860e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 63821b7456822a25db2576857a41fa8e4e0a63efd94a689ebe761dfec474dc236db75c22033ba38e419a2e689d1081814da5f9cfa341f770fbf7ec82ffc53f8b
|
|
7
|
+
data.tar.gz: f7e8e276517bb2f6f1630f083913d204e135a8e1b4a7dd3dc1f060e8a64c186a8d84a929b0f84c31f4161434a8b7fa7c6139c84b9e84dfe1eeb4a5598442a1d3
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
## Next Version
|
|
4
4
|
|
|
5
|
+
## v0.1.2 - 2016-01-05 - Bug fix.
|
|
6
|
+
|
|
7
|
+
* Fix an embarassing typo that made the `lint:cloc` task never usable.
|
|
8
|
+
|
|
9
|
+
|
|
5
10
|
## v0.1.1 - 2015-11-17 - Bug fixes.
|
|
6
11
|
|
|
7
12
|
* Fix for bug causing built-in `lint` tasks to not be loaded due to files being moved around in project.
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
orderly_garden (0.1.
|
|
4
|
+
orderly_garden (0.1.2)
|
|
5
5
|
bundler-audit (> 0)
|
|
6
6
|
rake (~> 10.0)
|
|
7
7
|
rubocop (> 0)
|
|
@@ -9,7 +9,7 @@ PATH
|
|
|
9
9
|
GEM
|
|
10
10
|
remote: https://rubygems.org/
|
|
11
11
|
specs:
|
|
12
|
-
ast (2.
|
|
12
|
+
ast (2.2.0)
|
|
13
13
|
astrolabe (1.3.1)
|
|
14
14
|
parser (~> 2.2)
|
|
15
15
|
bundler-audit (0.4.0)
|
|
@@ -39,4 +39,4 @@ DEPENDENCIES
|
|
|
39
39
|
orderly_garden!
|
|
40
40
|
|
|
41
41
|
BUNDLED WITH
|
|
42
|
-
1.
|
|
42
|
+
1.11.2
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
|
@@ -31,11 +31,8 @@ Or install it yourself as:
|
|
|
31
31
|
gem install orderly_garden
|
|
32
32
|
```
|
|
33
33
|
|
|
34
|
-
|
|
35
34
|
## Usage
|
|
36
35
|
|
|
37
|
-
TODO: Write usage instructions here. Hint, try `rake -T`.
|
|
38
|
-
|
|
39
36
|
### Setup
|
|
40
37
|
|
|
41
38
|
1. In `Rakefile`, add this -- replacing the domain name with the URL of your private Docker registry:
|
|
@@ -52,9 +49,16 @@ TODO: Write usage instructions here. Hint, try `rake -T`.
|
|
|
52
49
|
|
|
53
50
|
### Running The Tools
|
|
54
51
|
|
|
55
|
-
```bash
|
|
56
|
-
rake lint # Run all `lint:*` tasks. Includes `bundler-audit` and `Rubocop` by default.
|
|
57
52
|
```
|
|
53
|
+
rake -T
|
|
54
|
+
# rake lint # Run all lint checks against the code
|
|
55
|
+
# rake lint:bundler # Check for outdated gems
|
|
56
|
+
# rake lint:bundler-audit # Run bundler-audit against the Gemfile
|
|
57
|
+
# rake lint:cloc # Show LOC metrics for project using cloc
|
|
58
|
+
# rake lint:rubocop # Run Rubocop against the codebase
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
Using the DSL constructs (such as `with_tempfile`, `write_file`...) should be pretty self-explanatory if you take a peek at the source.
|
|
58
62
|
|
|
59
63
|
### Custom Lint Tasks
|
|
60
64
|
|
data/tasks/lint.rake
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: orderly_garden
|
|
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
|
- Jon Frisby
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-01-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -108,7 +108,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
108
108
|
version: '0'
|
|
109
109
|
requirements: []
|
|
110
110
|
rubyforge_project:
|
|
111
|
-
rubygems_version: 2.5.
|
|
111
|
+
rubygems_version: 2.4.5.1
|
|
112
112
|
signing_key:
|
|
113
113
|
specification_version: 4
|
|
114
114
|
summary: A set of tools for Rake and Ruby workflows, to help keep things neat and
|