cucumber-html-formatter 20.2.1 → 20.3.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,159 @@
1
+ /*!
2
+ * Determine if an object is a Buffer
3
+ *
4
+ * @author Feross Aboukhadijeh <https://feross.org>
5
+ * @license MIT
6
+ */
7
+
8
+ /*!
9
+ * Font Awesome Free 6.2.1 by @fontawesome - https://fontawesome.com
10
+ * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
11
+ * Copyright 2022 Fonticons, Inc.
12
+ */
13
+
14
+ /*!
15
+ * elasticlunr.Configuration
16
+ * Copyright (C) 2016 Wei Song
17
+ */
18
+
19
+ /*!
20
+ * elasticlunr.DocumentStore
21
+ * Copyright (C) 2016 Wei Song
22
+ */
23
+
24
+ /*!
25
+ * elasticlunr.EventEmitter
26
+ * Copyright (C) 2016 Oliver Nightingale
27
+ * Copyright (C) 2016 Wei Song
28
+ */
29
+
30
+ /*!
31
+ * elasticlunr.Index
32
+ * Copyright (C) 2016 Oliver Nightingale
33
+ * Copyright (C) 2016 Wei Song
34
+ */
35
+
36
+ /*!
37
+ * elasticlunr.InvertedIndex
38
+ * Copyright (C) 2016 Wei Song
39
+ * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt
40
+ */
41
+
42
+ /*!
43
+ * elasticlunr.Pipeline
44
+ * Copyright (C) 2016 Oliver Nightingale
45
+ * Copyright (C) 2016 Wei Song
46
+ */
47
+
48
+ /*!
49
+ * elasticlunr.js
50
+ * Copyright (C) 2016 Oliver Nightingale
51
+ * Copyright (C) 2016 Wei Song
52
+ */
53
+
54
+ /*!
55
+ * elasticlunr.stemmer
56
+ * Copyright (C) 2016 Oliver Nightingale
57
+ * Copyright (C) 2016 Wei Song
58
+ * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt
59
+ */
60
+
61
+ /*!
62
+ * elasticlunr.stopWordFilter
63
+ * Copyright (C) 2016 Oliver Nightingale
64
+ * Copyright (C) 2016 Wei Song
65
+ */
66
+
67
+ /*!
68
+ * elasticlunr.tokenizer
69
+ * Copyright (C) 2016 Oliver Nightingale
70
+ * Copyright (C) 2016 Wei Song
71
+ */
72
+
73
+ /*!
74
+ * elasticlunr.trimmer
75
+ * Copyright (C) 2016 Oliver Nightingale
76
+ * Copyright (C) 2016 Wei Song
77
+ */
78
+
79
+ /*!
80
+ * elasticlunr.utils
81
+ * Copyright (C) 2016 Oliver Nightingale
82
+ * Copyright (C) 2016 Wei Song
83
+ */
84
+
85
+ /*!
86
+ * lunr.SortedSet
87
+ * Copyright (C) 2016 Oliver Nightingale
88
+ */
89
+
90
+ /*!
91
+ * repeat-string <https://github.com/jonschlinkert/repeat-string>
92
+ *
93
+ * Copyright (c) 2014-2015, Jon Schlinkert.
94
+ * Licensed under the MIT License.
95
+ */
96
+
97
+ /*! *****************************************************************************
98
+ Copyright (C) Microsoft. All rights reserved.
99
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use
100
+ this file except in compliance with the License. You may obtain a copy of the
101
+ License at http://www.apache.org/licenses/LICENSE-2.0
102
+
103
+ THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
104
+ KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
105
+ WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
106
+ MERCHANTABLITY OR NON-INFRINGEMENT.
107
+
108
+ See the Apache Version 2.0 License for specific language governing permissions
109
+ and limitations under the License.
110
+ ***************************************************************************** */
111
+
112
+ /**
113
+ * @license React
114
+ * react-dom.production.min.js
115
+ *
116
+ * Copyright (c) Facebook, Inc. and its affiliates.
117
+ *
118
+ * This source code is licensed under the MIT license found in the
119
+ * LICENSE file in the root directory of this source tree.
120
+ */
121
+
122
+ /**
123
+ * @license React
124
+ * react.production.min.js
125
+ *
126
+ * Copyright (c) Facebook, Inc. and its affiliates.
127
+ *
128
+ * This source code is licensed under the MIT license found in the
129
+ * LICENSE file in the root directory of this source tree.
130
+ */
131
+
132
+ /**
133
+ * @license React
134
+ * scheduler.production.min.js
135
+ *
136
+ * Copyright (c) Facebook, Inc. and its affiliates.
137
+ *
138
+ * This source code is licensed under the MIT license found in the
139
+ * LICENSE file in the root directory of this source tree.
140
+ */
141
+
142
+ /**
143
+ * elasticlunr - http://weixsong.github.io
144
+ * Lightweight full-text search engine in Javascript for browser search and offline search. - 0.9.5
145
+ *
146
+ * Copyright (C) 2016 Oliver Nightingale
147
+ * Copyright (C) 2016 Wei Song
148
+ * MIT Licensed
149
+ * @license
150
+ */
151
+
152
+ /** @license React v17.0.2
153
+ * react-is.production.min.js
154
+ *
155
+ * Copyright (c) Facebook, Inc. and its affiliates.
156
+ *
157
+ * This source code is licensed under the MIT license found in the
158
+ * LICENSE file in the root directory of this source tree.
159
+ */
@@ -6,11 +6,11 @@ module Cucumber
6
6
  end
