deckar01-task_list 2.3.1 → 2.3.3
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 +5 -5
- data/.gitignore +1 -0
- data/.gitlab-ci.yml +22 -0
- data/README.md +2 -4
- data/app/assets/javascripts/task_list.coffee +1 -1
- data/bower.json +1 -2
- data/build.mjs +26 -0
- data/lib/task_list/filter.rb +18 -19
- data/lib/task_list/version.rb +1 -1
- data/package-lock.json +5042 -0
- data/package.json +19 -24
- data/script/bootstrap +8 -1
- data/script/cibuild +1 -1
- data/task_list.gemspec +7 -0
- data/test/task_list/filter_test.rb +18 -0
- data/test/unit/test_events.coffee +38 -60
- data/test/unit/test_updates.coffee +432 -381
- data/web-test-runner.config.mjs +5 -0
- metadata +17 -14
- data/.travis.yml +0 -16
- data/test/unit/config.js +0 -87
- data/webpack.config.js +0 -19
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: deckar01-task_list
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.3.
|
4
|
+
version: 2.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jared Deckard
|
8
8
|
- Matt Todd
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2023-09-08 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: html-pipeline
|
@@ -131,7 +131,7 @@ extensions: []
|
|
131
131
|
extra_rdoc_files: []
|
132
132
|
files:
|
133
133
|
- ".gitignore"
|
134
|
-
- ".
|
134
|
+
- ".gitlab-ci.yml"
|
135
135
|
- Gemfile
|
136
136
|
- LICENSE
|
137
137
|
- README.md
|
@@ -139,6 +139,7 @@ files:
|
|
139
139
|
- app/assets/javascripts/task_list.coffee
|
140
140
|
- app/assets/stylesheets/task_list.scss
|
141
141
|
- bower.json
|
142
|
+
- build.mjs
|
142
143
|
- config.ru
|
143
144
|
- dist/.gitignore
|
144
145
|
- dist/.npmignore
|
@@ -147,6 +148,7 @@ files:
|
|
147
148
|
- lib/task_list/railtie.rb
|
148
149
|
- lib/task_list/summary.rb
|
149
150
|
- lib/task_list/version.rb
|
151
|
+
- package-lock.json
|
150
152
|
- package.json
|
151
153
|
- script/bootstrap
|
152
154
|
- script/cibuild
|
@@ -157,14 +159,17 @@ files:
|
|
157
159
|
- test/task_list/summary_test.rb
|
158
160
|
- test/task_list_test.rb
|
159
161
|
- test/test_helper.rb
|
160
|
-
- test/unit/config.js
|
161
162
|
- test/unit/test_events.coffee
|
162
163
|
- test/unit/test_updates.coffee
|
163
|
-
-
|
164
|
-
homepage:
|
165
|
-
licenses:
|
166
|
-
|
167
|
-
|
164
|
+
- web-test-runner.config.mjs
|
165
|
+
homepage: https://gitlab.com/deckar01/task_list
|
166
|
+
licenses:
|
167
|
+
- MIT
|
168
|
+
metadata:
|
169
|
+
homepage_uri: https://gitlab.com/deckar01/task_list
|
170
|
+
bug_tracker_uri: https://gitlab.com/deckar01/task_list/-/issues
|
171
|
+
source_code_uri: https://gitlab.com/deckar01/task_list
|
172
|
+
post_install_message:
|
168
173
|
rdoc_options: []
|
169
174
|
require_paths:
|
170
175
|
- lib
|
@@ -179,9 +184,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
179
184
|
- !ruby/object:Gem::Version
|
180
185
|
version: '0'
|
181
186
|
requirements: []
|
182
|
-
|
183
|
-
|
184
|
-
signing_key:
|
187
|
+
rubygems_version: 3.4.18
|
188
|
+
signing_key:
|
185
189
|
specification_version: 4
|
186
190
|
summary: Markdown TaskList components
|
187
191
|
test_files:
|
@@ -191,6 +195,5 @@ test_files:
|
|
191
195
|
- test/task_list/summary_test.rb
|
192
196
|
- test/task_list_test.rb
|
193
197
|
- test/test_helper.rb
|
194
|
-
- test/unit/config.js
|
195
198
|
- test/unit/test_events.coffee
|
196
199
|
- test/unit/test_updates.coffee
|
data/.travis.yml
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
language: ruby
|
2
|
-
sudo: false
|
3
|
-
addons:
|
4
|
-
chrome: stable
|
5
|
-
install:
|
6
|
-
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install $TRAVIS_NODE_VERSION
|
7
|
-
- ./script/bootstrap
|
8
|
-
script: ./script/cibuild
|
9
|
-
rvm:
|
10
|
-
- 2.0
|
11
|
-
- 2.1
|
12
|
-
- 2.2
|
13
|
-
env:
|
14
|
-
- TRAVIS_NODE_VERSION="11"
|
15
|
-
notifications:
|
16
|
-
email: false
|
data/test/unit/config.js
DELETED
@@ -1,87 +0,0 @@
|
|
1
|
-
// Karma configuration
|
2
|
-
// Generated on Tue Nov 12 2019 10:22:49 GMT-0600 (Central Standard Time)
|
3
|
-
|
4
|
-
module.exports = function(config) {
|
5
|
-
config.set({
|
6
|
-
|
7
|
-
// base path that will be used to resolve all patterns (eg. files, exclude)
|
8
|
-
basePath: '../..',
|
9
|
-
|
10
|
-
|
11
|
-
// frameworks to use
|
12
|
-
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
|
13
|
-
frameworks: ['qunit'],
|
14
|
-
|
15
|
-
|
16
|
-
plugins: [
|
17
|
-
'karma-qunit',
|
18
|
-
'karma-webpack',
|
19
|
-
'karma-chrome-launcher',
|
20
|
-
],
|
21
|
-
|
22
|
-
|
23
|
-
// list of files / patterns to load in the browser
|
24
|
-
files: [
|
25
|
-
'app/assets/javascripts/*.coffee',
|
26
|
-
'test/unit/*.coffee'
|
27
|
-
],
|
28
|
-
|
29
|
-
|
30
|
-
// list of files / patterns to exclude
|
31
|
-
exclude: [
|
32
|
-
],
|
33
|
-
|
34
|
-
|
35
|
-
// preprocess matching files before serving them to the browser
|
36
|
-
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
|
37
|
-
preprocessors: {
|
38
|
-
'**/*.coffee': ['webpack']
|
39
|
-
},
|
40
|
-
|
41
|
-
webpack: {
|
42
|
-
...require('../../webpack.config.js'),
|
43
|
-
mode: 'development',
|
44
|
-
},
|
45
|
-
|
46
|
-
webpackMiddleware: {
|
47
|
-
stats: 'errors-only',
|
48
|
-
},
|
49
|
-
|
50
|
-
|
51
|
-
// test results reporter to use
|
52
|
-
// possible values: 'dots', 'progress'
|
53
|
-
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
|
54
|
-
reporters: ['progress'],
|
55
|
-
|
56
|
-
|
57
|
-
// web server port
|
58
|
-
port: 9876,
|
59
|
-
|
60
|
-
|
61
|
-
// enable / disable colors in the output (reporters and logs)
|
62
|
-
colors: true,
|
63
|
-
|
64
|
-
|
65
|
-
// level of logging
|
66
|
-
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
|
67
|
-
logLevel: config.LOG_INFO,
|
68
|
-
|
69
|
-
|
70
|
-
// enable / disable watching file and executing tests whenever any file changes
|
71
|
-
autoWatch: true,
|
72
|
-
|
73
|
-
|
74
|
-
// start these browsers
|
75
|
-
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
|
76
|
-
browsers: ['ChromeHeadless'],
|
77
|
-
|
78
|
-
|
79
|
-
// Continuous Integration mode
|
80
|
-
// if true, Karma captures browsers, runs the tests and exits
|
81
|
-
singleRun: true,
|
82
|
-
|
83
|
-
// Concurrency level
|
84
|
-
// how many browser should be started simultaneous
|
85
|
-
concurrency: Infinity
|
86
|
-
})
|
87
|
-
}
|
data/webpack.config.js
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
module.exports = {
|
2
|
-
entry: './app/assets/javascripts/task_list.coffee',
|
3
|
-
output: {
|
4
|
-
filename: 'task_list.js',
|
5
|
-
libraryTarget: 'umd',
|
6
|
-
library: 'TaskList',
|
7
|
-
},
|
8
|
-
module: {
|
9
|
-
rules: [
|
10
|
-
{
|
11
|
-
test: /\.coffee$/,
|
12
|
-
loader: 'coffee-loader'
|
13
|
-
}
|
14
|
-
]
|
15
|
-
},
|
16
|
-
resolve: {
|
17
|
-
extensions: ['.coffee', '.js']
|
18
|
-
}
|
19
|
-
}
|