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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8b503863e8c84a172963159aac112e6c9705b88b
4
- data.tar.gz: c65a738b05a5d4e6d4ebcd2c8bdcf32740af221e
3
+ metadata.gz: 577a0147dcd485819c883131dfad17a71af65de5
4
+ data.tar.gz: c0efcbaf475bd1bf439451dfac8ad26bf36f0685
5
5
  SHA512:
6
- metadata.gz: e31d7b315cee815b6e8898b1a99fd5c87a4c73f8fd7225459aedaddf796cd138f4bb49346c1f7a6add184aa0f63e206268630ff089aa562d8a9c1a4d00d31166
7
- data.tar.gz: bccff7aa1a1e8710b6e7c20eb3aded3796b78503deaaba78abb238c84b473795c6a8571a189a9f809a4371211c4a3c537e25a3bf97f7d979013358c72572ef34
6
+ metadata.gz: 976b87bac7d9680696c4445d32ed640a3cb7d3df2758ca9bf8fcbbd640934c101537d8c3e2763e3eba7dc26e5b916b71d299280995b1bbd6121ced41affe8fb1
7
+ data.tar.gz: ac20e15411aa18245684693490979b0ba79e36f5cede7b227925ab13950bcde70a001da3f72187d2974fbfe1a02a38816eaae681d16e1d04426f6ae66215c26f
File without changes
data/.gitignore CHANGED
File without changes
File without changes
File without changes
@@ -3,8 +3,9 @@ sudo: false
3
3
  rvm:
4
4
  - "1.9"
5
5
  - "2.0"
6
- - "2.1"
7
- - "2.2"
6
+ - "2.1.10"
7
+ - "2.2.5"
8
+ - "2.3.1"
8
9
  - "ruby-head"
9
10
  matrix:
10
11
  allow_failures:
File without changes
data/Gemfile CHANGED
File without changes
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
@@ -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 Style/UnusedMethodArgument
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
  #
@@ -1,7 +1,7 @@
1
1
  module Saddler
2
2
  module Reporter
3
3
  module Support
4
- VERSION = '0.1.1'
4
+ VERSION = '1.0.0'.freeze
5
5
  end
6
6
  end
7
7
  end
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "devDependencies": {
3
- "conventional-changelog": "0.4.3",
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 --overwrite --preset angular --context .conventional-changelog.context.js",
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.1.1
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: 2015-09-30 00:00:00.000000000 Z
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.4.5
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.