7
7
 
8
8
  def css
9
- read_asset('cucumber-html.css')
9
+ read_asset('main.css')
10
10
  end
11
11
 
12
12
  def script
13
- read_asset('cucumber-html.js')
13
+ read_asset('main.js')
14
14
  end
15
15
 
16
16
  private
@@ -15,16 +15,16 @@ describe Cucumber::HTMLFormatter::AssetsLoader do
15
15
  end
16
16
 
17
17
  context '.css' do
18
- it 'reads the content of assets/cucumber-html.css' do
18
+ it 'reads the content of assets/main.css' do
19
19
  expect(subject.css).to eq('whatever content')
20
- expect(File).to have_received(:read).with(/.*\/assets\/cucumber-html\.css$/)
20
+ expect(File).to have_received(:read).with(/.*\/assets\/main\.css$/)
21
21
  end
22
22
  end
23
23
 
24
24
  context '.script' do
25
- it 'reads the content of assets/cucumber-html\.js' do
25
+ it 'reads the content of assets/main.js' do
26
26
  expect(subject.script).to eq('whatever content')
27
- expect(File).to have_received(:read).with(/.*\/assets\/cucumber-html\.js$/)
27
+ expect(File).to have_received(:read).with(/.*\/assets\/main\.js$/)
28
28
  end
29
29
  end
30
30
  end
metadata CHANGED
@@ -1,35 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cucumber-html-formatter
3
3
  version: !ruby/object:Gem::Version
4
- version: 20.2.1
4
+ version: 20.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vincent Prêtre
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-12-17 00:00:00.000000000 Z
11
+ date: 2023-06-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cucumber-messages
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '18.0'
20
- - - ">="
20
+ - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: 18.0.0
22
+ version: '22.1'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
- - - "~>"
27
+ - - ">="
28
28
  - !ruby/object:Gem::Version
29
29
  version: '18.0'
30
- - - ">="
30
+ - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: 18.0.0
32
+ version: '22.1'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: rake
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -76,20 +76,20 @@ dependencies:
76
76
  requirements:
77
77
  - - "~>"
78
78
  - !ruby/object:Gem::Version
79
- version: '9.2'
79
+ version: '11.0'
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
- version: 9.2.0
82
+ version: 11.2.0
83
83
  type: :development
84
84
  prerelease: false
85
85
  version_requirements: !ruby/object:Gem::Requirement
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: '9.2'
89
+ version: '11.0'
90
90
  - - ">="
91
91
  - !ruby/object:Gem::Version
92
- version: 9.2.0
92
+ version: 11.2.0
93
93
  description: HTML formatter for Cucumber
94
94
  email: cukes@googlegroups.com
95
95
  executables:
@@ -98,9 +98,10 @@ extensions: []
98
98
  extra_rdoc_files: []
99
99
  files:
100
100
  - README.md
101
- - assets/cucumber-html.css
102
- - assets/cucumber-html.js
103
101
  - assets/index.mustache.html
102
+ - assets/main.css
103
+ - assets/main.js
104
+ - assets/main.js.LICENSE.txt
104
105
  - bin/cucumber-html-formatter
105
106
  - lib/cucumber/html_formatter.rb
106
107
  - lib/cucumber/html_formatter/assets_loader.rb
@@ -110,16 +111,16 @@ files:
110
111
  - spec/html-formatter/assets_loader_spec.rb
111
112
  - spec/html-formatter/template_writer_spec.rb
112
113
  - spec/html_formatter_spec.rb
113
- homepage: https://github.com/cucumber/html-formatter-ruby
114
+ homepage: https://github.com/cucumber/html-formatter
114
115
  licenses:
115
116
  - MIT
116
117
  metadata:
117
- bug_tracker_uri: https://github.com/cucumber/cucumber/issues
118
- changelog_uri: https://github.com/cucumber/common/blob/main/html-formatter/CHANGELOG.md
119
- documentation_uri: https://cucumber.io/docs/gherkin/
120
- homepage_uri: https://github.com/cucumber/html-formatter-ruby
118
+ bug_tracker_uri: https://github.com/cucumber/html-formatter/issues
119
+ changelog_uri: https://github.com/cucumber/html-formatter/blob/main/CHANGELOG.md
120
+ documentation_uri: https://github.com/cucumber/html-formatter
121
+ homepage_uri: https://github.com/cucumber/html-formatter
121
122
  mailing_list_uri: https://groups.google.com/forum/#!forum/cukes
122
- source_code_uri: https://github.com/cucumber/common/tree/main/html-formatter/ruby
123
+ source_code_uri: https://github.com/cucumber/html-formatter
123
124
  post_install_message:
124
125
  rdoc_options:
125
126
  - "--charset=UTF-8"
@@ -139,7 +140,7 @@ requirements: []
139
140
  rubygems_version: 3.2.33
140
141
  signing_key:
141
142
  specification_version: 4
142
- summary: cucumber-html-formatter-20.2.1
143
+ summary: cucumber-html-formatter-20.3.1
143
144
  test_files:
144
145
  - spec/acceptance_spec.rb
145
146
  - spec/capture_warnings.rb
File without changes