Skip to content

Commit cc7f3bc

Browse files
committedSep 7, 2022
Update for 1.0.0-RC2
1 parent bad8a5d commit cc7f3bc

File tree

5 files changed

+114
-75
lines changed

5 files changed

+114
-75
lines changed
 

‎.dockerignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
*
22
!lib
3+
!resources
34
!Gemfile*

‎Dockerfile

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
FROM ruby:3.1-alpine
1+
FROM ruby:3.1
2+
23
COPY Gemfile Gemfile
3-
RUN bundle install --no-deployment
4-
COPY . .
4+
5+
RUN gem install bundler && bundle install
6+
7+
COPY lib lib
8+
COPY resources resources
9+
510
CMD bundle exec ruby lib/playground.rb

‎Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ group :development, :test do
66
gem "rubocop"
77
end
88

9-
gem "appwrite", "~> 6.0.0"
9+
gem "appwrite", "~> 7.0.0.pre.RC2"
1010
gem "colorize"
1111
gem "dotenv"
1212
gem "mime-types"

‎Gemfile.lock

+12-9
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,42 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
appwrite (6.0.0)
4+
appwrite (7.0.0.pre.RC2)
55
mime-types (~> 3.4.1)
66
ast (2.4.2)
77
colorize (0.8.1)
8-
dotenv (2.7.6)
8+
dotenv (2.8.1)
9+
json (2.6.2)
910
mime-types (3.4.1)
1011
mime-types-data (~> 3.2015)
1112
mime-types-data (3.2022.0105)
1213
parallel (1.22.1)
13-
parser (3.1.2.0)
14+
parser (3.1.2.1)
1415
ast (~> 2.4.1)
1516
rainbow (3.1.1)
1617
regexp_parser (2.5.0)
1718
rexml (3.2.5)
18-
rubocop (1.31.0)
19+
rubocop (1.36.0)
20+
json (~> 2.3)
1921
parallel (~> 1.10)
20-
parser (>= 3.1.0.0)
22+
parser (>= 3.1.2.1)
2123
rainbow (>= 2.2.2, < 4.0)
2224
regexp_parser (>= 1.8, < 3.0)
2325
rexml (>= 3.2.5, < 4.0)
24-
rubocop-ast (>= 1.18.0, < 2.0)
26+
rubocop-ast (>= 1.20.1, < 2.0)
2527
ruby-progressbar (~> 1.7)
2628
unicode-display_width (>= 1.4.0, < 3.0)
27-
rubocop-ast (1.18.0)
29+
rubocop-ast (1.21.0)
2830
parser (>= 3.1.1.0)
2931
ruby-progressbar (1.11.0)
3032
unicode-display_width (2.2.0)
3133

3234
PLATFORMS
33-
aarch64-linux-musl
35+
aarch64-linux
36+
arm64-darwin-21
3437

3538
DEPENDENCIES
36-
appwrite (~> 6.0.0)
39+
appwrite (~> 7.0.0.pre.RC2)
3740
colorize
3841
dotenv
3942
mime-types

0 commit comments

Comments
 (0)