development-toolbox 0.4.0 → 0.5.0

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: 4036c6a08ecdedb80f43ce1eee365fa81c0a9dd7
4
- data.tar.gz: d534416ccbeb71f99ea98878fa09cd6a94bfd9e0
3
+ metadata.gz: c6d425f75119912c1e4c40a5dca10625166705b2
4
+ data.tar.gz: 81f557e4a85892e3c59a53004fc6122332026d27
5
5
  SHA512:
6
- metadata.gz: ffc13e6274a567ffb227b0a7edb9344ea2a226b325f70488a2a863297e628850b3d82a89d8412c91e2d31b4bf9d27047d375761ddf2760423619c3d47ef4dbe2
7
- data.tar.gz: a6ba6d20a6a1792f3cf47e07f9a5b737cfc62ed51c3dfb31fb149488ea9efdf4763dea75aa6010481dc17e4657697c07ba4fe1f7c25f8c470ca347ed7266eb19
6
+ metadata.gz: 99870550d83f19ff000d4ed87b5313228be5cccff00988a93c7ed5788577a46c2b600f09d4cb2bab98c972163a764e94138f8bb7be5196f8b4c6b28e4eb27ece
7
+ data.tar.gz: 7d2712d9cb643063994fbf6e109fb08acfd7f8f7ac42d4ed4e13994b6a4bfd0ddbbef1ac537f3b2bad2ce9c978caf05669f5e27632a1fa7d6db9546bbf54a014
data/.yardopts CHANGED
@@ -1,5 +1,5 @@
1
- --title='Development::Toolbox'
1
+ --title 'Development::Toolbox'
2
2
  --plugin yard-commonmarker
3
- --markup-provider=commonmarker
4
- --markup=markdown
3
+ --markup-provider commonmarker
4
+ --markup markdown
5
5
  --readme README.md
data/README.md CHANGED
@@ -16,6 +16,18 @@ Set of tools every Ruby developer needs to provide quality Ruby code.
16
16
  * _Or install it yourself if you have no code yet:_
17
17
  1. Execute `gem install development-toolbox`
18
18
 
19
+ ## Usage in [Gem] development
20
+
21
+ Add following to your `Rakefile`:
22
+
23
+ ```ruby
24
+ require 'development/tasks'
25
+ Development::Tasks.install
26
+
27
+ # Ensure tests passing and documentation generating before release
28
+ task release: %i[test doc]
29
+ ```
30
+
19
31
  ## Development
20
32
 
21
33
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
@@ -27,3 +39,5 @@ To install this gem onto your local machine, run `bin/rake install`. To release
27
39
  Bug reports and pull requests are welcome on GitHub at https://gitlab.com/alsemyonov/development-toolbox. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
28
40
 
29
41
  © Alex Semyonov, 2017, [MIT License](http://opensource.org/licenses/MIT)
42
+
43
+ [Gem]: http://guides.rubygems.org/make-your-own-gem/ "Make your own gem - RubyGems Guides"
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Development
4
4
  module Toolbox
5
- VERSION = '0.4.0'
5
+ VERSION = '0.5.0'
6
6
  end
7
7
  end
@@ -36,6 +36,6 @@ if gemspecs.size > 1
36
36
  gems.each { |gem| puts gem }
37
37
  end
38
38
  end
39
- else
39
+ elsif gemspecs.size == 1
40
40
  require 'bundler/gem_tasks'
41
41
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: development-toolbox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Semyonov