Commit a487b5b953b6760e34930d240ab07f28ff5383c9
1 parent
d2032b02
Exists in
colab
and in
4 other branches
Added kalibro_client gem
Showing
2 changed files
with
19 additions
and
4 deletions
Show diff stats
Gemfile
... | ... | @@ -32,6 +32,7 @@ gem 'devise', '~> 3.4.0' |
32 | 32 | |
33 | 33 | # Kalibro integration |
34 | 34 | gem 'kalibro_gatekeeper_client', '~> 1.0.0' |
35 | +gem 'kalibro_client', git: 'https://github.com/mezuro/kalibro_client' | |
35 | 36 | |
36 | 37 | # PostgreSQL integration |
37 | 38 | gem "pg", "~> 0.17.0" | ... | ... |
Gemfile.lock
... | ... | @@ -8,6 +8,13 @@ GIT |
8 | 8 | rails (>= 3.1) |
9 | 9 | railties (>= 3.1) |
10 | 10 | |
11 | +GIT | |
12 | + remote: https://github.com/mezuro/kalibro_client | |
13 | + revision: 31292140401ae4dfa3aa9a5989079aff2751d66b | |
14 | + specs: | |
15 | + kalibro_client (0.0.1) | |
16 | + activeresource (~> 4.0.0) | |
17 | + | |
11 | 18 | GEM |
12 | 19 | remote: https://rubygems.org/ |
13 | 20 | specs: |
... | ... | @@ -31,7 +38,11 @@ GEM |
31 | 38 | activemodel (= 4.1.8) |
32 | 39 | activesupport (= 4.1.8) |
33 | 40 | arel (~> 5.0.0) |
34 | - activesupport (4.1.8) | |
41 | + activeresource (4.0.0) | |
42 | + activemodel (~> 4.0) | |
43 | + activesupport (~> 4.0) | |
44 | + rails-observers (~> 0.1.1) | |
45 | + activesupport (4.1.6) | |
35 | 46 | i18n (~> 0.6, >= 0.6.9) |
36 | 47 | json (~> 1.7, >= 1.7.7) |
37 | 48 | minitest (~> 5.1) |
... | ... | @@ -185,9 +196,11 @@ GEM |
185 | 196 | bundler (>= 1.3.0, < 2.0) |
186 | 197 | railties (= 4.1.8) |
187 | 198 | sprockets-rails (~> 2.0) |
188 | - railties (4.1.8) | |
189 | - actionpack (= 4.1.8) | |
190 | - activesupport (= 4.1.8) | |
199 | + rails-observers (0.1.2) | |
200 | + activemodel (~> 4.0) | |
201 | + railties (4.1.6) | |
202 | + actionpack (= 4.1.6) | |
203 | + activesupport (= 4.1.6) | |
191 | 204 | rake (>= 0.8.7) |
192 | 205 | thor (>= 0.18.1, < 2.0) |
193 | 206 | rake (10.4.2) |
... | ... | @@ -292,6 +305,7 @@ DEPENDENCIES |
292 | 305 | jbuilder (~> 2.2.2) |
293 | 306 | jquery-rails |
294 | 307 | jquery-ui-rails (~> 5.0.0) |
308 | + kalibro_client! | |
295 | 309 | kalibro_gatekeeper_client (~> 1.0.0) |
296 | 310 | konacha (~> 3.3.0) |
297 | 311 | mocha | ... | ... |