Skip to content

Commit b5b45d4

Browse files
Merge branch 'develop' into dependabot/bundler/builder/puma-3.12.4
2 parents 3155078 + 63c1b82 commit b5b45d4

File tree

7 files changed

+16
-21
lines changed

7 files changed

+16
-21
lines changed

Gemfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ group :development, :test do
2626
gem 'puma'
2727
gem 'simplecov', require: false, group: :test
2828
gem 'byebug'
29-
gem 'pry-byebug'
3029
gem 'webmock'
3130
gem 'pry-rails'
3231
gem 'pry-byebug'

Gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
matestack-ui-core (0.7.3)
4+
matestack-ui-core (0.7.4)
55
cells-haml
66
cells-rails
77
haml
@@ -121,7 +121,7 @@ GEM
121121
mini_portile2 (2.4.0)
122122
minitest (5.14.0)
123123
nio4r (2.5.2)
124-
nokogiri (1.10.7)
124+
nokogiri (1.10.8)
125125
mini_portile2 (~> 2.4.0)
126126
pipetree (0.1.1)
127127
pry (0.12.2)
@@ -133,7 +133,7 @@ GEM
133133
pry-rails (0.3.9)
134134
pry (>= 0.10.4)
135135
public_suffix (4.0.3)
136-
puma (4.3.1)
136+
puma (4.3.3)
137137
nio4r (~> 2.0)
138138
rack (2.2.1)
139139
rack-proxy (0.6.5)

app/lib/matestack/ui/core/has_view_context.rb

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ def initialize(model = nil, options = {})
55
end
66

77
def method_missing(*args, &block)
8-
@view_context.send(*args, &block)
8+
if @view_context.respond_to? args.first
9+
@view_context.send(*args, &block)
10+
else
11+
super
12+
end
913
end
1014
end

builder/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ GEM
8484
minitest (5.14.0)
8585
msgpack (1.3.1)
8686
nio4r (2.5.2)
87-
nokogiri (1.10.7)
87+
nokogiri (1.10.8)
8888
mini_portile2 (~> 2.4.0)
8989
puma (3.12.4)
9090
rack (2.1.2)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"v-runtime-template": "^1.5.2",
1010
"vue": "^2.5.17",
1111
"vuex": "^3.0.1",
12-
"yarn": "^1.17.3"
12+
"yarn": "^1.22.0"
1313
},
1414
"exports": {
1515
"./concepts/": "./app/concepts/matestack/ui/core/"

spec/dummy/yarn.lock

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4023,22 +4023,14 @@ js-base64@^2.1.8:
40234023
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
40244024
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
40254025

4026-
js-yaml@^3.13.1:
4026+
js-yaml@^3.13.1, js-yaml@^3.9.0:
40274027
version "3.13.1"
40284028
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847"
40294029
integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==
40304030
dependencies:
40314031
argparse "^1.0.7"
40324032
esprima "^4.0.0"
40334033

4034-
js-yaml@^3.9.0:
4035-
version "3.12.0"
4036-
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1"
4037-
integrity sha512-PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A==
4038-
dependencies:
4039-
argparse "^1.0.7"
4040-
esprima "^4.0.0"
4041-
40424034
jsbn@~0.1.0:
40434035
version "0.1.1"
40444036
resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
@@ -4372,7 +4364,7 @@ map-visit@^1.0.0:
43724364
object-visit "^1.0.0"
43734365

43744366
matestack-ui-core@../../:
4375-
version "0.7.3"
4367+
version "0.7.4"
43764368
dependencies:
43774369
axios "^0.18.1"
43784370
link-module-alias "^1.2.0"

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ vuex@^3.0.1:
101101
resolved "https://registry.yarnpkg.com/vuex/-/vuex-3.1.1.tgz#0c264bfe30cdbccf96ab9db3177d211828a5910e"
102102
integrity sha512-ER5moSbLZuNSMBFnEBVGhQ1uCBNJslH9W/Dw2W7GZN23UQA69uapP5GTT9Vm8Trc0PzBSVt6LzF3hGjmv41xcg==
103103

104-
yarn@^1.17.3:
105-
version "1.19.1"
106-
resolved "https://registry.yarnpkg.com/yarn/-/yarn-1.19.1.tgz#14b92410dd1ba5bab87a12b4a3d807f4569bea97"
107-
integrity sha512-gBnfbL9rYY05Gt0cjJhs/siqQXHYlZalTjK3nXn2QO20xbkIFPob+LlH44ML47GcR4VU9/2dYck1BWFM0Javxw==
104+
yarn@^1.22.0:
105+
version "1.22.0"
106+
resolved "https://registry.yarnpkg.com/yarn/-/yarn-1.22.0.tgz#acf82906e36bcccd1ccab1cfb73b87509667c881"
107+
integrity sha512-KMHP/Jq53jZKTY9iTUt3dIVl/be6UPs2INo96+BnZHLKxYNTfwMmlgHTaMWyGZoO74RI4AIFvnWhYrXq2USJkg==

0 commit comments

Comments
 (0)