teaspoon 1.2.2 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +17 -1
- data/app/views/teaspoon/suite/show.html.erb +3 -0
- data/lib/teaspoon/configuration.rb +2 -1
- data/lib/teaspoon/console.rb +1 -1
- data/lib/teaspoon/instrumentation.rb +2 -4
- data/lib/teaspoon/suite.rb +1 -1
- data/lib/teaspoon/version.rb +1 -1
- metadata +23 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f2395822f24d2ede9cc8b2ae7a1445d3f2babb19c3476211a78889f34bf8e941
|
4
|
+
data.tar.gz: 1bf8c93878c6a42939fbad422a26229eab74b455336d3d74d09f564e9725ab15
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cacc87946f0a2699ecd20976c41757a4a52c47c3071a61cd27d4de662b06142cdb70f027a101dbc2394b0ce22a6db7f662953cc78642c92fff000a1a4005846a
|
7
|
+
data.tar.gz: cad67f5194f87b634cc84407da1296fb8aa709443f69757c13ee21dc8913db8bf7ccd7dade0b378ac49160e21d8375826980ae62e0b65d8645b684474ccccefb
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
### Unreleased
|
2
2
|
|
3
|
+
* Support for (webpacker)[https://github.com/rails/webpacker/].
|
4
|
+
```ruby
|
5
|
+
suite.javascript_packs += ["your-custom-pack.js"]
|
6
|
+
```
|
7
|
+
|
8
|
+
### 1.4.0 Sep 8, 2023
|
9
|
+
|
10
|
+
* Fix CI
|
11
|
+
* Unfortunately disable a few tests with Ruby 3.x, they still pass with 2.x
|
12
|
+
* Adding support for multiple test suites through options #511
|
13
|
+
* fix instrumentation to support puma >= 6.2 (#600) (#601)
|
14
|
+
|
15
|
+
### 1.3.0 Mar 19, 2021
|
16
|
+
|
17
|
+
* Officially drops support for Ruby 2.4 and Rails earlier than 4.2.11
|
18
|
+
|
3
19
|
### 1.2.2
|
4
20
|
|
5
21
|
* make sure all tests pass with rails 4.2 - 6.1 (few pending excluded PR welcome)
|
@@ -37,7 +53,7 @@
|
|
37
53
|
#### Bug Fixes
|
38
54
|
|
39
55
|
* Fixes an ActionView version related issue.
|
40
|
-
* Changes before_filter to before_action where possible (Rails 3 vs. Rails 5)
|
56
|
+
* Changes `before_filter` to `before_action` where possible (Rails 3 vs. Rails 5)
|
41
57
|
|
42
58
|
|
43
59
|
### 1.1.4
|
@@ -7,6 +7,9 @@
|
|
7
7
|
|
8
8
|
<%= stylesheet_link_tag *@suite.stylesheets %>
|
9
9
|
<%= javascript_include_tag *@suite.javascripts %>
|
10
|
+
<% @suite.javascript_packs.each do |javascript_pack| %>
|
11
|
+
<%= javascript_pack_tag javascript_pack %>
|
12
|
+
<% end %>
|
10
13
|
<script type="text/javascript">
|
11
14
|
Teaspoon.version = <%= Teaspoon::VERSION.to_json.html_safe %>;
|
12
15
|
Teaspoon.suites = <%= {all: Teaspoon.configuration.suite_configs.keys, active: @suite.name}.to_json.html_safe %>;
|
@@ -61,7 +61,7 @@ module Teaspoon
|
|
61
61
|
end
|
62
62
|
|
63
63
|
class Suite
|
64
|
-
attr_accessor :matcher, :helper, :javascripts, :stylesheets,
|
64
|
+
attr_accessor :matcher, :helper, :javascripts, :javascript_packs, :stylesheets,
|
65
65
|
:boot_partial, :body_partial,
|
66
66
|
:hooks, :expand_assets, :js_extensions
|
67
67
|
|
@@ -70,6 +70,7 @@ module Teaspoon
|
|
70
70
|
@helper = "spec_helper"
|
71
71
|
@javascripts = []
|
72
72
|
@stylesheets = ["teaspoon"]
|
73
|
+
@javascript_packs = []
|
73
74
|
|
74
75
|
@boot_partial = "boot"
|
75
76
|
@body_partial = "body"
|
data/lib/teaspoon/console.rb
CHANGED
@@ -35,10 +35,8 @@ module Teaspoon
|
|
35
35
|
|
36
36
|
result = add_instrumentation(asset)
|
37
37
|
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
[status, headers, asset]
|
38
|
+
headers["Content-Length"] = result.bytesize.to_s
|
39
|
+
[status, headers, [result]]
|
42
40
|
end
|
43
41
|
|
44
42
|
protected
|
data/lib/teaspoon/suite.rb
CHANGED
@@ -13,7 +13,7 @@ module Teaspoon
|
|
13
13
|
end
|
14
14
|
|
15
15
|
attr_accessor :config, :name
|
16
|
-
delegate :helper, :stylesheets, :javascripts, :boot_partial, :body_partial, :hooks,
|
16
|
+
delegate :helper, :stylesheets, :javascripts, :javascript_packs, :boot_partial, :body_partial, :hooks,
|
17
17
|
to: :config
|
18
18
|
|
19
19
|
def initialize(options = {})
|
data/lib/teaspoon/version.rb
CHANGED
metadata
CHANGED
@@ -1,17 +1,17 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: teaspoon
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- jejacks0n
|
8
8
|
- mikepack
|
9
9
|
- jayzes
|
10
10
|
- jedschneider
|
11
|
-
autorequire:
|
11
|
+
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date:
|
14
|
+
date: 2023-09-08 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: railties
|
@@ -19,14 +19,14 @@ dependencies:
|
|
19
19
|
requirements:
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version:
|
22
|
+
version: '5.0'
|
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
|
-
version:
|
29
|
+
version: '5.0'
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
31
|
name: simplecov
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
@@ -41,6 +41,20 @@ dependencies:
|
|
41
41
|
- - "<"
|
42
42
|
- !ruby/object:Gem::Version
|
43
43
|
version: '0.18'
|
44
|
+
- !ruby/object:Gem::Dependency
|
45
|
+
name: webrick
|
46
|
+
requirement: !ruby/object:Gem::Requirement
|
47
|
+
requirements:
|
48
|
+
- - ">="
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: '0'
|
51
|
+
type: :development
|
52
|
+
prerelease: false
|
53
|
+
version_requirements: !ruby/object:Gem::Requirement
|
54
|
+
requirements:
|
55
|
+
- - ">="
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: '0'
|
44
58
|
description: Run your Javascript tests using Jasmine, Mocha or QUnit using a variety
|
45
59
|
of platforms.
|
46
60
|
email:
|
@@ -141,7 +155,7 @@ homepage: https://github.com/jejacks0n/teaspoon
|
|
141
155
|
licenses:
|
142
156
|
- MIT
|
143
157
|
metadata: {}
|
144
|
-
post_install_message:
|
158
|
+
post_install_message:
|
145
159
|
rdoc_options: []
|
146
160
|
require_paths:
|
147
161
|
- lib
|
@@ -149,15 +163,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
149
163
|
requirements:
|
150
164
|
- - ">="
|
151
165
|
- !ruby/object:Gem::Version
|
152
|
-
version: '2.
|
166
|
+
version: '2.7'
|
153
167
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
154
168
|
requirements:
|
155
169
|
- - ">="
|
156
170
|
- !ruby/object:Gem::Version
|
157
171
|
version: '0'
|
158
172
|
requirements: []
|
159
|
-
rubygems_version: 3.
|
160
|
-
signing_key:
|
173
|
+
rubygems_version: 3.4.18
|
174
|
+
signing_key:
|
161
175
|
specification_version: 4
|
162
176
|
summary: 'Teaspoon: A Javascript test runner built on top of Rails'
|
163
177
|
test_files: []
|