Skip to content

Commit f6afdfd

Browse files
Update circleci config & gemfile.lock
2 parents 9a58e9a + e0f1617 commit f6afdfd

File tree

6 files changed

+22
-29
lines changed

6 files changed

+22
-29
lines changed

.circleci/config.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,22 @@ jobs:
3636
- ./vendor/bundle
3737
key: v1-dependencies-{{ checksum "Gemfile.lock" }}
3838

39+
<<<<<<< HEAD
3940
# Database setup
4041
- run: bundle exec rake db:create
4142
- run: bundle exec rake db:schema:load
4243

44+
=======
45+
>>>>>>> master
4346
# Yarn Update
4447

4548
- run: yarn install
4649
- run: cd spec/dummy
4750
- run: yarn install
51+
52+
# Database setup
53+
- run: bundle exec rake db:create
54+
- run: bundle exec rake db:schema:load
4855

4956
# run tests!
5057
- run:

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.6.0.pre.1)
4+
matestack-ui-core (0.6.0)
55
cells-haml
66
cells-rails
77
haml
@@ -246,11 +246,11 @@ PLATFORMS
246246
ruby
247247

248248
DEPENDENCIES
249-
matestack-ui-core!
250249
byebug
251250
capybara
252251
cells-haml
253252
cells-rails
253+
matestack-ui-core!
254254
poltergeist
255255
puma
256256
rspec-rails (~> 3.8)
@@ -264,4 +264,4 @@ DEPENDENCIES
264264
webpacker (~> 3.5)
265265

266266
BUNDLED WITH
267-
1.17.2
267+
1.17.3

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
[![CircleCI](https://circleci.com/gh/basemate/matestack-ui-core/tree/master.svg?style=shield)](https://circleci.com/gh/basemate/matestack-ui-core/tree/master)
22
[![Gitter](https://badges.gitter.im/basemate/community.svg)](https://gitter.im/basemate/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
3+
[![Gem Version](https://badge.fury.io/rb/matestack-ui-core.svg)](https://badge.fury.io/rb/matestack-ui-core)
34

45
![matestack logo](./logo.png)
56

6-
# Matestack: Escape the frontend hustle
7+
# matestack: Escape the frontend hustle
78

89
## Create maintainable, dynamic and beautiful UIs easily
910

@@ -220,7 +221,7 @@ Scheduled for 0.7.0:
220221

221222
### Community
222223

223-
TODO: Gitter
224+
As a low-barrier feedback channel for our early users, we have set up a Gitter chat that can be found [here](https://gitter.im/basemate/community). You are very welcome to ask questions and send us feedback there!
224225

225226
### Contribution
226227

docs/components/link.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This component is used to either navigate within your matestack application or t
66

77
## Parameters
88

9-
This component create a `<a>`-tag and expects a mandatory path input and optional options parameters.
9+
This component creates an `<a>`-tag and expects a mandatory path input and optional options parameters.
1010

1111
#### # path
1212
If the path input is a **string** it creates a link to the outside web.
@@ -33,15 +33,15 @@ This example renders a simple link within a `<div`-tag
3333

3434
```ruby
3535
div id: "foo", class: "bar" do
36-
link path: "https://matestack.io", text: "Here"
36+
link path: "https://matestack.org", text: "Here"
3737
end
3838
```
3939

4040
and returns
4141

4242
```html
4343
<div id="foo" class="bar">
44-
<a href="https://matestack.io">Here</a>
44+
<a href="https://matestack.org">Here</a>
4545
</div>
4646
```
4747

@@ -50,7 +50,7 @@ This example renders a link without a specific link-text, so it wraps the rest o
5050

5151
```ruby
5252
div id: "foo", class: "bar" do
53-
link path: "https://matestack.io" do
53+
link path: "https://matestack.org" do
5454
plain "Here"
5555
end
5656
end
@@ -60,7 +60,7 @@ returns
6060

6161
```html
6262
<div id="foo" class="bar">
63-
<a href="https://matestack.io">Here</a>
63+
<a href="https://matestack.org">Here</a>
6464
</div>
6565
```
6666

@@ -69,7 +69,7 @@ This example renders a link around a div and the link opens in a new tab.
6969

7070
```ruby
7171
div id: "foo", class: "bar" do
72-
link path: "https://matestack.io", target: "_blank" do
72+
link path: "https://matestack.org", target: "_blank" do
7373
div do
7474
plain "Here"
7575
end
@@ -81,7 +81,7 @@ returns
8181

8282
```html
8383
<div id="foo" class="bar">
84-
<a target="_blank" href="https://matestack.io">
84+
<a target="_blank" href="https://matestack.org">
8585
<div>Here</div>
8686
</a>
8787
</div>

spec/usage/base/page_spec.rb

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,7 @@ def response
122122
components {
123123
div do
124124
partial :my_simple_partial
125-
br
126125
partial :my_partial_with_param, "foo"
127-
br
128126
partial :my_partial_with_partial
129127
end
130128
}
@@ -179,14 +177,10 @@ def my_action
179177
some content
180178
</span>
181179
182-
<br/>
183-
184180
<span id="my_partial_with_param">
185181
content with param: foo
186182
</span>
187183
188-
<br/>
189-
190184
<span id="my_partial_with_partial">
191185
192186
<span id="my_simple_partial">
@@ -198,7 +192,6 @@ def my_action
198192
</div>
199193
HTML
200194

201-
202195
expect(stripped(static_output)).to include(stripped(expected_static_output))
203196

204197
end
@@ -225,9 +218,7 @@ def response
225218
components {
226219
div do
227220
partial :my_simple_partial
228-
br
229221
partial :my_partial_with_param, "foo"
230-
br
231222
partial :my_partial_with_partial
232223
end
233224
}
@@ -274,14 +265,10 @@ def my_action
274265
some content
275266
</span>
276267
277-
<br/>
278-
279268
<span id="my_partial_with_param">
280269
content with param: foo
281270
</span>
282271
283-
<br/>
284-
285272
<span id="my_partial_with_partial">
286273
287274
<span id="my_simple_partial">
@@ -316,7 +303,6 @@ def response
316303
components {
317304
div id: "my-component" do
318305
slot options[:my_first_slot]
319-
br
320306
slot options[:my_second_slot]
321307
end
322308
}
@@ -379,7 +365,6 @@ def my_action
379365
<span id="my_simple_slot">
380366
some content
381367
</span>
382-
<br/>
383368
<span id="my_simple_slot">
384369
foo from page
385370
</span>

spec/usage/components/async_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def example
8181
Rails.application.reload_routes!
8282

8383
visit "/async_specs/in_app/example"
84-
84+
8585
element = page.find("#my-div")
8686
before_content = element.text
8787

@@ -169,7 +169,7 @@ def response
169169

170170
end
171171

172-
it "Example 4 -show on event with event payload" do
172+
it "Example 4: show on event with event payload" do
173173

174174
class ExamplePage < Page::Cell::Page
175175

0 commit comments

Comments
 (0)