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 +4 -4
- data/.yardopts +3 -3
- data/README.md +14 -0
- data/lib/development/toolbox/version.rb +1 -1
- data/rakelib/gem.rake +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: c6d425f75119912c1e4c40a5dca10625166705b2
|
|
4
|
+
data.tar.gz: 81f557e4a85892e3c59a53004fc6122332026d27
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 99870550d83f19ff000d4ed87b5313228be5cccff00988a93c7ed5788577a46c2b600f09d4cb2bab98c972163a764e94138f8bb7be5196f8b4c6b28e4eb27ece
|
|
7
|
+
data.tar.gz: 7d2712d9cb643063994fbf6e109fb08acfd7f8f7ac42d4ed4e13994b6a4bfd0ddbbef1ac537f3b2bad2ce9c978caf05669f5e27632a1fa7d6db9546bbf54a014
|
data/.yardopts
CHANGED
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"
|
data/rakelib/gem.rake
CHANGED