forked from beyond-z/canvas-lms
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile.lock
1218 lines (1153 loc) · 26.2 KB
/
Gemfile.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
GIT
remote: https://github.com/beyond-z/logjam_agent.git
revision: 078415697fa81f0e92bb7334a07dea2d72de2a88
specs:
logjam_agent (0.29.3)
activesupport
ffi-rzmq (>= 2.0.4)
ffi-rzmq-core (>= 1.0.5)
time_bandits (>= 0.6.0)
GIT
remote: https://github.com/ccutrer/redis-store.git
revision: 72db36c56c6563fc65f213dcf8a1b77ddd22d1bb
ref: 72db36c56c6563fc65f213dcf8a1b77ddd22d1bb
specs:
redis-store (1.1.4)
redis (>= 2.2)
GIT
remote: https://github.com/codekitchen/nokogiri.git
revision: d47e53f885c97a865b350bd17162afdefe4a55ac
ref: d47e53f885
specs:
nokogiri (1.6.6.2.20150813143452)
mini_portile (~> 0.6.0)
GIT
remote: https://github.com/colleenpalmer/dress_code.git
revision: 574382160ee4fa54976953d4619e6054e77ee304
specs:
dress_code (1.0.2)
colored
mustache
pygments.rb
redcarpet
GIT
remote: https://github.com/instructure/nokogiri-xmlsec-me-harder.git
revision: 3236a249986413c6c399ef3477132a0af0410bb7
ref: 3236a249986413c6c399ef3477132a0af0410bb7
specs:
nokogiri-xmlsec-me-harder (0.9.3pre)
nokogiri
GIT
remote: https://github.com/instructure/testrailtagging
revision: 0007571e12c3bc2ad0f3a82a0e4608a758d4f74f
ref: master
specs:
testrailtagging (0.3.8.7)
parser
rspec
testrail_client
GIT
remote: https://github.com/kreynolds/cassandra-cql.git
revision: beed72e249d02cebc850a4b92b468c8b64b12257
ref: beed72e249d02cebc850a4b92b468c8b64b12257
specs:
cassandra-cql (1.2.2)
simple_uuid (>= 0.2.0)
thrift_client (>= 0.7.1, < 0.9)
GIT
remote: https://github.com/maneframe/mocha.git
revision: bb8813fbb4cc589d7c58073d93983722d61b6919
ref: bb8813fbb4cc589d7c58073d93983722d61b6919
specs:
mocha (1.1.0)
metaclass (~> 0.0.1)
GIT
remote: https://github.com/rails-api/active_model_serializers.git
revision: 61882e1e4127facfe92e49057aec71edbe981829
ref: 61882e1e4127facfe92e49057aec71edbe981829
specs:
active_model_serializers (0.9.0.alpha1)
activemodel (>= 3.2)
PATH
remote: gems/activesupport-suspend_callbacks
specs:
activesupport-suspend_callbacks (0.0.1)
activesupport (>= 3.2, < 4.3)
PATH
remote: gems/acts_as_list
specs:
acts_as_list (0.0.1)
rails (>= 3.2, < 4.3)
PATH
remote: gems/adheres_to_policy
specs:
adheres_to_policy (0.0.1)
rails (>= 3.2, < 4.3)
PATH
remote: gems/attachment_fu
specs:
attachment_fu (1.0.0)
rails (>= 3.2, < 4.3)
PATH
remote: gems/autoextend
specs:
autoextend (1.0.0)
PATH
remote: gems/bookmarked_collection
specs:
bookmarked_collection (1.0.0)
folio-pagination (= 0.0.11)
json_token
paginated_collection
rails (>= 3.2, < 4.3)
will_paginate (= 3.0.7)
PATH
remote: gems/broadcast_policy
specs:
broadcast_policy (1.0.0)
activesupport
after_transaction_commit
PATH
remote: gems/canvas_breach_mitigation
specs:
canvas_breach_mitigation (0.0.1)
PATH
remote: gems/canvas_cassandra
specs:
canvas_cassandra (0.0.1)
cassandra-cql (= 1.2.2)
PATH
remote: gems/canvas_color
specs:
canvas_color (0.0.1)
PATH
remote: gems/canvas_crummy
specs:
canvas_crummy (0.0.1)
PATH
remote: gems/canvas_ext
specs:
canvas_ext (1.0.0)
activesupport (>= 3.2, < 4.3)
tzinfo
PATH
remote: gems/canvas_http
specs:
canvas_http (1.0.0)
PATH
remote: gems/canvas_kaltura
specs:
canvas_kaltura (1.0.0)
canvas_http
canvas_slug
canvas_sort
multipart
nokogiri
PATH
remote: gems/canvas_mimetype_fu
specs:
canvas_mimetype_fu (0.0.1)
PATH
remote: gems/canvas_panda_pub
specs:
canvas_panda_pub (1.0.0)
canvas_http
jwt
PATH
remote: gems/canvas_partman
specs:
canvas_partman (2.0.0)
activerecord (>= 3.2, < 4.3)
pg (~> 0.17)
PATH
remote: gems/canvas_quiz_statistics
specs:
canvas_quiz_statistics (0.1.0)
activesupport
html_text_helper
PATH
remote: gems/canvas_sanitize
specs:
canvas_sanitize (0.0.1)
sanitize (= 2.1.0)
PATH
remote: gems/canvas_slug
specs:
canvas_slug (0.0.1)
PATH
remote: gems/canvas_sort
specs:
canvas_sort (1.0.0)
PATH
remote: gems/canvas_stringex
specs:
canvas_stringex (0.0.1)
rails (>= 3.2, < 4.3)
PATH
remote: gems/canvas_text_helper
specs:
canvas_text_helper (0.0.1)
i18n
PATH
remote: gems/canvas_time
specs:
canvas_time (1.0.0)
activesupport (>= 3.2, < 4.3)
tzinfo
PATH
remote: gems/canvas_unzip
specs:
canvas_unzip (0.0.1)
canvas_mimetype_fu
rubyzip (= 1.1.1)
PATH
remote: gems/csv_diff
specs:
csv_diff (1.0.0)
sqlite3
PATH
remote: gems/diigo
specs:
diigo (1.0.0)
nokogiri
PATH
remote: gems/event_stream
specs:
event_stream (0.0.1)
bookmarked_collection
canvas_cassandra
canvas_statsd
json_token
paginated_collection
protected_attributes (~> 1.0)
rails (>= 3.2, < 4.3)
PATH
remote: gems/google_drive
specs:
google_drive (1.0.0)
google-api-client (= 0.8.2)
rails (>= 3.2, < 4.3)
PATH
remote: gems/handlebars_tasks
specs:
handlebars_tasks (0.0.1)
execjs (= 1.4.0)
i18n_extraction
PATH
remote: gems/html_text_helper
specs:
html_text_helper (0.0.1)
activesupport (>= 3.2, < 4.3)
canvas_text_helper
iconv (~> 1.0)
nokogiri
sanitize (~> 2.1.0)
PATH
remote: gems/i18n_extraction
specs:
i18n_extraction (0.0.1)
activesupport (>= 3.2, < 4.3)
i18nliner (= 0.0.14)
ruby_parser (~> 3.14.0)
sexp_processor (~> 4.9)
PATH
remote: gems/i18n_tasks
specs:
i18n_tasks (0.0.1)
activesupport (>= 3.2, < 4.3)
i18n (~> 0.7.0)
i18n_extraction
ruby_parser (~> 3.14.0)
utf8_cleaner
ya2yaml (>= 0.30)
PATH
remote: gems/incoming_mail_processor
specs:
incoming_mail_processor (0.0.1)
activesupport (>= 3.2, < 4.3)
aws-sdk-v1
canvas_statsd
html_text_helper
mail (= 2.5.4)
utf8_cleaner
PATH
remote: gems/json_token
specs:
json_token (0.0.1)
json (~> 1.8)
PATH
remote: gems/linked_in
specs:
linked_in (1.0.0)
nokogiri
oauth-instructure (= 0.4.10)
PATH
remote: gems/live_events
specs:
live_events (1.0.0)
activesupport
aws-sdk-v1
canvas_statsd
PATH
remote: gems/lti_outbound
specs:
lti_outbound (0.0.1)
i18n (~> 0.7.0)
oauth-instructure (= 0.4.10)
PATH
remote: gems/multipart
specs:
multipart (0.0.1)
canvas_slug
mime-types (= 1.17.2)
PATH
remote: gems/paginated_collection
specs:
paginated_collection (1.0.0)
folio-pagination (= 0.0.11)
will_paginate (= 3.0.7)
PATH
remote: gems/plugins/academic_benchmark
specs:
academic_benchmark (1.1.0)
rails (>= 3.2, < 4.3)
PATH
remote: gems/plugins/account_reports
specs:
account_reports (1.1.0)
rails (>= 3.2, < 4.3)
PATH
remote: gems/plugins/moodle_importer
specs:
moodle_importer (1.0.0)
moodle2cc (= 0.2.33)
rails (>= 3.2, < 4.3)
PATH
remote: gems/plugins/qti_exporter
specs:
qti_exporter (1.0.0)
rails (>= 3.2, < 4.3)
PATH
remote: gems/plugins/respondus_soap_endpoint
specs:
respondus_soap_endpoint (1.1.0)
rails (>= 3.2, < 4.3)
soap4r-middleware (= 0.8.3)
soap4r-ruby1.9 (= 2.0.0)
PATH
remote: gems/plugins/simply_versioned
specs:
simply_versioned (1.0.0)
rails (>= 3.2, < 4.3)
PATH
remote: gems/rubocop-canvas
specs:
rubocop-canvas (1.0.0)
rubocop (= 0.35.1)
PATH
remote: gems/selinimum
specs:
selinimum (0.0.1)
activerecord (>= 3.2, < 4.3)
activesupport (>= 3.2, < 4.3)
aws-sdk (~> 1.63.0)
globby (>= 0.1.2)
PATH
remote: gems/stringify_ids
specs:
stringify_ids (1.0.0)
PATH
remote: gems/twitter
specs:
twitter (1.0.0)
html_text_helper
oauth-instructure
PATH
remote: gems/utf8_cleaner
specs:
utf8_cleaner (0.0.1)
iconv (~> 1.0)
syck (~> 1.0)
PATH
remote: gems/workflow
specs:
workflow (0.0.1)
rails (>= 3.2, < 4.3)
GEM
remote: https://rubygems.org/
specs:
actionmailer (4.0.13)
actionpack (= 4.0.13)
mail (~> 2.5, >= 2.5.4)
actionpack (4.0.13)
activesupport (= 4.0.13)
builder (~> 3.1.0)
erubis (~> 2.7.0)
rack (~> 1.5.2)
rack-test (~> 0.6.2)
active_model-better_errors (1.6.7)
activemodel (>= 3.0)
activemodel (4.0.13)
activesupport (= 4.0.13)
builder (~> 3.1.0)
activerecord (4.0.13)
activemodel (= 4.0.13)
activerecord-deprecated_finders (~> 1.0.2)
activesupport (= 4.0.13)
arel (~> 4.0.0)
activerecord-deprecated_finders (1.0.4)
activesupport (4.0.13)
i18n (~> 0.6, >= 0.6.9)
minitest (~> 4.2)
multi_json (~> 1.3)
thread_safe (~> 0.1)
tzinfo (~> 0.3.37)
addressable (2.3.8)
after_transaction_commit (1.0.1)
activerecord (>= 3.2)
airbrussh (1.4.0)
sshkit (>= 1.6.1, != 1.7.0)
arel (4.0.2)
aroi (0.0.3)
rails (>= 3.2, < 5.0)
ast (2.4.0)
astrolabe (1.3.1)
parser (~> 2.2)
authlogic (3.4.6)
activerecord (>= 3.2)
activesupport (>= 3.2)
request_store (~> 1.0)
scrypt (>= 1.2, < 3.0)
autoparse (0.3.3)
addressable (>= 2.3.1)
extlib (>= 0.9.15)
multi_json (>= 1.0.0)
aws-sdk (1.63.0)
aws-sdk-v1 (= 1.63.0)
aws-sdk-v1 (1.63.0)
json (~> 1.4)
nokogiri (>= 1.4.4)
barby (0.5.0)
bcrypt-ruby (3.0.1)
benchmark-ips (2.7.2)
bindata (2.4.4)
bluecloth (2.2.0)
builder (3.1.4)
bullet_instructure (4.14.8)
activesupport (>= 3.0.0)
redcarpet (>= 3.0.0)
uniform_notifier (~> 1.9.0)
byebug (9.0.6)
canvas_statsd (1.0.3)
aroi (= 0.0.3)
statsd-ruby (= 1.0.0)
canvas_webex (0.17)
railties
capistrano (3.5.0)
airbrussh (>= 1.0.0)
capistrano-harrow
i18n
rake (>= 10.0.0)
sshkit (>= 1.9.0)
capistrano-bundler (1.6.0)
capistrano (~> 3.1)
capistrano-harrow (0.5.3)
capistrano-nvm (0.0.7)
capistrano (~> 3.1)
capistrano-passenger (0.2.0)
capistrano (~> 3.0)
capistrano-rails (1.4.0)
capistrano (~> 3.1)
capistrano-bundler (~> 1.1)
childprocess (0.5.0)
ffi (~> 1.0, >= 1.0.11)
chunky_png (1.3.0)
coderay (1.1.2)
coffee-script (2.3.0)
coffee-script-source
execjs
coffee-script-source (1.6.2)
colored (1.2)
colorize (0.8.1)
concurrent-ruby (1.1.5)
crack (0.4.3)
safe_yaml (~> 1.0.0)
crocodoc-ruby (0.0.1)
json
daemons (1.3.1)
derailed_benchmarks (1.3.5)
benchmark-ips (~> 2)
get_process_mem (~> 0)
heapy (~> 0)
memory_profiler (~> 0)
rack (>= 1)
rake (> 10, < 13)
thor (~> 0.19)
diff-lcs (1.3)
diplomat (0.15.0)
faraday (~> 0.9)
json (~> 1.8)
docile (1.1.3)
domain_name (0.5.20190701)
unf (>= 0.0.5, < 1.0.0)
dotenv (2.7.5)
dotenv-rails (2.7.5)
dotenv (= 2.7.5)
railties (>= 3.2, < 6.1)
dynamic_form (1.1.4)
encrypted_cookie_store-instructure (1.1.12)
actionpack (>= 3.2, < 4.3)
erubis (2.7.0)
escape_code (0.2)
eventmachine (1.0.4)
excon (0.69.1)
execjs (1.4.0)
multi_json (~> 1.0)
extlib (0.9.16)
faraday (0.9.2)
multipart-post (>= 1.2, < 3)
faraday_middleware (0.13.1)
faraday (>= 0.7.4, < 1.0)
ffi (1.1.5)
ffi-compiler (1.0.1)
ffi (>= 1.0.0)
rake
ffi-icu (0.1.10)
ffi (~> 1.0, >= 1.0.9)
ffi-rzmq (2.0.7)
ffi-rzmq-core (>= 1.0.7)
ffi-rzmq-core (1.0.7)
ffi
flamegraph (0.9.5)
folio-pagination (0.0.11)
fontcustom (1.3.8)
json (~> 1.4)
listen (>= 1.0, < 3.0)
thor (~> 0.14)
foreigner (0.9.2)
formatador (0.2.5)
gepub (0.6.9.2)
nokogiri (~> 1.6.1)
rubyzip (>= 1.1.1)
get_process_mem (0.2.5)
ffi (~> 1.0)
github-markdown (0.6.8)
globby (0.1.2)
google-api-client (0.8.2)
activesupport (>= 3.2)
addressable (~> 2.3)
autoparse (~> 0.3)
extlib (~> 0.9)
faraday (~> 0.9)
launchy (~> 2.4)
multi_json (~> 1.10)
retriable (~> 1.4)
signet (~> 0.6)
guard (1.8.0)
formatador (>= 0.2.4)
listen (>= 1.0.0)
lumberjack (>= 1.0.2)
pry (>= 0.9.10)
thor (>= 0.14.6)
guard-gulp (0.0.2)
guard (>= 1.1)
guard-shell (0.6.1)
guard (>= 1.1.0)
hairtrigger (0.2.16)
activerecord (>= 2.3)
ruby2ruby (~> 2.0)
ruby_parser (~> 3.5)
hashdiff (0.2.0)
hashery (1.3.0)
headless (2.2.0)
heapy (0.1.3)
heroics (0.0.25)
erubis (~> 2.0)
excon
moneta
multi_json (>= 1.9.2)
hey (1.3.0)
highline (1.6.1)
hoe (3.8.1)
rake (>= 0.8, < 11.0)
http-accept (1.7.0)
http-cookie (1.0.3)
domain_name (~> 0.5)
httparty (0.13.7)
json (~> 1.8)
multi_xml (>= 0.5.2)
i18n (0.7.0)
i18nema (0.0.8)
i18n (>= 0.5)
syck (~> 1.0.0)
i18nliner (0.0.14)
activesupport (>= 3.0)
erubis (~> 2.7.0)
globby (>= 0.1.1)
nokogiri (>= 1.5.0)
ruby2ruby (~> 2.4)
ruby_parser (~> 3.10)
sexp_processor (~> 4.10)
ya2yaml (= 0.31)
icalendar (1.5.4)
iconv (1.0.4)
ims-lti (2.1.0.beta.3)
builder
faraday (~> 0.8)
faraday_middleware (~> 0.8)
simple_oauth (= 0.2)
inst-jobs (0.11.2)
after_transaction_commit (= 1.0.1)
rails (>= 3.2)
redis (> 3.0)
redis-scripting (~> 1.0.1)
rufus-scheduler (~> 3.1.2)
instructure-happymapper (0.5.10)
nokogiri (~> 1.5)
iso8601 (0.12.1)
jira_ref_parser (1.0.0)
json (1.8.2)
json-jwt (1.5.1)
activesupport
bindata
multi_json (>= 1.3)
securecompare
url_safe_base64
jwt (1.2.1)
launchy (2.4.3)
addressable (~> 2.3)
letter_opener (1.7.0)
launchy (~> 2.2)
listen (1.3.1)
rb-fsevent (>= 0.9.3)
rb-inotify (>= 0.9)
rb-kqueue (>= 0.2)
lumberjack (1.0.13)
mail (2.5.4)
mime-types (~> 1.16)
treetop (~> 1.4.8)
marginalia (1.3.0)
actionpack (>= 2.3)
activerecord (>= 2.3)
memory_profiler (0.9.12)
metaclass (0.0.2)
method_source (0.9.2)
mime-types (1.17.2)
mini_magick (4.2.7)
mini_portile (0.6.2)
minitest (4.7.5)
moneta (1.0.0)
moodle2cc (0.2.33)
builder
instructure-happymapper (~> 0.5.10)
nokogiri
rdiscount
rubyzip (>= 1.0.0)
thor
multi_json (1.10.1)
multi_xml (0.6.0)
multipart-post (2.1.1)
mustache (0.99.5)
net-ldap (0.10.1)
net-scp (2.0.0)
net-ssh (>= 2.6.5, < 6.0.0)
net-ssh (3.2.0)
netaddr (1.5.0)
netrc (0.11.0)
oauth-instructure (0.4.10)
oauth2 (1.0.0)
faraday (>= 0.8, < 0.10)
jwt (~> 1.0)
multi_json (~> 1.3)
multi_xml (~> 0.5)
rack (~> 1.2)
oj (2.14.1)
once-ler (0.0.15)
activerecord (>= 3.0)
rspec (>= 2.14)
open4 (1.3.0)
parallel (1.4.1)
parser (2.6.5.0)
ast (~> 2.4.0)
pg (0.18.4)
platform-api (2.2.0)
heroics (~> 0.0.25)
moneta (~> 1.0.0)
polyglot (0.3.5)
posix-spawn (0.3.8)
powerpack (0.1.2)
protected_attributes (1.0.8)
activemodel (>= 4.0.1, < 5.0)
pry (0.12.2)
coderay (~> 1.1.0)
method_source (~> 0.9.0)
puma (3.11.4)
pygments.rb (0.5.4)
posix-spawn (~> 0.3.6)
yajl-ruby (~> 1.1.0)
rack (1.5.4)
rack-mini-profiler (0.9.9.2)
rack (>= 1.2.0)
rack-test (0.6.3)
rack (>= 1.0)
rails (4.0.13)
actionmailer (= 4.0.13)
actionpack (= 4.0.13)
activerecord (= 4.0.13)
activesupport (= 4.0.13)
bundler (>= 1.3.0, < 2.0)
railties (= 4.0.13)
sprockets-rails (~> 2.0)
rails-observers (0.1.2)
activemodel (~> 4.0)
rails-patch-json-encode (0.0.1)
multi_json
rails_12factor (0.0.3)
rails_serve_static_assets
rails_stdout_logging
rails_autoscale_agent (0.7.0)
activesupport (>= 3.2)
rails_serve_static_assets (0.0.5)
rails_stdout_logging (0.0.5)
railties (4.0.13)
actionpack (= 4.0.13)
activesupport (= 4.0.13)
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
rainbow (2.2.2)
rake
rake (10.5.0)
ratom-nokogiri (0.10.4)
nokogiri (>= 1.5.6, < 1.7)
rb-fchange (0.0.6)
ffi
rb-fsevent (0.10.3)
rb-inotify (0.9.10)
ffi (>= 0.5.0, < 2)
rb-kqueue (0.2.5)
ffi (>= 0.5.0)
rdiscount (1.6.8)
rdoc (3.12)
json (~> 1.4)
redcarpet (3.2.3)
redis (3.1.0)
redis-actionpack (4.0.1)
actionpack (~> 4)
redis-rack (~> 1.5.0)
redis-store (~> 1.1.0)
redis-activesupport (4.1.5)
activesupport (>= 3, < 5)
redis-store (~> 1.1.0)
redis-rack (1.5.1)
rack (~> 1.5)
redis-store (~> 1.1.0)
redis-rails (4.0.0)
redis-actionpack (~> 4)
redis-activesupport (~> 4)
redis-store (~> 1.1.0)
redis-scripting (1.0.1)
redis (>= 3.0)
request_store (1.4.1)
rack (>= 1.4)
rest-client (2.1.0)
http-accept (>= 1.7.0, < 2.0)
http-cookie (>= 1.0.2, < 2.0)
mime-types (>= 1.16, < 4.0)
netrc (~> 0.8)
retriable (1.4.1)
ritex (1.0.1)
rotp (1.6.1)
rqrcode (0.4.2)
rspec (3.4.0)
rspec-core (~> 3.4.0)
rspec-expectations (~> 3.4.0)
rspec-mocks (~> 3.4.0)
rspec-collection_matchers (1.1.2)
rspec-expectations (>= 2.99.0.beta1)
rspec-core (3.4.4)
rspec-support (~> 3.4.0)
rspec-expectations (3.4.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.4.0)
rspec-mocks (3.4.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.4.0)
rspec-rails (3.4.1)
actionpack (>= 3.0, < 4.3)
activesupport (>= 3.0, < 4.3)
railties (>= 3.0, < 4.3)
rspec-core (~> 3.4.0)
rspec-expectations (~> 3.4.0)
rspec-mocks (~> 3.4.0)
rspec-support (~> 3.4.0)
rspec-support (3.4.1)
rubocop (0.35.1)
astrolabe (~> 1.3)
parser (>= 2.2.3.0, < 3.0)
powerpack (~> 0.1)
rainbow (>= 1.99.1, < 3.0)
ruby-progressbar (~> 1.7)
tins (<= 1.6.0)
rubocop-rspec (1.4.0)
ruby-duration (3.2.0)
activesupport (>= 3.0.0)
i18n
iso8601
ruby-openid (2.9.2)
ruby-progressbar (1.7.5)
ruby-saml-mod (0.3.1)
ffi
nokogiri (~> 1.6)
ruby2ruby (2.4.4)
ruby_parser (~> 3.1)
sexp_processor (~> 4.6)
ruby_parser (3.14.0)
sexp_processor (~> 4.9)
rubycas-client (2.3.9)
activesupport
rubyzip (1.1.1)
rufus-scheduler (3.1.2)
safe_yaml (1.0.4)
saml2 (1.0.7)
activesupport (>= 3.2, < 5.1)
nokogiri (>= 1.5.8, < 1.7)
nokogiri-xmlsec-me-harder (~> 0.9, >= 0.9.3pre)
sanitize (2.1.0)
nokogiri (>= 1.4.4)
scout_apm (2.6.3)
parser
scrypt (2.1.1)
ffi-compiler (>= 0.0.2)
rake
securecompare (1.0.0)
selenium-webdriver (2.53.0)
childprocess (~> 0.5)
rubyzip (~> 1.0)
websocket (~> 1.0)
sentry-raven (0.15.6)
faraday (>= 0.7.6)
sequel (4.5.0)
sexp_processor (4.13.0)
shackles (1.1.0)
activerecord (>= 4.0, < 5.1)
shoulda-matchers (2.8.0)
activesupport (>= 3.0.0)
signet (0.6.0)
addressable (~> 2.3)
extlib (~> 0.9)
faraday (~> 0.9)
jwt (~> 1.0)
multi_json (~> 1.10)
simple_oauth (0.2.0)
simple_uuid (0.4.0)
simplecov (0.9.2)
docile (~> 1.1.0)
multi_json (~> 1.0)
simplecov-html (~> 0.9.0)
simplecov-html (0.9.0)
simplecov-rcov (0.2.3)
simplecov (>= 0.4.1)
soap4r-middleware (0.8.3)
soap4r-ruby1.9 (= 2.0.0)
soap4r-ruby1.9 (2.0.0)
spring (1.2.0)
spring-commands-rspec (1.0.2)
spring (>= 0.9.1)
sprockets (3.7.2)
concurrent-ruby (~> 1.0)
rack (> 1, < 3)
sprockets-rails (2.3.3)
actionpack (>= 3.0)
activesupport (>= 3.0)
sprockets (>= 2.8, < 4.0)
sqlite3 (1.3.9)
sshkit (1.20.0)
net-scp (>= 1.1.2)
net-ssh (>= 2.8.0)
stackprof (0.2.10)
statsd-ruby (1.0.0)
subexec (0.0.4)
switchman (1.5.13)
activerecord (>= 4.0, <= 5.0.0.beta3)
open4 (= 1.3.0)
railties (>= 4.0, <= 5.0.0.beta3)
shackles (~> 1.1.0)
syck (1.0.4)
test_after_commit (0.4.2)
activerecord (>= 3.2)
testingbot (0.2.1)
json
rest-client (~> 2.0)
testrail_client (0.0.1)
thin (1.6.3)
daemons (~> 1.0, >= 1.0.9)
eventmachine (~> 1.0)
rack (~> 1.0)
thor (0.20.3)
thread_safe (0.3.6)
thread_variables (0.2.0)
thrift (0.8.0)
thrift_client (0.8.4)
thrift (~> 0.8.0)
time_bandits (0.11.0)
activesupport (>= 2.3.2)
thread_variables
timecop (0.6.3)
tins (1.6.0)
treetop (1.4.15)
polyglot
polyglot (>= 0.3.1)
twilio-ruby (4.2.1)
builder (>= 2.1.2)
jwt (~> 1.0)
multi_json (>= 1.3.0)
tzinfo (0.3.43)
unf (0.1.4)
unf_ext
unf_ext (0.0.7.6)
uniform_notifier (1.9.0)
url_safe_base64 (0.2.2)
useragent (0.10.0)
uuidtools (2.1.4)
webmock (1.22.3)
addressable (>= 2.3.6)
crack (>= 0.3.2)
hashdiff
websocket (1.0.7)
will_paginate (3.0.7)
ya2yaml (0.31)
yajl-ruby (1.1.0)
yard (0.8.7.6)
yard-appendix (0.1.8)
yard (>= 0.8.0)
PLATFORMS
ruby
DEPENDENCIES
academic_benchmark!
account_reports!
active_model-better_errors (= 1.6.7)
active_model_serializers (= 0.9.0alpha1)!
activesupport-suspend_callbacks!
acts_as_list!
addressable (= 2.3.8)
adheres_to_policy!
after_transaction_commit (= 1.0.1)
attachment_fu!
authlogic (= 3.4.6)
autoextend!