hoe-packaging 1.1.5 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/CONTRIBUTING.md DELETED
@@ -1,33 +0,0 @@
1
- # Contributing
2
-
3
- ## Branches
4
-
5
- ### `master` branch
6
-
7
- The master branch is the current stable released version.
8
-
9
- ### `develop` branch
10
-
11
- The develop branch is the current edge of development.
12
-
13
- ## Forking
14
-
15
- 1. Fork it
16
- 2. Create your feature branch (`git checkout -b my-new-feature`)
17
- 3. Commit your changes (`git commit -am 'Add some feature'`)
18
- 4. Push to the branch (`git push origin my-new-feature`)
19
- 5. Create new Pull Request
20
-
21
- ## Pull requests
22
-
23
- * https://github.com/saigkill/hoe-packaging/pulls
24
-
25
- Please base all pull requests off the `develop` branch. Merges to
26
- `master` only occur through the `develop` branch. Pull requests
27
- based on `master` will likely be cherry picked.
28
-
29
- ## Issues
30
-
31
- Need to report an issue? Use that issue tracker:
32
-
33
- * https://saigkill.myjetbrains.com/youtrack/issues
data/MAINTENANCE.md DELETED
@@ -1,11 +0,0 @@
1
- # hoe-packaging Maintenance Policy
2
-
3
- hoe-packaging is following the [Semantic Versioning](http://semver.org/) for its releases: `(Major).(Minor).(Patch)`.
4
-
5
- - **Major version**: Whenever there is something significant or any backwards incompatible changes.
6
- - **Minor version**: When new, backwards compatible functionality is introduced a minor feature is introduced, or when a set of smaller features is rolled out.
7
- - **Patch number**: When backwards compatible bug fixes are introduced that fix incorrect behavior.
8
-
9
- The current stable release will receive security patches and bug fixes (eg. `5.0` -> `5.0.1`). Feature releases will mark the next supported stable release where the minor version is increased numerically by increments of one (eg. `5.0 -> 5.1`).
10
-
11
- I encourage everyone to run the latest stable release to ensure that you can easily upgrade to the most secure and feature rich experience. In order to make sure you can easily run the most recent stable release, we are working hard to keep the update process simple and reliable.
data/config.reek DELETED
@@ -1,111 +0,0 @@
1
- ---
2
- Attribute:
3
- enabled: false
4
- exclude: []
5
- BooleanParameter:
6
- enabled: true
7
- exclude: []
8
- ClassVariable:
9
- enabled: true
10
- exclude: []
11
- ControlParameter:
12
- enabled: true
13
- exclude: []
14
- DataClump:
15
- enabled: true
16
- exclude: []
17
- max_copies: 2
18
- min_clump_size: 2
19
- DuplicateMethodCall:
20
- enabled: true
21
- exclude: []
22
- max_calls: 3
23
- allow_calls: []
24
- FeatureEnvy:
25
- enabled: true
26
- exclude: []
27
- IrresponsibleModule:
28
- enabled: true
29
- exclude: []
30
- LongParameterList:
31
- enabled: true
32
- exclude: []
33
- max_params: 3
34
- overrides:
35
- initialize:
36
- max_params: 5
37
- LongYieldList:
38
- enabled: true
39
- exclude: []
40
- max_params: 3
41
- ModuleInitialize:
42
- enabled: true
43
- exclude: []
44
- NestedIterators:
45
- enabled: true
46
- exclude: []
47
- max_allowed_nesting: 1
48
- ignore_iterators: []
49
- NilCheck:
50
- enabled: true
51
- exclude: []
52
- PrimaDonnaMethod:
53
- enabled: true
54
- exclude: []
55
- RepeatedConditional:
56
- enabled: true
57
- exclude: []
58
- max_ifs: 2
59
- TooManyInstanceVariables:
60
- enabled: true
61
- exclude: []
62
- max_instance_variables: 9
63
- TooManyMethods:
64
- enabled: true
65
- exclude: []
66
- max_methods: 25
67
- TooManyStatements:
68
- enabled: true
69
- exclude:
70
- - initialize
71
- max_statements: 15
72
- UncommunicativeMethodName:
73
- enabled: true
74
- exclude: []
75
- reject:
76
- - !ruby/regexp /^[a-z]$/
77
- - !ruby/regexp /[0-9]$/
78
- - !ruby/regexp /[A-Z]/
79
- accept: []
80
- UncommunicativeModuleName:
81
- enabled: true
82
- exclude: []
83
- reject:
84
- - !ruby/regexp /^.$/
85
- - !ruby/regexp /[0-9]$/
86
- accept:
87
- - Inline::C
88
- UncommunicativeParameterName:
89
- enabled: true
90
- exclude: []
91
- reject:
92
- - !ruby/regexp /^.$/
93
- - !ruby/regexp /[0-9]$/
94
- - !ruby/regexp /[A-Z]/
95
- - !ruby/regexp /^_/
96
- accept: []
97
- UncommunicativeVariableName:
98
- enabled: true
99
- exclude: []
100
- reject:
101
- - !ruby/regexp /^.$/
102
- - !ruby/regexp /[0-9]$/
103
- - !ruby/regexp /[A-Z]/
104
- accept:
105
- - _
106
- UnusedParameters:
107
- enabled: true
108
- exclude: []
109
- UtilityFunction:
110
- enabled: true
111
- exclude: []
@@ -1,8 +0,0 @@
1
- require 'rspec'
2
- require File.join(File.dirname(__FILE__), '..', 'lib/hoe/packaging')
3
- require File.join(File.dirname(__FILE__), '..', 'spec/spec_helper')
4
- require 'fileutils'
5
-
6
- describe 'Hoe::Packaging' do
7
-
8
- end
data/spec/spec_helper.rb DELETED
@@ -1,15 +0,0 @@
1
- require 'coveralls'
2
- require 'simplecov'
3
- require 'fileutils'
4
- require 'rake'
5
- Coveralls.wear!
6
-
7
- SimpleCov.formatter = Coveralls::SimpleCov::Formatter
8
- SimpleCov.start do
9
- add_filter '.yardoc'
10
- add_filter 'config'
11
- add_filter 'doc'
12
- add_filter 'manual'
13
- add_filter 'pkg'
14
- add_filter 'vendor'
15
- end