saddler-reporter-support 0.1.1 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.conventional-changelog.context.js +0 -0
- data/.gitignore +0 -0
- data/.rubocop.yml +0 -0
- data/.tachikoma.yml +0 -0
- data/.travis.yml +3 -2
- data/CODE_OF_CONDUCT.md +0 -0
- data/Gemfile +0 -0
- data/LICENSE.txt +0 -0
- data/README.md +0 -0
- data/Rakefile +2 -2
- data/changelog.md +6 -0
- data/lib/saddler/reporter/support.rb +3 -1
- data/lib/saddler/reporter/support/version.rb +1 -1
- data/package.json +2 -2
- data/saddler-reporter-support.gemspec +0 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 577a0147dcd485819c883131dfad17a71af65de5
|
4
|
+
data.tar.gz: c0efcbaf475bd1bf439451dfac8ad26bf36f0685
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 976b87bac7d9680696c4445d32ed640a3cb7d3df2758ca9bf8fcbbd640934c101537d8c3e2763e3eba7dc26e5b916b71d299280995b1bbd6121ced41affe8fb1
|
7
|
+
data.tar.gz: ac20e15411aa18245684693490979b0ba79e36f5cede7b227925ab13950bcde70a001da3f72187d2974fbfe1a02a38816eaae681d16e1d04426f6ae66215c26f
|
File without changes
|
data/.gitignore
CHANGED
File without changes
|
data/.rubocop.yml
CHANGED
File without changes
|
data/.tachikoma.yml
CHANGED
File without changes
|
data/.travis.yml
CHANGED
data/CODE_OF_CONDUCT.md
CHANGED
File without changes
|
data/Gemfile
CHANGED
File without changes
|
data/LICENSE.txt
CHANGED
File without changes
|
data/README.md
CHANGED
File without changes
|
data/Rakefile
CHANGED
@@ -10,8 +10,8 @@ task default: :test
|
|
10
10
|
|
11
11
|
require 'yard'
|
12
12
|
require 'yard/rake/yardoc_task'
|
13
|
-
DOC_FILES = ['lib/**/*.rb']
|
14
|
-
DOC_OPTIONS = ['--debug', '--verbose']
|
13
|
+
DOC_FILES = ['lib/**/*.rb'].freeze
|
14
|
+
DOC_OPTIONS = ['--debug', '--verbose'].freeze
|
15
15
|
YARD::Rake::YardocTask.new(:doc) do |t|
|
16
16
|
t.files = DOC_FILES
|
17
17
|
t.options = DOC_OPTIONS if Rake.application.options.trace
|
data/changelog.md
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
<a name="1.0.0"></a>
|
2
|
+
# [1.0.0](https://github.com/packsaddle/ruby-saddler-reporter-support/compare/v0.1.1...v1.0.0) (2016-05-01)
|
3
|
+
|
4
|
+
* Ship v1.0.0!
|
5
|
+
|
6
|
+
|
1
7
|
<a name="0.1.1"></a>
|
2
8
|
## [0.1.1](https://github.com/packsaddle/ruby-saddler-reporter-support/compare/v0.1.0...v0.1.1) (2015-09-30)
|
3
9
|
|
@@ -20,12 +20,13 @@ module Saddler
|
|
20
20
|
# @param options [Hash] options from saddler cli.
|
21
21
|
#
|
22
22
|
# @return [void]
|
23
|
-
def report(messages, options) # rubocop:disable
|
23
|
+
def report(messages, options) # rubocop:disable Lint/UnusedMethodArgument
|
24
24
|
@output.puts messages
|
25
25
|
end
|
26
26
|
|
27
27
|
# Parser from xml to Plain Old Ruby Object with Nori
|
28
28
|
#
|
29
|
+
# rubocop:disable Metrics/LineLength
|
29
30
|
# @example one file no error
|
30
31
|
# xml = <<-XML
|
31
32
|
# <?xml version='1.0' encoding='UTF-8'?>
|
@@ -155,6 +156,7 @@ module Saddler
|
|
155
156
|
# ]
|
156
157
|
# }
|
157
158
|
# }
|
159
|
+
# rubocop:enable Metrics/LineLength
|
158
160
|
#
|
159
161
|
# @param xml [String] xml string
|
160
162
|
#
|
data/package.json
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
{
|
2
2
|
"devDependencies": {
|
3
|
-
"conventional-changelog": "
|
3
|
+
"conventional-changelog-cli": "^1.1.1",
|
4
4
|
"npm-check-updates": "^2.2.3",
|
5
5
|
"urijs": "^1.16.1"
|
6
6
|
},
|
7
7
|
"scripts": {
|
8
|
-
"changelog": "conventional-changelog -i changelog.md --
|
8
|
+
"changelog": "conventional-changelog -i changelog.md --same-file --preset angular --context .conventional-changelog.context.js",
|
9
9
|
"ncu": "ncu -u"
|
10
10
|
}
|
11
11
|
}
|
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: saddler-reporter-support
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- sanemat
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-05-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: nori
|
@@ -110,7 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
110
110
|
version: '0'
|
111
111
|
requirements: []
|
112
112
|
rubyforge_project:
|
113
|
-
rubygems_version: 2.
|
113
|
+
rubygems_version: 2.5.1
|
114
114
|
signing_key:
|
115
115
|
specification_version: 4
|
116
116
|
summary: Interface for saddler-reporter. And utilities for saddler-reporter.
|