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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 63c48ac6b9a6cbf0a2730ae219107431059fb24b
4
- data.tar.gz: 4e9991f6363621086f26a05be7658a3630d3889e
3
+ metadata.gz: 3a778d1c130e6c14377e1f14cac0067864233ba1
4
+ data.tar.gz: 61580c645356c8208de189a31ce53fc294ab860e
5
5
  SHA512:
6
- metadata.gz: 1acf0eec0503d35ccb21e08f2b13493b08d62f89855db90b5afb6917064b33ee05fa7db1cebb44135dddf83c534fd6e8c6f91099c46f451554f2ca092fe1c0c5
7
- data.tar.gz: f0644ce2ec0309c032aecd9e54beff1cfe6a4f1ab40228b5c76cffb6733ad835486ff8f311b894afac172c66fb83054c6df2215859e8577748c714b62d7bc6d8
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.0)
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.1.0)
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.10.6
42
+ 1.11.2
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2015 Jon Frisby
1
+ Copyright (c) 2015-2016 Jon Frisby
2
2
 
3
3
  MIT License
4
4
 
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
 
@@ -1,3 +1,3 @@
1
1
  module OrderlyGarden
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
data/tasks/lint.rake CHANGED
@@ -35,7 +35,7 @@ namespace :lint do
35
35
  end
36
36
  end
37
37
 
38
- if `which clock`.strip != ""
38
+ if `which cloc`.strip != ""
39
39
  desc "Show LOC metrics for project using cloc."
40
40
  task :cloc do
41
41
  # TODO: Make this list customizable.
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.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: 2015-11-17 00:00:00.000000000 Z
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.0
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