Skip to content

Commit 24a3f0f

Browse files
committed
Merge branch 'v3_release__vue3_rails7_gem_split' into main
2 parents 6f2fe22 + f886428 commit 24a3f0f

File tree

440 files changed

+48734
-33263
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

440 files changed

+48734
-33263
lines changed

.github/workflows/dockerpush.yml

+13-4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@ name: specs
33
on: [push]
44

55
jobs:
6+
test_7_0_ruby_3_0:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- name: Run tests
11+
run: |
12+
docker-compose -f ./ci/docker-compose.ci.yml run --rm test_7_0_ruby_3_0
13+
- name: Upload lock files
14+
uses: actions/upload-artifact@v2
15+
with:
16+
name: lockfiles_test_7_0_ruby_3_0
17+
path: |
18+
./ci/artifacts/Gemfile.lock
619
test_6_1_ruby_3_0:
720
runs-on: ubuntu-latest
821
steps:
@@ -15,7 +28,6 @@ jobs:
1528
with:
1629
name: lockfiles_test_6_1_ruby_3_0
1730
path: |
18-
./ci/artifacts/yarn.lock
1931
./ci/artifacts/Gemfile.lock
2032
test_6_1_ruby_2_7:
2133
runs-on: ubuntu-latest
@@ -29,7 +41,6 @@ jobs:
2941
with:
3042
name: lockfiles_test_6_1_ruby_2_7
3143
path: |
32-
./ci/artifacts/yarn.lock
3344
./ci/artifacts/Gemfile.lock
3445
test_6_0_ruby_2_6:
3546
runs-on: ubuntu-latest
@@ -43,7 +54,6 @@ jobs:
4354
with:
4455
name: lockfiles_test_6_0_ruby_2_6
4556
path: |
46-
./ci/artifacts/yarn.lock
4757
./ci/artifacts/Gemfile.lock
4858
test_5_2_ruby_2_6:
4959
runs-on: ubuntu-latest
@@ -57,5 +67,4 @@ jobs:
5767
with:
5868
name: lockfiles_test_5_2_ruby_2_6
5969
path: |
60-
./ci/artifacts/yarn.lock
6170
./ci/artifacts/Gemfile.lock

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.bundle/
22
log/*.log
33
node_modules/
4+
coverage/
45
spec/dummy/db/*.sqlite3
56
spec/dummy/db/*.sqlite3-journal
67
spec/dummy/log/*.log

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v3.0.0.rc1 Release - 2022-02-11
4+
5+
- Please read the [migration guide](docs/migrate-from-2.x-to-3.0.md)
6+
37
## v2.1.1 Release - 2021-06-30
48

59
### Bugfixes

Dockerfile.dev

-3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,3 @@ COPY ./lib/ /app/lib/
1212
COPY matestack-ui-core.gemspec /app/
1313
COPY Gemfile* /app/
1414
RUN bundle install
15-
16-
COPY package.json yarn* /app/
17-
RUN yarn install

Dockerfile.test

-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ COPY matestack-ui-core.gemspec /app/
1313
COPY Gemfile* /app/
1414
RUN bundle install
1515

16-
COPY package.json yarn* /app/
17-
RUN yarn install
18-
1916
RUN apk update && apk upgrade \
2017
&& echo @edge http://nl.alpinelinux.org/alpine/edge/community >> /etc/apk/repositories \
2118
&& echo @edge http://nl.alpinelinux.org/alpine/edge/main >> /etc/apk/repositories \

Gemfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@ gemspec
1111
# Git. Remember to move these dependencies to your gemspec before releasing
1212
# your gem to rubygems.org.
1313

14+
gem 'rails', '7.0.1'
15+
1416
group :development, :test do
1517
gem 'rspec-rails', '~> 4.0.2'
1618
gem 'capybara'
17-
gem 'webpacker', '~> 4.0'
19+
gem 'webpacker', '~> 5.0'
1820
gem 'pg', '>= 0.18', '< 2.0'
1921
gem 'selenium-webdriver'
2022
gem 'puma'

0 commit comments

Comments
 (0)