Skip to content

Commit

Permalink
updated lt-lcms/lt-google-api to support upgraded google api
Browse files Browse the repository at this point in the history
  • Loading branch information
shlag3n committed Dec 24, 2023
1 parent cdb0579 commit 579e6ed
Show file tree
Hide file tree
Showing 13 changed files with 174 additions and 147 deletions.
16 changes: 16 additions & 0 deletions .codeship/setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/usr/bin/env bash

gem install bundler:2.4.22
gem update --system
bundle _2.4.22_ install

bin/overcommit --sign
if ! GIT_AUTHOR_EMAIL=ci@test.com GIT_AUTHOR_NAME='ci user' bundle exec overcommit --run; then
exit 1
fi

# Setup environment
echo -e 'APPLICATION_DOMAIN=example.org' > .env
RAILS_ENV="test" bin/rails db:create
RAILS_ENV="test" bin/rails db:schema:load
RAILS_ENV="test" bin/rails db:migrate
3 changes: 3 additions & 0 deletions .codeship/tests.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env bash

RAILS_ENV="test" bundle exec rspec
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ spec/dummy/public/assets/

coverage
/yarn-error.log
.gem_rbs_collection/
1 change: 1 addition & 0 deletions .overcommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ PreCommit:
exclude:
- bin/*
- spec/dummy/bin/*
- .codeship/*

YamlSyntax:
enabled: true
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.4
2.7.7
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/learningtapestry/lcms-engine/compare/v0.5.4...HEAD)
## [Unreleased](https://github.com/learningtapestry/lcms-engine/compare/v0.5.5...HEAD)


## [0.5.4](https://github.com/learningtapestry/lcms-engine/compare/v0.5.4...v0.5.5) - 2023.12.23

### Changed

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

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

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
COPY . $APP_PATH

# Install gems
RUN gem install bundler:2.4.8 \
RUN gem install bundler:2.4.22 \
&& bundle install --jobs `expr $(cat /proc/cpuinfo | grep -c "cpu cores") - 1` --retry 3 \
&& rm -rf /usr/local/bundle/cache/*.gem \
&& find /usr/local/bundle/gems/ -name "*.c" -delete \
Expand Down
6 changes: 6 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ gemspec
# To use a debugger
# gem 'byebug', group: [:development, :test]

gem 'lt-google-api', github: 'learningtapestry/lt-google-api',
branch: 'google-api-upgrade',
ref: 'ed96114'
gem 'lt-lcms', github: 'learningtapestry/lt-lcms',
branch: 'google-api-upgrade',
ref: '8cf42b4'
gem 'wicked_pdf', git: 'https://github.com/learningtapestry/wicked_pdf.git',
branch: 'puppeteer-support',
ref: '964a090'
Loading

0 comments on commit 579e6ed

Please sign in to comment.