hoe-rubocop 1.0.10 → 1.0.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +78 -0
- data/LICENSE.md +636 -0
- data/{MAINTENANCE.rdoc → MAINTENANCE.md} +1 -1
- data/README.md +79 -0
- data/lib/hoe/rubocop.rb +2 -2
- metadata +34 -118
- data/CODE_OF_CONDUCT.rdoc +0 -26
- data/Gemfile +0 -20
- data/Gemfile.lock +0 -68
- data/History.rdoc +0 -66
- data/LICENSE.rdoc +0 -619
- data/Manifest.txt +0 -12
- data/README.rdoc +0 -71
- data/Rakefile +0 -66
- data/config.reek +0 -111
data/README.md
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
# hoe-rubocop
|
2
|
+
|
3
|
+
|What | Where |
|
4
|
+
|-----|--------|
|
5
|
+
|code | https://github.com/saigkill/hoe-rubocop |
|
6
|
+
|rdoc | http://www.rubydoc.info/gems/hoe-rubocop |
|
7
|
+
|docs | https://github.com/saigkill/hoe-rubocop/wiki |
|
8
|
+
|bugs | https://github.com/saigkill/hoe-rubocop/issues |
|
9
|
+
|mailinglist | https://groups.google.com/forum/#!forum/saigkills-hoe-plugins |
|
10
|
+
|openhub statistics | https://www.openhub.net/p/hoe-rubocop |
|
11
|
+
|authors blog | https://saschamanns.de |
|
12
|
+
|min_rubyver | 2.3.0 |
|
13
|
+
|
14
|
+
| What | Status |
|
15
|
+
|-------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
16
|
+
|last public version | [![Last Version](https://badge.fury.io/rb/hoe-rubocop.png)](http://rubygems.org/gems/hoe-rubocop) |
|
17
|
+
|downloads latest | [![Downloads latest](https://img.shields.io/gem/dtv/hoe-rubocop.svg)](http://rubygems.org/gems/hoe-rubocop) |
|
18
|
+
|downloads all | [![Downloads all](https://img.shields.io/gem/dt/hoe-rubocop.svg)](http://rubygems.org/gems/hoe-rubocop) |
|
19
|
+
|continuous integration | [![Build Status](https://dev.azure.com/saigkill/hoe-rubocop/_apis/build/status/hoe-rubocop/hoe-rubocop%20CI?branchName=master)](https://dev.azure.com/saigkill/hoe-rubocop/_build/latest?definitionId=19&branchName=master) |
|
20
|
+
|code quality | [![Maintainability](https://api.codeclimate.com/v1/badges/b86e5bce35fcf054090a/maintainability)](https://codeclimate.com/github/saigkill/hoe-rubocop/maintainability) |
|
21
|
+
|dependencies|[![Dependabot Status](https://api.dependabot.com/badges/status?host=github&repo=saigkill/hoe-rubocop)](https://dependabot.com)
|
22
|
+
|security | [![Security](https://hakiri.io/github/saigkill/hoe-rubocop/master.svg)](https://hakiri.io/github/saigkill/hoe-rubocop/master/shield) |
|
23
|
+
|vulnerabilities|[![Known Vulnerabilities](https://snyk.io/test/github/saigkill/hoe-rubocop/badge.svg?targetFile=Gemfile.lock)](https://snyk.io/test/github/saigkill/hoe-rubocop?targetFile=Gemfile.lock) |
|
24
|
+
|documentation quality | [![Documentation Quality](https://inch-ci.org/github/saigkill/hoe-rubocop.svg?branch=master)](https://inch-ci.org/github/saigkill/hoe-rubocop) |
|
25
|
+
|
26
|
+
## SCREENSHOT
|
27
|
+
|
28
|
+
[![Screenshot](https://saschamanns.de/img/screenshots/hoe-manns-screenshots.png)](https://github.com/saigkill/hoe-rubocop)
|
29
|
+
|
30
|
+
## DESCRIPTION:
|
31
|
+
|
32
|
+
This hoe plugin extends hoe for using some rake tasks to control rubocop.
|
33
|
+
|
34
|
+
The CHANGELOG.md contains a detailed description on what has changed.
|
35
|
+
|
36
|
+
hoe-rubocop is released under the GPL3 License, see the file 'License.md' for more information.
|
37
|
+
|
38
|
+
The official web site is:
|
39
|
+
|
40
|
+
https://github.com/saigkill/hoe-rubocop
|
41
|
+
|
42
|
+
## FEATURES:
|
43
|
+
|
44
|
+
* This plugin extends hoe for using some rake tasks to control rubocop.
|
45
|
+
|
46
|
+
This Gem was programmed and tested for Linux systems. If anyone would like to make the methods also fit for other OS,
|
47
|
+
i'm happy about Pull requests.
|
48
|
+
|
49
|
+
## SYNOPSIS:
|
50
|
+
|
51
|
+
Use in your Rakefile:
|
52
|
+
|
53
|
+
Hoe.plugin :rubocop
|
54
|
+
|
55
|
+
Hoe.spec 'yourproject' do
|
56
|
+
...
|
57
|
+
end
|
58
|
+
|
59
|
+
Also add hoe-rubocop to your requirements and recreate your Gemfile.
|
60
|
+
|
61
|
+
## REQUIREMENTS:
|
62
|
+
|
63
|
+
* rake
|
64
|
+
* rubocop
|
65
|
+
|
66
|
+
## INSTALL:
|
67
|
+
|
68
|
+
The installation is very easy.
|
69
|
+
|
70
|
+
gem install hoe-rubocop
|
71
|
+
|
72
|
+
## DEVELOPERS:
|
73
|
+
|
74
|
+
After checking out the source, run:
|
75
|
+
|
76
|
+
$ rake newb
|
77
|
+
|
78
|
+
This task will install any missing dependencies, run the tests/specs,
|
79
|
+
and generate the RDoc.
|
data/lib/hoe/rubocop.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
# @encoding: utf-8
|
2
|
-
# Copyright (C) 2013-
|
2
|
+
# Copyright (C) 2013-201) Sascha Manns <Sascha.Manns@mailbox.org>
|
3
3
|
#
|
4
4
|
# This program is free software: you can redistribute it and/or modify
|
5
5
|
# it under the terms of the GNU General Public License as published by
|
@@ -19,7 +19,7 @@ require 'fileutils'
|
|
19
19
|
|
20
20
|
# Main module for hoe-rubocop
|
21
21
|
module Hoe::Rubocop
|
22
|
-
VERSION = '1.0.
|
22
|
+
VERSION = '1.0.1!'
|
23
23
|
|
24
24
|
attr_accessor :rubocop
|
25
25
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hoe-rubocop
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sascha Manns
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-05-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -16,70 +16,42 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '2.0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '2.0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rubocop
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '0.
|
33
|
+
version: '0.69'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '0.
|
40
|
+
version: '0.69'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
|
-
name: hoe
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - "~>"
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '1.4'
|
48
|
-
type: :development
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - "~>"
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '1.4'
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: hoe-rubygems
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - "~>"
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '1.0'
|
62
|
-
type: :development
|
63
|
-
prerelease: false
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - "~>"
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: '1.0'
|
69
|
-
- !ruby/object:Gem::Dependency
|
70
|
-
name: hoe-version
|
42
|
+
name: hoe
|
71
43
|
requirement: !ruby/object:Gem::Requirement
|
72
44
|
requirements:
|
73
45
|
- - "~>"
|
74
46
|
- !ruby/object:Gem::Version
|
75
|
-
version: '
|
76
|
-
type: :
|
47
|
+
version: '3.17'
|
48
|
+
type: :runtime
|
77
49
|
prerelease: false
|
78
50
|
version_requirements: !ruby/object:Gem::Requirement
|
79
51
|
requirements:
|
80
52
|
- - "~>"
|
81
53
|
- !ruby/object:Gem::Version
|
82
|
-
version: '
|
54
|
+
version: '3.17'
|
83
55
|
- !ruby/object:Gem::Dependency
|
84
56
|
name: rake
|
85
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -94,98 +66,42 @@ dependencies:
|
|
94
66
|
- - "~>"
|
95
67
|
- !ruby/object:Gem::Version
|
96
68
|
version: '12.3'
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
requirements:
|
101
|
-
- - "~>"
|
102
|
-
- !ruby/object:Gem::Version
|
103
|
-
version: '6.0'
|
104
|
-
type: :development
|
105
|
-
prerelease: false
|
106
|
-
version_requirements: !ruby/object:Gem::Requirement
|
107
|
-
requirements:
|
108
|
-
- - "~>"
|
109
|
-
- !ruby/object:Gem::Version
|
110
|
-
version: '6.0'
|
111
|
-
- !ruby/object:Gem::Dependency
|
112
|
-
name: rspec
|
113
|
-
requirement: !ruby/object:Gem::Requirement
|
114
|
-
requirements:
|
115
|
-
- - "~>"
|
116
|
-
- !ruby/object:Gem::Version
|
117
|
-
version: '3.7'
|
118
|
-
type: :development
|
119
|
-
prerelease: false
|
120
|
-
version_requirements: !ruby/object:Gem::Requirement
|
121
|
-
requirements:
|
122
|
-
- - "~>"
|
123
|
-
- !ruby/object:Gem::Version
|
124
|
-
version: '3.7'
|
125
|
-
- !ruby/object:Gem::Dependency
|
126
|
-
name: hoe
|
127
|
-
requirement: !ruby/object:Gem::Requirement
|
128
|
-
requirements:
|
129
|
-
- - "~>"
|
130
|
-
- !ruby/object:Gem::Version
|
131
|
-
version: '3.17'
|
132
|
-
type: :development
|
133
|
-
prerelease: false
|
134
|
-
version_requirements: !ruby/object:Gem::Requirement
|
135
|
-
requirements:
|
136
|
-
- - "~>"
|
137
|
-
- !ruby/object:Gem::Version
|
138
|
-
version: '3.17'
|
139
|
-
description: |-
|
140
|
-
This hoe plugin extends hoe for using some rake tasks to control rubocop.
|
141
|
-
|
142
|
-
The History.rdoc contains a detailed description on what has changed.
|
143
|
-
|
144
|
-
hoe-rubocop is released under the GPL3 License, see the file 'License.rdoc' for more information.
|
145
|
-
|
146
|
-
The official web site is:
|
147
|
-
|
148
|
-
https://github.com/saigkill/hoe-rubocop
|
149
|
-
email:
|
150
|
-
- Sascha.Manns@outlook.de
|
69
|
+
description: " This hoe plugin extends hoe for using some rake tasks to control
|
70
|
+
rubocop.\n"
|
71
|
+
email: Sascha.Manns@outlook.de
|
151
72
|
executables: []
|
152
73
|
extensions: []
|
153
74
|
extra_rdoc_files:
|
154
|
-
-
|
155
|
-
-
|
156
|
-
-
|
157
|
-
-
|
158
|
-
- MAINTENANCE.rdoc
|
159
|
-
- Manifest.txt
|
160
|
-
- README.rdoc
|
75
|
+
- CHANGELOG.md
|
76
|
+
- LICENSE.md
|
77
|
+
- MAINTENANCE.md
|
78
|
+
- README.md
|
161
79
|
files:
|
162
|
-
-
|
80
|
+
- CHANGELOG.md
|
163
81
|
- CONTRIBUTING.md
|
164
|
-
-
|
165
|
-
-
|
166
|
-
-
|
167
|
-
- LICENSE.rdoc
|
168
|
-
- MAINTENANCE.rdoc
|
169
|
-
- Manifest.txt
|
170
|
-
- README.rdoc
|
171
|
-
- Rakefile
|
172
|
-
- config.reek
|
82
|
+
- LICENSE.md
|
83
|
+
- MAINTENANCE.md
|
84
|
+
- README.md
|
173
85
|
- lib/hoe/rubocop.rb
|
174
86
|
homepage: https://github.com/saigkill/hoe-rubocop
|
175
87
|
licenses:
|
176
|
-
- GPL-3
|
177
|
-
metadata:
|
178
|
-
|
179
|
-
|
180
|
-
-
|
181
|
-
|
88
|
+
- GPL-3.0
|
89
|
+
metadata:
|
90
|
+
homepage_uri: https://github.com/saigkill/hoe-rubocop
|
91
|
+
changelog_uri: https://github.com/saigkill/hoe-rubocop/blob/master/CHANGELOG.md
|
92
|
+
source_code_uri: https://github.com/saigkill/hoe-rubocop
|
93
|
+
documentation_uri: https://github.com/saigkill/hoe-rubocop/wiki
|
94
|
+
bug_tracker_uri: https://github.com/saigkill/hoe-rubocop/issues
|
95
|
+
mailing_list_uri: https://groups.google.com/forum/#!forum/saigkills-hoe-plugins
|
96
|
+
post_install_message: 'Please file bugreports on: https://github.com/saigkill/hoe-rubocop/issues'
|
97
|
+
rdoc_options: []
|
182
98
|
require_paths:
|
183
99
|
- lib
|
184
100
|
required_ruby_version: !ruby/object:Gem::Requirement
|
185
101
|
requirements:
|
186
102
|
- - ">="
|
187
103
|
- !ruby/object:Gem::Version
|
188
|
-
version: 2.
|
104
|
+
version: 2.3.0
|
189
105
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
190
106
|
requirements:
|
191
107
|
- - ">="
|
@@ -193,8 +109,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
193
109
|
version: '0'
|
194
110
|
requirements: []
|
195
111
|
rubyforge_project:
|
196
|
-
rubygems_version: 2.7.6
|
112
|
+
rubygems_version: 2.7.6.2
|
197
113
|
signing_key:
|
198
114
|
specification_version: 4
|
199
|
-
summary: This hoe plugin extends hoe for using some rake tasks to control rubocop
|
115
|
+
summary: This hoe plugin extends hoe for using some rake tasks to control rubocop.
|
200
116
|
test_files: []
|
data/CODE_OF_CONDUCT.rdoc
DELETED
@@ -1,26 +0,0 @@
|
|
1
|
-
= CONTRIBUTOR CODE OF CONDUCT:
|
2
|
-
As contributors and maintainers of this project, we pledge to respect all
|
3
|
-
people who contribute through reporting issues, posting feature requests,
|
4
|
-
updating documentation, submitting pull requests or patches, and other
|
5
|
-
activities.
|
6
|
-
|
7
|
-
We are committed to making participation in this project a harassment-free
|
8
|
-
experience for everyone, regardless of level of experience, gender, gender
|
9
|
-
identity and expression, sexual orientation, disability, personal
|
10
|
-
appearance, body size, race, age, or religion.
|
11
|
-
|
12
|
-
Examples of unacceptable behavior by participants include the use of sexual
|
13
|
-
language or imagery, derogatory comments or personal attacks, trolling,
|
14
|
-
public or private harassment, insults, or other unprofessional conduct.
|
15
|
-
|
16
|
-
Project maintainers have the right and responsibility to remove, edit, or
|
17
|
-
reject comments, commits, code, wiki edits, issues, and other contributions
|
18
|
-
that are not aligned to this Code of Conduct. Project maintainers who do
|
19
|
-
not follow the Code of Conduct may be removed from the project team.
|
20
|
-
|
21
|
-
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
22
|
-
reported by opening an issue or contacting one or more of the project
|
23
|
-
maintainers.
|
24
|
-
|
25
|
-
This Code of Conduct is adapted from the {Contributor Covenant}[http:contributor-covenant.org],
|
26
|
-
version 1.0.0, available at {http://contributor-covenant.org/version/1/0/0/}[http://contributor-covenant.org/version/1/0/0/].
|
data/Gemfile
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
# -*- ruby -*-
|
2
|
-
|
3
|
-
# DO NOT EDIT THIS FILE. Instead, edit Rakefile, and run `rake bundler:gemfile`.
|
4
|
-
|
5
|
-
source "https://rubygems.org/"
|
6
|
-
|
7
|
-
gem "bundler", "~>1.16"
|
8
|
-
gem "rubocop", "~>0.57"
|
9
|
-
|
10
|
-
gem "hoe-bundler", "~>1.4", :group => [:development, :test]
|
11
|
-
gem "hoe-highline", "~>0.2", :group => [:development, :test]
|
12
|
-
gem "hoe-rubocop", "~>1.0", :group => [:development, :test]
|
13
|
-
gem "hoe-rubygems", "~>1.0", :group => [:development, :test]
|
14
|
-
gem "hoe-version", "~>1.2", :group => [:development, :test]
|
15
|
-
gem "rake", "~>12.3", :group => [:development, :test]
|
16
|
-
gem "rdoc", "~>6.0", :group => [:development, :test]
|
17
|
-
gem "rspec", "~>3.7", :group => [:development, :test]
|
18
|
-
gem "hoe", "~>3.17", :group => [:development, :test]
|
19
|
-
|
20
|
-
# vim: syntax=ruby
|
data/Gemfile.lock
DELETED
@@ -1,68 +0,0 @@
|
|
1
|
-
GEM
|
2
|
-
remote: https://rubygems.org/
|
3
|
-
specs:
|
4
|
-
ast (2.4.0)
|
5
|
-
diff-lcs (1.3)
|
6
|
-
highline (1.7.10)
|
7
|
-
hoe (3.17.0)
|
8
|
-
rake (>= 0.8, < 13.0)
|
9
|
-
hoe-bundler (1.4.0)
|
10
|
-
hoe-highline (0.2.1)
|
11
|
-
highline (~> 1.6)
|
12
|
-
hoe (~> 3.11)
|
13
|
-
hoe-rubocop (1.0.9)
|
14
|
-
bundler (~> 1.16)
|
15
|
-
rubocop (~> 0.55)
|
16
|
-
hoe-rubygems (1.0.0)
|
17
|
-
hoe-version (1.2.0)
|
18
|
-
jaro_winkler (1.5.1)
|
19
|
-
parallel (1.12.1)
|
20
|
-
parser (2.5.1.2)
|
21
|
-
ast (~> 2.4.0)
|
22
|
-
powerpack (0.1.2)
|
23
|
-
rainbow (3.0.0)
|
24
|
-
rake (12.3.1)
|
25
|
-
rdoc (6.0.4)
|
26
|
-
rspec (3.7.0)
|
27
|
-
rspec-core (~> 3.7.0)
|
28
|
-
rspec-expectations (~> 3.7.0)
|
29
|
-
rspec-mocks (~> 3.7.0)
|
30
|
-
rspec-core (3.7.1)
|
31
|
-
rspec-support (~> 3.7.0)
|
32
|
-
rspec-expectations (3.7.0)
|
33
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
34
|
-
rspec-support (~> 3.7.0)
|
35
|
-
rspec-mocks (3.7.0)
|
36
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
37
|
-
rspec-support (~> 3.7.0)
|
38
|
-
rspec-support (3.7.1)
|
39
|
-
rubocop (0.58.1)
|
40
|
-
jaro_winkler (~> 1.5.1)
|
41
|
-
parallel (~> 1.10)
|
42
|
-
parser (>= 2.5, != 2.5.1.1)
|
43
|
-
powerpack (~> 0.1)
|
44
|
-
rainbow (>= 2.2.2, < 4.0)
|
45
|
-
ruby-progressbar (~> 1.7)
|
46
|
-
unicode-display_width (~> 1.0, >= 1.0.1)
|
47
|
-
ruby-progressbar (1.9.0)
|
48
|
-
unicode-display_width (1.4.0)
|
49
|
-
|
50
|
-
PLATFORMS
|
51
|
-
ruby
|
52
|
-
x64-mingw32
|
53
|
-
|
54
|
-
DEPENDENCIES
|
55
|
-
bundler (~> 1.16)
|
56
|
-
hoe (~> 3.17)
|
57
|
-
hoe-bundler (~> 1.4)
|
58
|
-
hoe-highline (~> 0.2)
|
59
|
-
hoe-rubocop (~> 1.0)
|
60
|
-
hoe-rubygems (~> 1.0)
|
61
|
-
hoe-version (~> 1.2)
|
62
|
-
rake (~> 12.3)
|
63
|
-
rdoc (~> 6.0)
|
64
|
-
rspec (~> 3.7)
|
65
|
-
rubocop (~> 0.57)
|
66
|
-
|
67
|
-
BUNDLED WITH
|
68
|
-
1.16.3
|
data/History.rdoc
DELETED
@@ -1,66 +0,0 @@
|
|
1
|
-
=== 1.0.10 / 2018-06-27
|
2
|
-
|
3
|
-
* 1 patch enhancement
|
4
|
-
|
5
|
-
* updated dependencies
|
6
|
-
|
7
|
-
=== 1.0.9 / 2018-04-28
|
8
|
-
|
9
|
-
* 1 misc enhancement
|
10
|
-
|
11
|
-
* updated docs
|
12
|
-
|
13
|
-
=== 1.0.8 / 2017-02-25
|
14
|
-
|
15
|
-
* 1 minor enhancement
|
16
|
-
|
17
|
-
* updated docs
|
18
|
-
|
19
|
-
=== 1.0.7 / 2016-08-06
|
20
|
-
|
21
|
-
* 1 minor enhancement
|
22
|
-
|
23
|
-
* updated dependencies by gemnasium
|
24
|
-
|
25
|
-
=== 1.0.6 / 2016-02-08
|
26
|
-
|
27
|
-
* 1 minor enhancement
|
28
|
-
|
29
|
-
* updated dependencies by gemnasium
|
30
|
-
|
31
|
-
=== 1.0.5 / 2016-01-27
|
32
|
-
|
33
|
-
* 1 minor enhancement
|
34
|
-
|
35
|
-
* updated dependencies by gemnasium
|
36
|
-
|
37
|
-
=== 1.0.3 / 2015-12-11
|
38
|
-
|
39
|
-
* 1 minor enhancement
|
40
|
-
|
41
|
-
* fixed typo in define_rubocop_tasks
|
42
|
-
|
43
|
-
=== 1.0.2 / 2015-12-11
|
44
|
-
|
45
|
-
* 1 minor enhancement
|
46
|
-
|
47
|
-
* updated rubocop dependency to 0.35
|
48
|
-
|
49
|
-
=== 1.0.1 / 2015-10-02
|
50
|
-
|
51
|
-
* 1 patch issue
|
52
|
-
|
53
|
-
* refactored code to match GitLab
|
54
|
-
|
55
|
-
=== 1.0.0 / 2015-09-26
|
56
|
-
|
57
|
-
* 1 major enhancement
|
58
|
-
|
59
|
-
* first stable release
|
60
|
-
|
61
|
-
=== 0.1.0 / 2015-09-25
|
62
|
-
|
63
|
-
* 1 major enhancement
|
64
|
-
|
65
|
-
* Birthday!
|
66
|
-
|