Skip to content

Commit 4019ed8

Browse files
authored
Merge pull request #261 from learningtapestry/google-api-upgrade
updated lt-lcms/lt-google-api to support upgraded google api
2 parents cdb0579 + 3e2f196 commit 4019ed8

File tree

12 files changed

+157
-151
lines changed

12 files changed

+157
-151
lines changed

.codeship/setup.sh

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env bash
2+
3+
gem install bundler:2.4.22
4+
gem update --system 3.3.5
5+
bundle _2.4.22_ install
6+
7+
bin/overcommit --sign
8+
if ! GIT_AUTHOR_EMAIL=ci@test.com GIT_AUTHOR_NAME='ci user' bundle exec overcommit --run; then
9+
exit 1
10+
fi
11+
12+
# Setup environment
13+
echo -e 'APPLICATION_DOMAIN=example.org' > .env
14+
RAILS_ENV="test" bin/rails db:create
15+
RAILS_ENV="test" bin/rails db:schema:load
16+
RAILS_ENV="test" bin/rails db:migrate

.codeship/tests.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/bin/env bash
2+
3+
RAILS_ENV="test" bundle exec rspec

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@ spec/dummy/public/assets/
2525

2626
coverage
2727
/yarn-error.log
28+
.gem_rbs_collection/

.overcommit.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ PreCommit:
2424
exclude:
2525
- bin/*
2626
- spec/dummy/bin/*
27+
- .codeship/*
2728

2829
YamlSyntax:
2930
enabled: true

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.7.4
1+
2.7.7

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,16 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased](https://github.com/learningtapestry/lcms-engine/compare/v0.5.4...HEAD)
7+
## [Unreleased](https://github.com/learningtapestry/lcms-engine/compare/v0.5.5...HEAD)
8+
9+
10+
## [0.5.5](https://github.com/learningtapestry/lcms-engine/compare/v0.5.4...v0.5.5) - 2023.12.24
811

912
### Changed
1013

1114
- Enhance error handling for job result fetching - [@paranoicsan](https://github.com/paranoicsan)
1215
- Normalize metadata search in Resource model - [@paranoicsan](https://github.com/paranoicsan)
16+
- Bumped lt-lcms/lt-google-api to use upgraded google api (0.11) - [@shlag3n](https://github.com/shlag3n)
1317

1418
## [0.5.4](https://github.com/learningtapestry/lcms-engine/compare/v0.5.3...v0.5.4) - 2022.12.30
1519

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
1616
COPY . $APP_PATH
1717

1818
# Install gems
19-
RUN gem install bundler:2.4.8 \
19+
RUN gem install bundler:2.4.22 \
2020
&& bundle install --jobs `expr $(cat /proc/cpuinfo | grep -c "cpu cores") - 1` --retry 3 \
2121
&& rm -rf /usr/local/bundle/cache/*.gem \
2222
&& find /usr/local/bundle/gems/ -name "*.c" -delete \

0 commit comments

Comments
 (0)