Skip to content
This repository was archived by the owner on Nov 9, 2017. It is now read-only.

Commit daa40ac

Browse files
committed
Adding concurrent-ruby as a dependency
1 parent 894cbcb commit daa40ac

File tree

2 files changed

+29
-27
lines changed

2 files changed

+29
-27
lines changed

Gemfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ gemspec
55
gem "rake"
66
gem "byebug"
77

8-
gem "sqlite3"
9-
gem "httparty"
8+
gem 'sqlite3'
9+
gem 'httparty'
10+
gem 'concurrent-ruby'
1011

1112
gem "aws-sdk", "~> 2", require: false
1213
gem "google-cloud-storage", "~> 1.3", require: false

Gemfile.lock

Lines changed: 26 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -10,29 +10,29 @@ PATH
1010
GEM
1111
remote: https://rubygems.org/
1212
specs:
13-
actionpack (5.1.1)
14-
actionview (= 5.1.1)
15-
activesupport (= 5.1.1)
13+
actionpack (5.1.2)
14+
actionview (= 5.1.2)
15+
activesupport (= 5.1.2)
1616
rack (~> 2.0)
1717
rack-test (~> 0.6.3)
1818
rails-dom-testing (~> 2.0)
1919
rails-html-sanitizer (~> 1.0, >= 1.0.2)
20-
actionview (5.1.1)
21-
activesupport (= 5.1.1)
20+
actionview (5.1.2)
21+
activesupport (= 5.1.2)
2222
builder (~> 3.1)
2323
erubi (~> 1.4)
2424
rails-dom-testing (~> 2.0)
2525
rails-html-sanitizer (~> 1.0, >= 1.0.3)
26-
activejob (5.1.1)
27-
activesupport (= 5.1.1)
26+
activejob (5.1.2)
27+
activesupport (= 5.1.2)
2828
globalid (>= 0.3.6)
29-
activemodel (5.1.1)
30-
activesupport (= 5.1.1)
31-
activerecord (5.1.1)
32-
activemodel (= 5.1.1)
33-
activesupport (= 5.1.1)
29+
activemodel (5.1.2)
30+
activesupport (= 5.1.2)
31+
activerecord (5.1.2)
32+
activemodel (= 5.1.2)
33+
activesupport (= 5.1.2)
3434
arel (~> 8.0)
35-
activesupport (5.1.1)
35+
activesupport (5.1.2)
3636
concurrent-ruby (~> 1.0, >= 1.0.2)
3737
i18n (~> 0.7)
3838
minitest (~> 5.1)
@@ -41,26 +41,26 @@ GEM
4141
public_suffix (~> 2.0, >= 2.0.2)
4242
arel (8.0.0)
4343
ast (2.3.0)
44-
aws-sdk (2.10.7)
45-
aws-sdk-resources (= 2.10.7)
46-
aws-sdk-core (2.10.7)
44+
aws-sdk (2.10.11)
45+
aws-sdk-resources (= 2.10.11)
46+
aws-sdk-core (2.10.11)
4747
aws-sigv4 (~> 1.0)
4848
jmespath (~> 1.0)
49-
aws-sdk-resources (2.10.7)
50-
aws-sdk-core (= 2.10.7)
51-
aws-sigv4 (1.0.0)
49+
aws-sdk-resources (2.10.11)
50+
aws-sdk-core (= 2.10.11)
51+
aws-sigv4 (1.0.1)
5252
builder (3.2.3)
5353
byebug (9.0.6)
5454
concurrent-ruby (1.0.5)
5555
declarative (0.0.9)
5656
declarative-option (0.1.0)
5757
digest-crc (0.4.1)
58-
erubi (1.6.0)
58+
erubi (1.6.1)
5959
faraday (0.12.1)
6060
multipart-post (>= 1.2, < 3)
6161
globalid (0.4.0)
6262
activesupport (>= 4.2.0)
63-
google-api-client (0.13.0)
63+
google-api-client (0.13.1)
6464
addressable (~> 2.5, >= 2.5.1)
6565
googleauth (~> 0.5)
6666
httpclient (>= 2.8.1, < 3.0)
@@ -87,7 +87,7 @@ GEM
8787
httparty (0.15.5)
8888
multi_xml (>= 0.5.2)
8989
httpclient (2.8.3)
90-
i18n (0.8.4)
90+
i18n (0.8.6)
9191
jmespath (1.3.1)
9292
jwt (1.5.6)
9393
little-plugger (1.1.4)
@@ -100,13 +100,13 @@ GEM
100100
mime-types (3.1)
101101
mime-types-data (~> 3.2015)
102102
mime-types-data (3.2016.0521)
103-
mini_portile2 (2.1.0)
103+
mini_portile2 (2.2.0)
104104
minitest (5.10.2)
105105
multi_json (1.12.1)
106106
multi_xml (0.6.0)
107107
multipart-post (2.0.0)
108-
nokogiri (1.7.2)
109-
mini_portile2 (~> 2.1.0)
108+
nokogiri (1.8.0)
109+
mini_portile2 (~> 2.2.0)
110110
os (0.9.6)
111111
parallel (1.11.2)
112112
parser (2.4.0.0)
@@ -157,6 +157,7 @@ DEPENDENCIES
157157
aws-sdk (~> 2)
158158
bundler (~> 1.15)
159159
byebug
160+
concurrent-ruby
160161
google-cloud-storage (~> 1.3)
161162
httparty
162163
rake

0 commit comments

Comments
 (0)