coprl 3.0.0.beta.1 → 3.0.0.beta.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +9 -15
- data/CHANGELOG.md +105 -13
- data/Gemfile +12 -1
- data/Gemfile.lock +105 -32
- data/README.md +10 -5
- data/app/demo/components/dialogs.pom +1 -1
- data/app/demo/components/nav/menu.pom +0 -1
- data/app/demo/components/snackbar.pom +9 -3
- data/app/demo/events/content_as_form.pom +3 -3
- data/app/demo/events/halted.pom +23 -0
- data/app/demo/events/nav/drawer.pom +1 -1
- data/app/demo/events/tagged_input.pom +2 -2
- data/app/demo/patterns/search_select.pom +1 -1
- data/app/demo/plugins/animate.pom +144 -0
- data/app/demo/plugins/cacheable.pom +64 -0
- data/app/demo/plugins/clipboard.pom +21 -0
- data/app/demo/plugins/color_picker.pom +17 -0
- data/app/demo/plugins/google_maps.pom +24 -0
- data/app/demo/plugins/iframe.pom +14 -0
- data/app/demo/plugins/image_crop.pom +1 -1
- data/app/demo/plugins/markup.pom +14 -0
- data/app/demo/plugins/nav/drawer.pom +1 -1
- data/app/demo/plugins/script.pom +17 -0
- data/app/demo/plugins/scroll_to.pom +22 -0
- data/app/demo/plugins/timer.pom +24 -0
- data/app/demo/shared/context_list.pom +1 -1
- data/config.ru +15 -1
- data/coprl.gemspec +2 -2
- data/lib/coprl/presenters/cli.rb +10 -0
- data/lib/coprl/presenters/dsl/components/actions/base.rb +5 -1
- data/lib/coprl/presenters/dsl/components/base.rb +6 -3
- data/lib/coprl/presenters/dsl/components/event.rb +6 -1
- data/lib/coprl/presenters/dsl/components/multi_select.rb +3 -3
- data/lib/coprl/presenters/dsl/components/table.rb +2 -2
- data/lib/coprl/presenters/generators/plugin.rb +21 -6
- data/lib/coprl/presenters/generators/templates/plugin/.github/workflows/semantic-release.yml +41 -0
- data/lib/coprl/presenters/generators/templates/plugin/.releaserc +15 -0
- data/lib/coprl/presenters/generators/templates/plugin/.ruby-version +1 -0
- data/lib/coprl/presenters/generators/templates/plugin/README.md.tt +34 -0
- data/lib/coprl/presenters/generators/templates/plugin/demo/plugin.pom.tt +15 -0
- data/lib/coprl/presenters/generators/templates/plugin/lib/coprl/presenters/plugins/components/actions/dsl.rb.tt +1 -1
- data/lib/coprl/presenters/generators/templates/plugin/lib/coprl/presenters/plugins/version.rb.tt +3 -0
- data/lib/coprl/presenters/generators/templates/plugin/presenter_plugin.gemspec.tt +8 -7
- data/lib/coprl/presenters/generators/templates/plugin/views/components/application/component.erb.tt +1 -1
- data/lib/coprl/presenters/settings.rb +1 -1
- data/lib/coprl/presenters/version.rb +1 -1
- data/lib/coprl/presenters/web_client/helpers/headers.rb +8 -6
- data/lib/coprl/presenters/web_client/helpers/rails.rb +1 -0
- data/lib/coprl/presenters/web_client/helpers/rails/template_helper.rb +10 -0
- data/lib/coprl/presenters/web_client/helpers/sinatra.rb +1 -0
- data/lib/coprl/presenters/web_client/helpers/sinatra/template_helper.rb +20 -0
- data/public/bundle.js +10 -4
- data/public/wc.js +10 -4
- data/rails-engine/app/controllers/coprl_controller.rb +20 -1
- data/rails-engine/app/views/layouts/coprl.html.erb +4 -4
- data/rails-engine/config/initializers/session.rb +8 -0
- data/rails-engine/config/routes.rb +2 -1
- data/views/mdc/assets/js/components/events/posts.js +10 -6
- data/views/mdc/body/{_preamble.erb → _wrapper.erb} +16 -5
- data/views/mdc/components/_card.erb +2 -2
- data/views/mdc/components/_checkbox.erb +1 -1
- data/views/mdc/components/_chip.erb +2 -2
- data/views/mdc/components/_content.erb +2 -2
- data/views/mdc/components/_datetime.erb +1 -1
- data/views/mdc/components/_dialog.erb +2 -2
- data/views/mdc/components/_form.erb +2 -2
- data/views/mdc/components/_grid.erb +2 -2
- data/views/mdc/components/_hidden_field.erb +1 -1
- data/views/mdc/components/_multi_select.erb +1 -1
- data/views/mdc/components/_number_field.erb +1 -1
- data/views/mdc/components/_radio_button.erb +1 -1
- data/views/mdc/components/_rich_text_area.erb +1 -1
- data/views/mdc/components/_select.erb +1 -1
- data/views/mdc/components/_slider.erb +2 -2
- data/views/mdc/components/_stepper.erb +4 -4
- data/views/mdc/components/_switch.erb +1 -1
- data/views/mdc/components/_text_area.erb +1 -1
- data/views/mdc/components/_text_field.erb +1 -1
- data/views/mdc/components/buttons/_image.erb +1 -1
- data/views/mdc/components/unordered_list/_list_item.erb +3 -3
- data/views/mdc/layout.erb +4 -4
- metadata +31 -17
- data/app/demo/components/google_maps.pom +0 -22
- data/app/demo/components/snackbar_attached.pom +0 -6
- data/lib/coprl/presenters/generators/templates/plugin/README.md +0 -253
- data/lib/coprl/presenters/plugins/google_maps.rb +0 -24
- data/lib/coprl/presenters/plugins/google_maps/google_map.erb +0 -10
- data/lib/coprl/presenters/plugins/google_maps/google_map.rb +0 -41
- data/views/mdc/body/_postamble.erb +0 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7d5886d0ba61fa0e7a694b0463ef695007c3c64e3c601344b96e9d6cdcd74e14
|
4
|
+
data.tar.gz: c6acd24734fb08dfa86e416cefecf8936e816ee390fe2eb150be085c6e0b7552
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e5b77286cfd3b3ee1df288e8a9394dbc16d3bae8ccb148dec73b90af4021c653b4266ca5f8cdc404268d7d6e118b5dd1f9a13fe34b1db4bad8e3aa2b7ba9159a
|
7
|
+
data.tar.gz: 0b8b5ce497af6367a3c48b1f82dae262441ef125e9908cd29c37d08e8f371cfe2e3c187b851fdc497cc7f7573d84a13d480569d0967d1e26a904157a1556516c
|
data/.circleci/config.yml
CHANGED
@@ -18,28 +18,22 @@ jobs:
|
|
18
18
|
|
19
19
|
steps:
|
20
20
|
- checkout
|
21
|
-
|
22
|
-
# Download and cache dependencies
|
23
21
|
- restore_cache:
|
24
22
|
keys:
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
- run:
|
30
|
-
|
31
|
-
command: |
|
32
|
-
bundle install --jobs=4 --retry=3 --path vendor/bundle
|
33
|
-
|
23
|
+
# when lock file changes, use increasingly general patterns to restore cache
|
24
|
+
- v1-gem-cache-{{ arch }}-{{ .Branch }}-{{ checksum "Gemfile.lock" }}
|
25
|
+
- v1-gem-cache-{{ arch }}-{{ .Branch }}-
|
26
|
+
- v1-gem-cache-{{ arch }}-
|
27
|
+
- run: bundle install
|
28
|
+
- run: bundle clean --force
|
34
29
|
- save_cache:
|
35
30
|
paths:
|
36
|
-
-
|
37
|
-
key: v1-
|
38
|
-
|
31
|
+
- ~/.bundle
|
32
|
+
key: v1-gem-cache-{{ arch }}-{{ .Branch }}-{{ checksum "Gemfile.lock" }}
|
39
33
|
- run:
|
40
34
|
name: 'start integration testing server'
|
41
35
|
command: |
|
42
|
-
rackup
|
36
|
+
bundle exec rackup
|
43
37
|
background: true
|
44
38
|
|
45
39
|
# run tests!
|
data/CHANGELOG.md
CHANGED
@@ -1,31 +1,123 @@
|
|
1
|
-
# [3.0.0-beta.
|
1
|
+
# [3.0.0-beta.6](https://github.com/rx/presenters/compare/v3.0.0-beta.5...v3.0.0-beta.6) (2021-06-23)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* fixed typo on if check ([95b3091](https://github.com/rx/presenters/commit/95b3091365a853eee24e4bce0e37b182da1fdc3d))
|
7
|
+
* small tweaks to simplify the presenters wrappers ([#319](https://github.com/rx/presenters/issues/319)) ([cbf0c7c](https://github.com/rx/presenters/commit/cbf0c7c4c80d68ecc84a2989934d2d02e8a1a928))
|
8
|
+
|
9
|
+
# [3.0.0-beta.5](https://github.com/rx/presenters/compare/v3.0.0-beta.4...v3.0.0-beta.5) (2021-06-18)
|
10
|
+
|
11
|
+
|
12
|
+
### Bug Fixes
|
13
|
+
|
14
|
+
* add Rack > 2.2.2 support ([c39c18d](https://github.com/rx/presenters/commit/c39c18d48c557f9f206396eb73e20f15b0a85e7e))
|
15
|
+
* add Rack > 2.2.2 support ([6e23287](https://github.com/rx/presenters/commit/6e232875d1ea3c4250f9e19e841215a750082ffc))
|
16
|
+
* native rails tag helper conflicts with base components tag method. ([c9d3847](https://github.com/rx/presenters/commit/c9d3847405ab53c1ba728bf9f2afac655f0b1c1f))
|
17
|
+
|
18
|
+
# [3.0.0-beta.4](https://github.com/rx/presenters/compare/v3.0.0-beta.3...v3.0.0-beta.4) (2021-06-15)
|
19
|
+
|
20
|
+
|
21
|
+
### Bug Fixes
|
22
|
+
|
23
|
+
* Updated generator to use secure version of Rake ([5e0761f](https://github.com/rx/presenters/commit/5e0761f7c13139e68da38ea4dfaae4b40c010e71))
|
24
|
+
|
25
|
+
# [3.0.0-beta.3](https://github.com/rx/presenters/compare/v3.0.0-beta.2...v3.0.0-beta.3) (2021-06-07)
|
26
|
+
|
27
|
+
|
28
|
+
### Bug Fixes
|
29
|
+
|
30
|
+
* added cli --version ([4c5b10e](https://github.com/rx/presenters/commit/4c5b10e0707bcdeecfb29908eb3284b692cbcd41))
|
31
|
+
* added missing prepare context callbacks to Rails Engine ([bafa36d](https://github.com/rx/presenters/commit/bafa36d6e95ad9863eb93cb44cc894163c147c4f))
|
32
|
+
* added prepare context for Rails native views engine that sets the request and session automatically ([a09f3c6](https://github.com/rx/presenters/commit/a09f3c637102e640fe0b91894ae89b5a07288846))
|
33
|
+
* Added version.rb to plugin generator ([f1f2092](https://github.com/rx/presenters/commit/f1f20925dfd326fb5a47910952e21b34b762c31d))
|
34
|
+
* Added version.rb to plugin generator ([35187bf](https://github.com/rx/presenters/commit/35187bf188957e2ca93e2bf07963e958452f27fe))
|
35
|
+
* expanded plugin generator to include github semantic release, demo pom and sample README ([06de7a2](https://github.com/rx/presenters/commit/06de7a237f8a417a11776d1994915c32253a981d))
|
36
|
+
* fixed unordered list partial rendering error ([014f1d1](https://github.com/rx/presenters/commit/014f1d19926d7e9d39618fbe68c8068db316ac4b))
|
37
|
+
* generator not compatible with COPRL 3 Rails templating naming conventions ([f6d80f0](https://github.com/rx/presenters/commit/f6d80f0a44f6305b9339bc2bd6db8487eefc68cc))
|
38
|
+
* removed google_map built in plugin to its own plugin ([a34290d](https://github.com/rx/presenters/commit/a34290de890e2fdf7e6c2c7b1714854d454c82a4))
|
39
|
+
|
40
|
+
|
41
|
+
### Features
|
42
|
+
|
43
|
+
* Added singular alias for common actions: load, replace, post, create, and delete ([b57c305](https://github.com/rx/presenters/commit/b57c305bd4dbf95b8a9662ad747020683bf74c8d))
|
2
44
|
|
45
|
+
# [3.0.0-beta.2](https://github.com/rx/presenters/compare/v3.0.0-beta.1...v3.0.0-beta.2) (2021-06-03)
|
3
46
|
|
4
|
-
* Coprl rename (#318) ([8acafd5](https://github.com/rx/presenters/commit/8acafd5e1a1f116c881ae79c59d069161d7ec2e6)), closes [#318](https://github.com/rx/presenters/issues/318) [#309](https://github.com/rx/presenters/issues/309) [#317](https://github.com/rx/presenters/issues/317) [#316](https://github.com/rx/presenters/issues/316) [#315](https://github.com/rx/presenters/issues/315) [#314](https://github.com/rx/presenters/issues/314) [#313](https://github.com/rx/presenters/issues/313) [#312](https://github.com/rx/presenters/issues/312) [#311](https://github.com/rx/presenters/issues/311) [#310](https://github.com/rx/presenters/issues/310) [#316](https://github.com/rx/presenters/issues/316) [#315](https://github.com/rx/presenters/issues/315) [#314](https://github.com/rx/presenters/issues/314) [#313](https://github.com/rx/presenters/issues/313) [#312](https://github.com/rx/presenters/issues/312) [#311](https://github.com/rx/presenters/issues/311) [#310](https://github.com/rx/presenters/issues/310)
|
5
47
|
|
48
|
+
### Bug Fixes
|
49
|
+
|
50
|
+
* support for index presenters within Rails ([06b5fb9](https://github.com/rx/presenters/commit/06b5fb97e049db3f8670eef87979959d8bb1e63b))
|
51
|
+
|
52
|
+
# [3.0.0-beta.1](https://github.com/rx/presenters/compare/v2.1.1...v3.0.0-beta.1) (2021-06-02)
|
53
|
+
|
54
|
+
* Coprl module rename and Rails 5 and 6 native views (#318) ([8acafd5](https://github.com/rx/presenters/commit/8acafd5e1a1f116c881ae79c59d069161d7ec2e6)), closes [#318](https://github.com/rx/presenters/issues/318) [#309](https://github.com/rx/presenters/issues/309) [#317](https://github.com/rx/presenters/issues/317) [#316](https://github.com/rx/presenters/issues/316) [#315](https://github.com/rx/presenters/issues/315) [#314](https://github.com/rx/presenters/issues/314) [#313](https://github.com/rx/presenters/issues/313) [#312](https://github.com/rx/presenters/issues/312) [#311](https://github.com/rx/presenters/issues/311) [#310](https://github.com/rx/presenters/issues/310) [#316](https://github.com/rx/presenters/issues/316) [#315](https://github.com/rx/presenters/issues/315) [#314](https://github.com/rx/presenters/issues/314) [#313](https://github.com/rx/presenters/issues/313) [#312](https://github.com/rx/presenters/issues/312) [#311](https://github.com/rx/presenters/issues/311) [#310](https://github.com/rx/presenters/issues/310)
|
6
55
|
|
7
56
|
### BREAKING CHANGES
|
8
57
|
|
9
|
-
|
10
|
-
|
58
|
+
#### Migrating from Presenters v2 to COPRL Presenters v3
|
59
|
+
|
60
|
+
##### Clients
|
61
|
+
* Refactor module Voom => Coprl
|
62
|
+
* Replace in requires in app and lib files 'voom' => 'coprl'
|
63
|
+
|
64
|
+
##### Plugins
|
65
|
+
|
66
|
+
The plugins have been modified to support Rails native views.
|
67
|
+
There is a generator that you can also use to generate a new plugin: `coprl generate plugin PLUGIN_NAME`.
|
68
|
+
In some cases generating a new plugin and moving over the code may be the preferred option.
|
69
|
+
|
70
|
+
The rest of this guide assumes you are going to migrate it over manualy.
|
71
|
+
|
72
|
+
###### Module Rename
|
73
|
+
* Rename library directory `lib/voom` => 'lib/coprl'
|
74
|
+
* Refactor module `Voom` => `Coprl`
|
75
|
+
* Replace in `lib` files 'voom/' => `coprl/`
|
76
|
+
|
77
|
+
###### View Changes
|
78
|
+
|
79
|
+
In the Coprl::Presenters::Plugins::PLUGIN_NAME::WebClientComponents
|
80
|
+
Add the following callback that points to your views directory
|
81
|
+
|
82
|
+
def view_dir_PLUGIN_NAME(pom)
|
83
|
+
File.join(__dir__, '../../../../../../..', 'views', 'components')
|
84
|
+
end
|
85
|
+
|
86
|
+
* Add an `application` directory under your view directory returned above.
|
87
|
+
* Add a `_` prefix to your templates.
|
88
|
+
* Change erb render calls in your templates `erb :"components/event"` => `partial "components/event"`
|
89
|
+
* Add raw calls to any javascript/css that you emitt from your templates, e.g., `<%= raw File.read(File.expand_path('../../../../../../public/c3.min.css', __dir__) ) %>`
|
90
|
+
|
91
|
+
**Recommended**
|
92
|
+
|
93
|
+
Move templates, javascript and css files into their own view directory at the root of the presenter.
|
94
|
+
This makes it easier to reason and find the appropriate parts of the plugin
|
95
|
+
|
96
|
+
# [2.1.1](https://github.com/rx/presenters/tree/2.1.1) (2021-04-26)
|
97
|
+
|
98
|
+
[Full Changelog](https://github.com/rx/presenters/compare/v2.1.1...2.1.0)
|
99
|
+
|
100
|
+
# [2.1.0](https://github.com/rx/presenters/tree/2.1.0) (2021-03-17)
|
101
|
+
|
102
|
+
[Full Changelog](https://github.com/rx/presenters/compare/v2.1.0...2.0.3)
|
11
103
|
|
12
|
-
|
104
|
+
# [2.0.3](https://github.com/rx/presenters/tree/2.0.3) (2021-03-11)
|
13
105
|
|
14
|
-
|
106
|
+
[Full Changelog](https://github.com/rx/presenters/compare/v2.0.3...2.0.2)
|
15
107
|
|
16
|
-
|
108
|
+
# [2.0.2](https://github.com/rx/presenters/tree/2.0.2) (2021-02-18)
|
17
109
|
|
18
|
-
|
110
|
+
[Full Changelog](https://github.com/rx/presenters/compare/v2.0.2...2.0.1)
|
19
111
|
|
20
|
-
|
112
|
+
# [2.0.1](https://github.com/rx/presenters/tree/2.0.1) (2020-12-23)
|
21
113
|
|
22
|
-
|
114
|
+
[Full Changelog](https://github.com/rx/presenters/compare/v2.0.1...2.0.0)
|
23
115
|
|
24
|
-
|
116
|
+
# [v2.0.0](https://github.com/rx/presenters/tree/v2.0.0) (2020-12-22)
|
25
117
|
|
26
|
-
|
118
|
+
[Full Changelog](https://github.com/rx/presenters/compare/2.0.0...v1.0.0)
|
27
119
|
|
28
|
-
|
120
|
+
# [1.0.0](https://github.com/rx/presenters/tree/1.0.0) (2020-12-20)
|
29
121
|
|
30
122
|
[Full Changelog](https://github.com/rx/presenters/compare/v0.5.0...1.0.0)
|
31
123
|
|
data/Gemfile
CHANGED
@@ -13,7 +13,7 @@ end
|
|
13
13
|
group :test do
|
14
14
|
gem 'rspec'
|
15
15
|
gem 'rspec-html-matchers'
|
16
|
-
gem 'watir', '~> 6.
|
16
|
+
gem 'watir', '~> 6.19'
|
17
17
|
gem 'webdrivers', '~> 4.1'
|
18
18
|
gem 'watir-rspec', '~> 3.0'
|
19
19
|
gem 'rspec_junit_formatter'
|
@@ -24,7 +24,18 @@ end
|
|
24
24
|
gem 'foo_presenter_plugin', github: 'coprl/foo_presenter_plugin', require: false
|
25
25
|
gem 'image_crop_presenter_plugin', github: 'coprl/image_crop_presenter_plugin', require: false
|
26
26
|
gem 'chart_presenter_plugin', github: 'coprl/chart_presenter_plugin', require: false
|
27
|
+
gem 'google_maps_presenter_plugin', github: 'coprl/google_maps_presenter_plugin', branch: :main, require: false
|
28
|
+
gem 'cacheable_presenter_plugin', github: 'coprl/cacheable_presenter_plugin', require: false
|
29
|
+
gem 'script_presenter_plugin', github: 'coprl/script_presenter_plugin', require: false
|
30
|
+
gem 'scroll_to_presenter_plugin', github: 'coprl/scroll_to_presenter_plugin', require: false
|
31
|
+
gem 'clipboard_presenter_plugin', github: 'coprl/clipboard_presenter_plugin', require: false
|
32
|
+
gem 'markup_presenter_plugin', github: 'coprl/markup_presenter_plugin', require: false
|
33
|
+
gem 'iframe_presenter_plugin', github: 'coprl/iframe_presenter_plugin', require: false
|
34
|
+
gem 'color_picker_presenter_plugin', github: 'coprl/color_picker_presenter_plugin', require: false
|
35
|
+
gem 'timer_presenter_plugin', github: 'coprl/timer_presenter_plugin', require: false
|
36
|
+
gem 'animate_presenter_plugin', github: 'coprl/animate_presenter_plugin', require: false
|
27
37
|
|
28
38
|
gem 'rack-cors'
|
29
39
|
gem 'honeybadger' if ENV.fetch('HONEYBADGER_API_KEY'){false}
|
30
40
|
gem 'puma'
|
41
|
+
gem 'dotenv'
|
data/Gemfile.lock
CHANGED
@@ -1,21 +1,82 @@
|
|
1
|
+
GIT
|
2
|
+
remote: https://github.com/coprl/animate_presenter_plugin.git
|
3
|
+
revision: 1eb21032ea4bd44113bb4d887df2472d5cd10a8f
|
4
|
+
specs:
|
5
|
+
animate_presenter_plugin (0.0.1)
|
6
|
+
|
7
|
+
GIT
|
8
|
+
remote: https://github.com/coprl/cacheable_presenter_plugin.git
|
9
|
+
revision: 262ac076d70d94b111b9ccb692dfc9225c7cc6c6
|
10
|
+
specs:
|
11
|
+
cacheable_presenter_plugin (0.0.3)
|
12
|
+
|
1
13
|
GIT
|
2
14
|
remote: https://github.com/coprl/chart_presenter_plugin.git
|
3
|
-
revision:
|
15
|
+
revision: 6b93c7a1b04356987cbe962841f564f4afc744c4
|
4
16
|
specs:
|
5
17
|
chart_presenter_plugin (0.1.0)
|
6
18
|
|
19
|
+
GIT
|
20
|
+
remote: https://github.com/coprl/clipboard_presenter_plugin.git
|
21
|
+
revision: 3de13cd7b858d68f4d2060bcbd44683b5ea755f8
|
22
|
+
specs:
|
23
|
+
clipboard_presenter_plugin (0.1.0)
|
24
|
+
|
25
|
+
GIT
|
26
|
+
remote: https://github.com/coprl/color_picker_presenter_plugin.git
|
27
|
+
revision: 10bdc8b555b2c168ee1d93316c7b10e961a7f5b5
|
28
|
+
specs:
|
29
|
+
color_picker_presenter_plugin (0.0.1)
|
30
|
+
|
7
31
|
GIT
|
8
32
|
remote: https://github.com/coprl/foo_presenter_plugin.git
|
9
|
-
revision:
|
33
|
+
revision: 6f1d796bf030bf69fca87777d28bdee63e9880d8
|
10
34
|
specs:
|
11
35
|
foo_presenter_plugin (0.0.2)
|
12
36
|
|
37
|
+
GIT
|
38
|
+
remote: https://github.com/coprl/google_maps_presenter_plugin.git
|
39
|
+
revision: 53d8d4d778fcc0295980aaae29bbc3fdb3a947d4
|
40
|
+
branch: main
|
41
|
+
specs:
|
42
|
+
google_maps_presenter_plugin (0.1.0)
|
43
|
+
|
44
|
+
GIT
|
45
|
+
remote: https://github.com/coprl/iframe_presenter_plugin.git
|
46
|
+
revision: d0bc691adba4807499af30ee375e9b6dd1426732
|
47
|
+
specs:
|
48
|
+
iframe_presenter_plugin (0.0.1)
|
49
|
+
|
13
50
|
GIT
|
14
51
|
remote: https://github.com/coprl/image_crop_presenter_plugin.git
|
15
|
-
revision:
|
52
|
+
revision: 586ef47bd6132f94810cfb04d02fcf7c9df1ae10
|
16
53
|
specs:
|
17
54
|
image_crop_presenter_plugin (0.1.0)
|
18
55
|
|
56
|
+
GIT
|
57
|
+
remote: https://github.com/coprl/markup_presenter_plugin.git
|
58
|
+
revision: a02e7ec5878d73f1263d3d8e7c82ea10e67df02b
|
59
|
+
specs:
|
60
|
+
markup_presenter_plugin (0.0.2)
|
61
|
+
|
62
|
+
GIT
|
63
|
+
remote: https://github.com/coprl/script_presenter_plugin.git
|
64
|
+
revision: c7cea03e73f4752a3df99e4b3ab0d4030f141f4d
|
65
|
+
specs:
|
66
|
+
script_presenter_plugin (0.0.2)
|
67
|
+
|
68
|
+
GIT
|
69
|
+
remote: https://github.com/coprl/scroll_to_presenter_plugin.git
|
70
|
+
revision: c34ab770665a16b81b8274357dd9cc77dbd0a566
|
71
|
+
specs:
|
72
|
+
scroll_to_presenter_plugin (0.0.2)
|
73
|
+
|
74
|
+
GIT
|
75
|
+
remote: https://github.com/coprl/timer_presenter_plugin.git
|
76
|
+
revision: 5901fd1a368ae7b293c0b87f58ebd01a24a38573
|
77
|
+
specs:
|
78
|
+
timer_presenter_plugin (0.0.1)
|
79
|
+
|
19
80
|
PATH
|
20
81
|
remote: .
|
21
82
|
specs:
|
@@ -37,32 +98,32 @@ GEM
|
|
37
98
|
byebug (11.1.3)
|
38
99
|
childprocess (3.0.0)
|
39
100
|
coderay (1.1.2)
|
40
|
-
concurrent-ruby (1.1.
|
41
|
-
diff-lcs (1.
|
101
|
+
concurrent-ruby (1.1.9)
|
102
|
+
diff-lcs (1.4.4)
|
42
103
|
docile (1.3.1)
|
104
|
+
dotenv (2.7.6)
|
43
105
|
dry-configurable (0.12.1)
|
44
106
|
concurrent-ruby (~> 1.0)
|
45
107
|
dry-core (~> 0.5, >= 0.5.0)
|
46
|
-
dry-container (0.
|
108
|
+
dry-container (0.8.0)
|
47
109
|
concurrent-ruby (~> 1.0)
|
48
110
|
dry-configurable (~> 0.1, >= 0.1.3)
|
49
|
-
dry-core (0.
|
111
|
+
dry-core (0.6.0)
|
50
112
|
concurrent-ruby (~> 1.0)
|
51
113
|
dry-inflector (0.2.0)
|
52
114
|
filewatcher (1.1.1)
|
53
115
|
optimist (~> 3.0)
|
54
|
-
gem-release (2.0.1)
|
55
116
|
ice_nine (0.11.2)
|
56
117
|
json (2.3.1)
|
57
118
|
method_source (0.9.0)
|
58
|
-
mini_portile2 (2.5.
|
119
|
+
mini_portile2 (2.5.3)
|
59
120
|
mustermann (1.1.1)
|
60
121
|
ruby2_keywords (~> 0.0.1)
|
61
122
|
nio4r (2.5.7)
|
62
|
-
nokogiri (1.11.
|
123
|
+
nokogiri (1.11.7)
|
63
124
|
mini_portile2 (~> 2.5.0)
|
64
125
|
racc (~> 1.4)
|
65
|
-
nokogiri (1.11.
|
126
|
+
nokogiri (1.11.7-x86_64-darwin)
|
66
127
|
racc (~> 1.4)
|
67
128
|
optimist (3.0.1)
|
68
129
|
pry (0.11.3)
|
@@ -83,27 +144,27 @@ GEM
|
|
83
144
|
rack (>= 1.0, < 3)
|
84
145
|
rake (13.0.1)
|
85
146
|
redcarpet (3.5.1)
|
86
|
-
regexp_parser (1.
|
87
|
-
rspec (3.
|
88
|
-
rspec-core (~> 3.
|
89
|
-
rspec-expectations (~> 3.
|
90
|
-
rspec-mocks (~> 3.
|
91
|
-
rspec-core (3.
|
92
|
-
rspec-support (~> 3.
|
93
|
-
rspec-expectations (3.
|
147
|
+
regexp_parser (2.1.1)
|
148
|
+
rspec (3.10.0)
|
149
|
+
rspec-core (~> 3.10.0)
|
150
|
+
rspec-expectations (~> 3.10.0)
|
151
|
+
rspec-mocks (~> 3.10.0)
|
152
|
+
rspec-core (3.10.1)
|
153
|
+
rspec-support (~> 3.10.0)
|
154
|
+
rspec-expectations (3.10.1)
|
94
155
|
diff-lcs (>= 1.2.0, < 2.0)
|
95
|
-
rspec-support (~> 3.
|
156
|
+
rspec-support (~> 3.10.0)
|
96
157
|
rspec-html-matchers (0.9.1)
|
97
158
|
nokogiri (~> 1)
|
98
159
|
rspec (>= 3.0.0.a, < 4)
|
99
|
-
rspec-mocks (3.
|
160
|
+
rspec-mocks (3.10.2)
|
100
161
|
diff-lcs (>= 1.2.0, < 2.0)
|
101
|
-
rspec-support (~> 3.
|
102
|
-
rspec-support (3.
|
162
|
+
rspec-support (~> 3.10.0)
|
163
|
+
rspec-support (3.10.2)
|
103
164
|
rspec_junit_formatter (0.4.1)
|
104
165
|
rspec-core (>= 2, < 4, != 2.12.0)
|
105
166
|
ruby2_keywords (0.0.4)
|
106
|
-
rubyzip (
|
167
|
+
rubyzip (2.3.0)
|
107
168
|
selenium-webdriver (3.142.7)
|
108
169
|
childprocess (>= 0.5, < 4.0)
|
109
170
|
rubyzip (>= 1.2.2)
|
@@ -121,19 +182,20 @@ GEM
|
|
121
182
|
tilt (~> 2.0)
|
122
183
|
thor (1.1.0)
|
123
184
|
tilt (2.0.10)
|
185
|
+
timecop (0.9.4)
|
124
186
|
tzinfo (2.0.4)
|
125
187
|
concurrent-ruby (~> 1.0)
|
126
188
|
tzinfo-data (1.2021.1)
|
127
189
|
tzinfo (>= 1.0.0)
|
128
|
-
watir (6.
|
129
|
-
regexp_parser (
|
130
|
-
selenium-webdriver (
|
190
|
+
watir (6.19.1)
|
191
|
+
regexp_parser (>= 1.2, < 3)
|
192
|
+
selenium-webdriver (>= 3.142.7)
|
131
193
|
watir-rspec (3.0.0)
|
132
194
|
rspec (~> 3.0)
|
133
195
|
watir (>= 6.0.0.beta4)
|
134
|
-
webdrivers (4.
|
196
|
+
webdrivers (4.6.0)
|
135
197
|
nokogiri (~> 1.6)
|
136
|
-
rubyzip (
|
198
|
+
rubyzip (>= 1.3.0)
|
137
199
|
selenium-webdriver (>= 3.0, < 4.0)
|
138
200
|
zeitwerk (2.4.2)
|
139
201
|
|
@@ -142,12 +204,19 @@ PLATFORMS
|
|
142
204
|
x86_64-darwin-19
|
143
205
|
|
144
206
|
DEPENDENCIES
|
207
|
+
animate_presenter_plugin!
|
145
208
|
bundler (>= 1.13)
|
209
|
+
cacheable_presenter_plugin!
|
146
210
|
chart_presenter_plugin!
|
211
|
+
clipboard_presenter_plugin!
|
212
|
+
color_picker_presenter_plugin!
|
147
213
|
coprl!
|
214
|
+
dotenv
|
148
215
|
foo_presenter_plugin!
|
149
|
-
|
216
|
+
google_maps_presenter_plugin!
|
217
|
+
iframe_presenter_plugin!
|
150
218
|
image_crop_presenter_plugin!
|
219
|
+
markup_presenter_plugin!
|
151
220
|
pry
|
152
221
|
pry-byebug
|
153
222
|
puma
|
@@ -158,10 +227,14 @@ DEPENDENCIES
|
|
158
227
|
rspec
|
159
228
|
rspec-html-matchers
|
160
229
|
rspec_junit_formatter
|
230
|
+
script_presenter_plugin!
|
231
|
+
scroll_to_presenter_plugin!
|
161
232
|
shotgun (~> 0.9)
|
162
233
|
simplecov
|
163
234
|
thor (~> 1.1.0)
|
164
|
-
|
235
|
+
timecop (~> 0.9.4)
|
236
|
+
timer_presenter_plugin!
|
237
|
+
watir (~> 6.19)
|
165
238
|
watir-rspec (~> 3.0)
|
166
239
|
webdrivers (~> 4.1)
|
167
240
|
|
@@ -169,4 +242,4 @@ RUBY VERSION
|
|
169
242
|
ruby 2.7.2p137
|
170
243
|
|
171
244
|
BUNDLED WITH
|
172
|
-
2.2.
|
245
|
+
2.2.20
|