-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProvide
1005 lines (1005 loc) · 55.8 KB
/
Provide
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
> do | config |
> # rspec-expectations config goes her# rYou cbash: json: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ require
> 'rest-client'
> require
> 'stripe'
> require
> 'dotenv'
>
> # This file was generated by the `rspec --init` command. Conventionally, all
> # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
> # The generated `.rspec` file contains `--require spec_helper` which will cause
> # this file to always be loaded, without a need to explicitly require it in any
> # files.
> #
> # Given that it is always loaded, you are encouraged to keep this file as
> # light-weight as possible. Requiring heavyweight dependencies from this file
> # will add to the boot time of your test suite on EVERY test run, even for an
> # individual file that may not need all of that loaded. Instead, consider making
> # a separate helper file that requires the additional dependencies and performs
> # the additional setup, and require it from the spec files that actually need
> # it.
> #
> # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
> RSpec.configure
> do | config |
> # rspec-expectations config goes her# rYou can use anbash: require: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ 'rest-client'
> require
> 'stripe'
> require
> 'dotenv'
>
> # This file was generated by the `rspec --init` command. Conventionally, all
> # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
> # The generated `.rspec` file contains `--require spec_helper` which will cause
> # this file to always be loaded, without a need to explicitly require it in any
> # files.
> #
> # Given that it is always loaded, you are encouraged to keep this file as
> # light-weight as possible. Requiring heavyweight dependencies from this file
> # will add to the boot time of your test suite on EVERY test run, even for an
> # individual file that may not need all of that loaded. Instead, consider making
> # a separate helper file that requires the additional dependencies and performs
> # the additional setup, and require it from the spec files that actually need
> # it.
> #
> # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
> RSpec.configure
> do | config |
> # rspec-expectations config goes her# rYou can use an alternate
> # abash: rest-client: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ require
> 'stripe'
> require
> 'dotenv'
>
> # This file was generated by the `rspec --init` command. Conventionally, all
> # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
> # The generated `.rspec` file contains `--require spec_helper` which will cause
> # this file to always be loaded, without a need to explicitly require it in any
> # files.
> #
> # Given that it is always loaded, you are encouraged to keep this file as
> # light-weight as possible. Requiring heavyweight dependencies from this file
> # will add to the boot time of your test suite on EVERY test run, even for an
> # individual file that may not need all of that loaded. Instead, consider making
> # a separate helper file that requires the additional dependencies and performs
> # the additional setup, and require it from the spec files that actually need
> # it.
> #
> # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
> RSpec.configure
> do | config |
> # rspec-expectations config goes her# rYou can use an alternate
> # assertion/bash: require: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ 'stripe'
> require
> 'dotenv'
>
> # This file was generated by the `rspec --init` command. Conventionally, all
> # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
> # The generated `.rspec` file contains `--require spec_helper` which will cause
> # this file to always be loaded, without a need to explicitly require it in any
> # files.
> #
> # Given that it is always loaded, you are encouraged to keep this file as
> # light-weight as possible. Requiring heavyweight dependencies from this file
> # will add to the boot time of your test suite on EVERY test run, even for an
> # individual file that may not need all of that loaded. Instead, consider making
> # a separate helper file that requires the additional dependencies and performs
> # the additional setup, and require it from the spec files that actually need
> # it.
> #
> # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
> RSpec.configure
> do | config |
> # rspec-expectations config goes her# rYou can use an alternate
> # assertion/expectatioThe official command-line tool to interact with Stripe.
>
> Usage:
> stripe [command]
>
> Webhook commands:
> listen Listen for webhook events
> trigger Trigger test webhook events
>
> Stripe commands:
> logs Interact with Stripe API request logs
> status Check the status of the Stripe API
>
> Resource commands:
> get Quickly retrieve resources from Stripe
> charges Make requests (capture, create, list, etc) on charges
> customers Make requests (create, delete, list, etc) on customers
> payment_intents Make requests (cancel, capture, confirm, etc) on payment intents
> ... To see more resource commands, run `stripe resources help`
>
> Other commands:
> community Chat with Stripe engineers and other developers
> completion Generate bash and zsh completion scripts
> config Manually change the config values for the CLI
> feedback Provide us with feedback on the CLI
> fixtures Run fixtures to populate your account with data
> help Help about any command
> login Login to your Stripe account
> logout Logout of your Stripe account
> open Quickly open Stripe pages
> samples Sample integrations built by Stripe
> serve Serve static files locally
> version Get the version of the Stripe CLI
>
> Flags:
> --api-key string Your API key to use for the command
> --color string turn on/off color output (on, off, auto)
> --config string config file (default is $HOME/.config/stripe/config.toml)
> --device-name string device name
> -h, --help help for stripe
> --log-level string log level (debug, info, trace, warn, error) (default "info")
> -p, --project-name string the project name to read from for config (default "default")
> -v, --version Get the version of the Stripe CLI
>
> Use "stripe [command] --help" for more information about a command.
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ require
> 'dotenv'
>
> # This file was generated by the `rspec --init` command. Conventionally, all
> # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
> # The generated `.rspec` file contains `--require spec_helper` which will cause
> # this file to always be loaded, without a need to explicitly require it in any
> # files.
> #
> # Given that it is always loaded, you are encouraged to keep this file as
> # light-weight as possible. Requiring heavyweight dependencies from this file
> # will add to the boot time of your test suite on EVERY test run, even for an
> # individual file that may not need all of that loaded. Instead, consider making
> # a separate helper file that requires the additional dependencies and performs
> # the additional setup, and require it from the spec files that actually need
> # it.
> #
> # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
> RSpec.configure
> do | config |
> # rspec-expectations config goes her# rYou can use an alternate
> # assertion/expectation librarybash: require: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ 'dotenv'
>
> # This file was generated by the `rspec --init` command. Conventionally, all
> # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
> # The generated `.rspec` file contains `--require spec_helper` which will cause
> # this file to always be loaded, without a need to explicitly require it in any
> # files.
> #
> # Given that it is always loaded, you are encouraged to keep this file as
> # light-weight as possible. Requiring heavyweight dependencies from this file
> # will add to the boot time of your test suite on EVERY test run, even for an
> # individual file that may not need all of that loaded. Instead, consider making
> # a separate helper file that requires the additional dependencies and performs
> # the additional setup, and require it from the spec files that actually need
> # it.
> #
> # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
> RSpec.configure
> do | config |
> # rspec-expectations config goes her# rYou can use an alternate
> # assertion/expectation library such as wbash: dotenv: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$
> # This file was generated by the `rspec --init` command. Conventionally, all
> # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
> # The generated `.rspec` file contains `--require spec_helper` which will cause
> # this file to always be loaded, without a need to explicitly require it in any
> # files.
> #
> # Given that it is always loaded, you are encouraged to keep this file as
> # light-weight as possible. Requiring heavyweight dependencies from this file
> # will add to the boot time of your test suite on EVERY test run, even for an
> # individual file that may not need all of that loaded. Instead, consider making
> # a separate helper file that requires the additional dependencies and performs
> # the additional setup, and require it from the spec files that actually need
> # it.
> #
> # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
> RSpec.configure
> do | config |
> # rspec-expectations config goes her# rYou can use an alternate
> # assertion/expectation library such as wro(env) (base) iMac-de-Guido:identity-main webtechnicom$ # This file was generated by the `rspec --init` command. Conventionally, all
> # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
> # The generated `.rspec` file contains `--require spec_helper` which will cause
> # this file to always be loaded, without a need to explicitly require it in any
> # files.
> #
> # Given that it is always loaded, you are encouraged to keep this file as
> # light-weight as possible. Requiring heavyweight dependencies from this file
> # will add to the boot time of your test suite on EVERY test run, even for an
> # individual file that may not need all of that loaded. Instead, consider making
> # a separate helper file that requires the additional dependencies and performs
> # the additional setup, and require it from the spec files that actually need
> # it.
> #
> # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
> RSpec.configure
> do | config |
> # rspec-expectations config goes her# rYou can use an alternate
> # assertion/expectation library such as wrong or the stdlib/minitest
> # assertions if you prefer.
> config.expect_with: rs(env) (base) iMac-de-Guido:identity-main webtechnicom$ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
> # The generated `.rspec` file contains `--require spec_helper` which will cause
> # this file to always be loaded, without a need to explicitly require it in any
> # files.
> #
> # Given that it is always loaded, you are encouraged to keep this file as
> # light-weight as possible. Requiring heavyweight dependencies from this file
> # will add to the boot time of your test suite on EVERY test run, even for an
> # individual file that may not need all of that loaded. Instead, consider making
> # a separate helper file that requires the additional dependencies and performs
# the additional setup, and require it from the spec files that actually need
# it.
#
# See http> # the additional setup, and require it from the spec files that actually need
> # it.
> #
> # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
> RSpec.configure
> do | config |
> # rspec-expectations config goes her# rYou can use an alternate
> # assertion/expectation library such as wrong or the stdlib/minitest
> # assertions if you prefer.
> config.expect_with: rspec
> do | expectations |
> # This option will default to `true` in RSpec 4. It (env) (base) iMac-de-Guido:identity-main webtechnicom$ # The generated `.rspec` file contains `--require spec_helper` which will cause
> # this file to always be loaded, without a need to explicitly require it in any
> # files.
> #
> # Given that it is always loaded, you are encouraged to keep this file as
> # light-weight as possible. Requiring heavyweight dependencies from this file
> # will add to the boot time of your test suite on EVERY test run, even for an
> # individual file that may not need all of that loaded. Instead, consider making
> # a separate helper file that requires the additional dependencies and performs
> # the additional setup, and require it from the spec files that actually need
> # it.
> #
> # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
> RSpec.configure
> do | config |
> # rspec-expectations config goes her# rYou can use an alternate
> # assertion/expectation library such as wrong or the stdlib/minitest
> # assertions if you prefer.
> config.expect_with: rspec
> do | expectations |
> # This option will default to `true` in RSpec 4. It makes the `description`
> # and `failure_message` of custom matchers include text (env) (base) iMac-de-Guido:identity-main webtechnicom$ # this file to always be loaded, without a need to explicitly require it in any
> # files.
> #
> # Given that it is always loaded, you are encouraged to keep this file as
> # light-weight as possible. Requiring heavyweight dependencies from this file
> # will add to the boot time of your test suite on EVERY test run, even for an
> # individual file that may not need all of that loaded. Instead, consider making
> # a separate helper file that requires the additional dependencies and performs
> # the additional setup, and require it from the spec files that actually need
> # it.
> #
> # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
> RSpec.configure
> do | config |
> # rspec-expectations config goes her# rYou can use an alternate
> # assertion/expectation library such as wrong or the stdlib/minitest
> # assertions if you prefer.
> config.expect_with: rspec
> do | expectations |
> # This option will default to `true` in RSpec 4. It makes the `description`
> # and `failure_message` of custom matchers include text for helper methods
> # defined using `chain`, e.g.:
> # be_bigger_than(2).and_s(env) (base) iMac-de-Guido:identity-main webtechnicom$ # files.
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ #
> # Given that it is always loaded, you are encouraged to keep this file as
> # light-weight as possible. Requiring heavyweight dependencies from this file
> # will add to the boot time of your test suite on EVERY test run, even for an
> # individual file that may not need all of that loaded. Instead, consider making
> # a separate helper file that requires the additional dependencies and performs
> # the additional setup, and require it from the spec files that actually need
> # it.
> #
> # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
> RSpec.configure
> do | config |
> # rspec-expectations config goes her# rYou can use an alternate
> # assertion/expectation library such as wrong or the stdlib/minitest
> # assertions if you prefer.
> config.expect_with: rspec
> do | expectations |
> # This option will default to `true` in RSpec 4. It makes the `description`
> # and `failure_message` of custom matchers include text for helper methods
> # defined using `chain`, e.g.:
> # be_bigger_than(2).and_smaller_than(4(env) (base) iMac-de-Guido:identity-main webtechnicom$ # Given that it is always loaded, you are encouraged to keep this file as
> # light-weight as possible. Requiring heavyweight dependencies from this file
> # will add to the boot time of your test suite on EVERY test run, even for an
> # individual file that may not need all of that loaded. Instead, consider making
> # a separate helper file that requires the additional dependencies and performs
> # the additional setup, and require it from the spec files that actually need
> # it.
> #
> # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
> RSpec.configure
> do | config |
> # rspec-expectations config goes her# rYou can use an alternate
> # assertion/expectation library such as wrong or the stdlib/minitest
> # assertions if you prefer.
> config.expect_with: rspec
> do | expectations |
> # This option will default to `true` in RSpec 4. It makes the `description`
> # and `failure_message` of custom matchers include text for helper methods
> # defined using `chain`, e.g.:
> # be_bigger_than(2).and_smaller_than(4).description
> # # => "be bigger than 2 and smaller than 4"
> # ...rathe(env) (base) iMac-de-Guido:identity-main webtechnicom$ # light-weight as possible. Requiring heavyweight dependencies from this file
> # will add to the boot time of your test suite on EVERY test run, even for an
> # individual file that may not need all of that loaded. Instead, consider making
> # a separate helper file that requires the additional dependencies and performs
> # the additional setup, and require it from the spec files that actually need
> # it.
> #
> # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
> RSpec.configure
> do | config |
> # rspec-expectations config goes her# rYou can use an alternate
> # assertion/expectation library such as wrong or the stdlib/minitest
> # assertions if you prefer.
> config.expect_with: rspec
> do | expectations |
> # This option will default to `true` in RSpec 4. It makes the `description`
> # and `failure_message` of custom matchers include text for helper methods
> # defined using `chain`, e.g.:
> # be_bigger_than(2).and_smaller_than(4).description
> # # => "be bigger than 2 and smaller than 4"
> # ...rather than:
> # # => "be bigger than 2"
> expectations.include_chain_clauses_in_c(env) (base) iMac-de-Guido:identity-main webtechnicom$ # will add to the boot time of your test suite on EVERY test run, even for an
> # individual file that may not need all of that loaded. Instead, consider making
> # a separate helper file that requires the additional dependencies and performs
> # the additional setup, and require it from the spec files that actually need
> # it.
> #
> # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
> RSpec.configure
> do | config |
> # rspec-expectations config goes her# rYou can use an alternate
> # assertion/expectation library such as wrong or the stdlib/minitest
> # assertions if you prefer.
> config.expect_with: rspec
> do | expectations |
> # This option will default to `true` in RSpec 4. It makes the `description`
> # and `failure_message` of custom matchers include text for helper methods
> # defined using `chain`, e.g.:
> # be_bigger_than(2).and_smaller_than(4).description
> # # => "be bigger than 2 and smaller than 4"
> # ...rather than:
> # # => "be bigger than 2"
> expectations.include_chain_clauses_in_custom_matcher_descripexpectations.include_chain_clauses_in_cgoes here. You can (env) (base) iMac-de-Guido:identity-main webtechnicom$ # individual file that may not need all of that loaded. Instead, consider making
> # a separate helper file that requires the additional dependencies and performs
> # the additional setup, and require it from the spec files that actually need
> # it.
> #
> # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
> RSpec.configure
> do | config |
> # rspec-expectations config goes her# rYou can use an alternate
> # assertion/expectation library such as wrong or the stdlib/minitest
> # assertions if you prefer.
> config.expect_with: rspec
> do | expectations |
> # This option will default to `true` in RSpec 4. It makes the `description`
> # and `failure_message` of custom matchers include text for helper methods
> # defined using `chain`, e.g.:
> # be_bigger_than(2).and_smaller_than(4).description
> # # => "be bigger than 2 and smaller than 4"
> # ...rather than:
> # # => "be bigger than 2"
> expectations.include_chain_clauses_in_custom_matcher_descripexpectations.include_chain_clauses_in_cgoes here. You can use an alternate test double
> # library (such as bogus or mocha) by changing the `(env) (base) iMac-de-Guido:identity-main webtechnicom$ # a separate helper file that requires the additional dependencies and performs
> # the additional setup, and require it from the spec files that actually need
> # it.
> #
> # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
> RSpec.configure
> do | config |
> # rspec-expectations config goes her# rYou can use an alternate
> # assertion/expectation library such as wrong or the stdlib/minitest
> # assertions if you prefer.
> config.expect_with: rspec
> do | expectations |
> # This option will default to `true` in RSpec 4. It makes the `description`
> # and `failure_message` of custom matchers include text for helper methods
> # defined using `chain`, e.g.:
> # be_bigger_than(2).and_smaller_than(4).description
> # # => "be bigger than 2 and smaller than 4"
> # ...rather than:
> # # => "be bigger than 2"
> expectations.include_chain_clauses_in_custom_matcher_descripexpectations.include_chain_clauses_in_cgoes here. You can use an alternate test double
> # library (such as bogus or mocha) by changing the `mock_with` option here.
> config.mock_with: rspec
> do | mocks |
> # Prevents you fr(env) (base) iMac-de-Guido:identity-main webtechnicom$ # the additional setup, and require it from the spec files that actually need
> # it.
> #
> # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
> RSpec.configure
> do | config |
> # rspec-expectations config goes her# rYou can use an alternate
> # assertion/expectation library such as wrong or the stdlib/minitest
> # assertions if you prefer.
> config.expect_with: rspec
> do | expectations |
> # This option will default to `true` in RSpec 4. It makes the `description`
> # and `failure_message` of custom matchers include text for helper methods
> # defined using `chain`, e.g.:
> # be_bigger_than(2).and_smaller_than(4).description
> # # => "be bigger than 2 and smaller than 4"
> # ...rather than:
> # # => "be bigger than 2"
> expectations.include_chain_clauses_in_custom_matcher_descripexpectations.include_chain_clauses_in_cgoes here. You can use an alternate test double
> # library (such as bogus or mocha) by changing the `mock_with` option here.
> config.mock_with: rspec
> do | mocks |
> # Prevents you from mocking or stubbing a method that does not exist on
> # a real object. This i(env) (base) iMac-de-Guido:identity-main webtechnicom$ # it.
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ #
> # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
> RSpec.configure
> do | config |
> # rspec-expectations config goes her# rYou can use an alternate
> # assertion/expectation library such as wrong or the stdlib/minitest
> # assertions if you prefer.
> config.expect_with: rspec
> do | expectations |
> # This option will default to `true` in RSpec 4. It makes the `description`
> # and `failure_message` of custom matchers include text for helper methods
> # defined using `chain`, e.g.:
> # be_bigger_than(2).and_smaller_than(4).description
> # # => "be bigger than 2 and smaller than 4"
> # ...rather than:
> # # => "be bigger than 2"
> expectations.include_chain_clauses_in_custom_matcher_descripexpectations.include_chain_clauses_in_cgoes here. You can use an alternate test double
> # library (such as bogus or mocha) by changing the `mock_with` option here.
> config.mock_with: rspec
> do | mocks |
> # Prevents you from mocking or stubbing a method that does not exist on
> # a real object. This is generall(env) (base) iMac-de-Guido:identity-main webtechnicom$ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ RSpec.configure
> do | config |
> # rspec-expectations config goes her# rYou can use an alternate
> # assertion/expectation library such as wrong or the stdlib/minitest
> # assertions if you prefer.
> config.expect_with: rspec
> do | expectations |
> # This option will default to `true` in RSpec 4. It makes the `description`
> # and `failure_message` of custom matchers include text for helper methods
> # defined using `chain`, e.g.:
> # be_bigger_than(2).and_smaller_than(4).description
> # # => "be bigger than 2 and smaller than 4"
> # ...rather than:
> # # => "be bigger than 2"
> expectations.include_chain_clauses_in_custom_matcher_descripexpectations.include_chain_clauses_in_cgoes here. You can use an alternate test double
> # library (such as bogus or mocha) by changing the `mock_with` option here.
> config.mock_with: rspec
> do | mocks |
> # Prevents you from mocking or stubbing a method that does not exist on
> # a real object. This is generally recommended, and will default to
> # `true` in RSpec 4.
> mocks.verify_partial_doublebash: RSpec.configure: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ do | config |
> bash: syntax error near unexpected token `do'
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # rspec-expectations config goes her# rYou can use an alternate
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # assertion/expectation library such as wrong or the stdlib/minitest
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # assertions if you prefer.
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ config.expect_with: rspec
> bash: config.expect_with:: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ do | expectations |
> bash: syntax error near unexpected token `do'
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # This option will default to `true` in RSpec 4. It makes the `description`
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # and `failure_message` of custom matchers include text for helper methods
> # defined using `chain`, e.g.:
> # be_bigger_than(2).and_smaller_than(4).description
> # # => "be bigger than 2 and smaller than 4"
> # ...rather than:
> # # => "be bigger than 2"
> expectations.include_chain_clauses_in_custom_matcher_descripexpectations.include_chain_clauses_in_cgoes here. You can use an alternate test double
> # library (such as bogus or mocha) by changing the `mock_with` option here.
> config.mock_with: rspec
> do | mocks |
> # Prevents you from mocking or stubbing a method that does not exist on
> # a real object. This is generally recommended, and will default to
> # `true` in RSpec 4.
> mocks.verify_partial_doubles = true
> end
>
> # This option will default to `:apply_to_host_groups` in RSpec 4 (and will
> # have no way to turn it off -- the option exists only for backwards
> # compatibility in RSpec 3). It causes shared context metadata to be
> # inherited by the metadata hash of host groups and examples, rather than
> # triggering imp# triggeri-inclusion in groups with matching metadata.
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # defined using `chain`, e.g.:
> # be_bigger_than(2).and_smaller_than(4).description
> # # => "be bigger than 2 and smaller than 4"
> # ...rather than:
> # # => "be bigger than 2"
> expectations.include_chain_clauses_in_custom_matcher_descripexpectations.include_chain_clauses_in_cgoes here. You can use an alternate test double
> # library (such as bogus or mocha) by changing the `mock_with` option here.
> config.mock_with: rspec
> do | mocks |
> # Prevents you from mocking or stubbing a method that does not exist on
> # a real object. This is generally recommended, and will default to
> # `true` in RSpec 4.
> mocks.verify_partial_doubles = true
> end
>
> # This option will default to `:apply_to_host_groups` in RSpec 4 (and will
> # have no way to turn it off -- the option exists only for backwards
> # compatibility in RSpec 3). It causes shared context metadata to be
> # inherited by the metadata hash of host groups and examples, rather than
> # triggering imp# triggeri-inclusion in groups with matching metadata.
> config.shared_contexconfig.sta_b(env) (base) iMac-de-Guido:identity-main webtechnicom$ # be_bigger_than(2).and_smaller_than(4).description
> # # => "be bigger than 2 and smaller than 4"
> # ...rather than:
> # # => "be bigger than 2"
> expectations.include_chain_clauses_in_custom_matcher_descripexpectations.include_chain_clauses_in_cgoes here. You can use an alternate test double
> # library (such as bogus or mocha) by changing the `mock_with` option here.
> config.mock_with: rspec
> do | mocks |
> # Prevents you from mocking or stubbing a method that does not exist on
> # a real object. This is generally recommended, and will default to
> # `true` in RSpec 4.
> mocks.verify_partial_doubles = true
> end
>
> # This option will default to `:apply_to_host_groups` in RSpec 4 (and will
> # have no way to turn it off -- the option exists only for backwards
> # compatibility in RSpec 3). It causes shared context metadata to be
> # inherited by the metadata hash of host groups and examples, rather than
> # triggering imp# triggeri-inclusion in groups with matching metadata.
> config.shared_contexconfig.sta_behavior =:apply_to_configroups
>
> # The settings below ar(env) (base) iMac-de-Guido:identity-main webtechnicom$ # # => "be bigger than 2 and smaller than 4"
> # ...rather than:
> # # => "be bigger than 2"
> expectations.include_chain_clauses_in_custom_matcher_descripexpectations.include_chain_clauses_in_cgoes here. You can use an alternate test double
> # library (such as bogus or mocha) by changing the `mock_with` option here.
> config.mock_with: rspec
> do | mocks |
> # Prevents you from mocking or stubbing a method that does not exist on
> # a real object. This is generally recommended, and will default to
> # `true` in RSpec 4.
> mocks.verify_partial_doubles = true
> end
>
> # This option will default to `:apply_to_host_groups` in RSpec 4 (and will
> # have no way to turn it off -- the option exists only for backwards
> # compatibility in RSpec 3). It causes shared context metadata to be
> # inherited by the metadata hash of host groups and examples, rather than
> # triggering imp# triggeri-inclusion in groups with matching metadata.
> config.shared_contexconfig.sta_behavior =:apply_to_configroups
>
> # The settings below are suggested to provi# Thegood initial experience
(env) (base) iMac-de-Guido:identity-main webtechnicom$ # ...rather than:
(env) (base) iMac-de-Guido:identi> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # ...rather than:
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # # => "be bigger than 2"
> expectations.include_chain_clauses_in_custom_matcher_descripexpectations.include_chain_clauses_in_cgoes here. You can use an alternate test double
> # library (such as bogus or mocha) by changing the `mock_with` option here.
> config.mock_with: rspec
> do | mocks |
> # Prevents you from mocking or stubbing a method that does not exist on
> # a real object. This is generally recommended, and will default to
> # `true` in RSpec 4.
> mocks.verify_partial_doubles = true
> end
>
> # This option will default to `:apply_to_host_groups` in RSpec 4 (and will
> # have no way to turn it off -- the option exists only for backwards
> # compatibility in RSpec 3). It causes shared context metadata to be
> # inherited by the metadata hash of host groups and examples, rather than
> # triggering imp# triggeri-inclusion in groups with matching metadata.
> config.shared_contexconfig.sta_behavior =:apply_to_configroups
>
> # The settings below are suggested to provi# Thegood initial experience
> # with RSpec, but feel free to customi# with RSr h(env) (base) iMac-de-Guido:identity-main webtechnicom$ expectations.include_chain_clauses_in_custom_matcher_descripexpectations.include_chain_clauses_in_cgoes here. You can use an alternate test double
> # library (such as bogus or mocha) by changing the `mock_with` option here.
> config.mock_with: rspec
> do | mocks |
> # Prevents you from mocking or stubbing a method that does not exist on
> # a real object. This is generally recommended, and will default to
> # `true` in RSpec 4.
> mocks.verify_partial_doubles = true
> end
>
> # This option will default to `:apply_to_host_groups` in RSpec 4 (and will
> # have no way to turn it off -- the option exists only for backwards
> # compatibility in RSpec 3). It causes shared context metadata to be
> # inherited by the metadata hash of host groups and examples, rather than
> # triggering imp# triggeri-inclusion in groups with matching metadata.
> config.shared_contexconfig.sta_behavior =:apply_to_configroups
>
> # The settings below are suggested to provi# Thegood initial experience
> # with RSpec, but feel free to customi# with RSr heart's content.
> =b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=bash: expectations.include_chain_clauses_in_custom_matcher_descripexpectations.include_chain_clauses_in_cgoes: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # library (such as bogus or mocha) by changing the `mock_with` option here.
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ config.mock_with: rspec
> do | mocks |
> # Prevents you from mocking or stubbing a method that does not exist on
> # a real object. This is generally recommended, and will default to
> # `true` in RSpec 4.
> mocks.verify_partial_doubles = true
> end
>
> # This option will default to `:apply_to_host_groups` in RSpec 4 (and will
> # have no way to turn it off -- the option exists only for backwards
> # compatibility in RSpec 3). It causes shared context metadata to be
> # inherited by the metadata hash of host groups and examples, rather than
> # triggering imp# triggeri-inclusion in groups with matching metadata.
> config.shared_contexconfig.sta_behavior =:apply_to_configroups
>
> # The settings below are suggested to provi# Thegood initial experience
> # with RSpec, but feel free to customi# with RSr heart's content.
> =b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=bg
> # is tagged with `:focus`, all examples get run. RSpec also provides
> # aliases for bash: config.mock_with:: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ do | mocks |
> bash: syntax error near unexpected token `do'
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # Prevents you from mocking or stubbing a method that does not exist on
> # a real object. This is generally recommended, and will default to
> # `true` in RSpec 4.
> mocks.verify_partial_doubles = true
> end
>
> # This option will default to `:apply_to_host_groups` in RSpec 4 (and will
> # have no way to turn it off -- the option exists only for backwards
> # compatibility in RSpec 3). It causes shared context metadata to be
> # inherited by the metadata hash of host groups and examples, rather than
> # triggering imp# triggeri-inclusion in groups with matching metadata.
> config.shared_contexconfig.sta_behavior =:apply_to_configroups
>
> # The settings below are suggested to provi# Thegood initial experience
> # with RSpec, but feel free to customi# with RSr heart's content.
> =b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=bg
> # is tagged with `:focus`, all examples get run. RSpec also provides
> # aliases for `it`, `describe`, and `context` that include `:focus`
> # metadata: `fit`, `fdescribe` a(env) (base) iMac-de-Guido:identity-main webtechnicom$ # a real object. This is generally recommended, and will default to
> # `true` in RSpec 4.
> mocks.verify_partial_doubles = true
> end
>
> # This option will default to `:apply_to_host_groups` in RSpec 4 (and will
> # have no way to turn it off -- the option exists only for backwards
> # compatibility in RSpec 3). It causes shared context metadata to be
> # inherited by the metadata hash of host groups and examples, rather than
> # triggering imp# triggeri-inclusion in groups with matching metadata.
> config.shared_contexconfig.sta_behavior =:apply_to_configroups
>
> # The settings below are suggested to provi# Thegood initial experience
> # with RSpec, but feel free to customi# with RSr heart's content.
> =b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=bg
> # is tagged with `:focus`, all examples get run. RSpec also provides
> # aliases for `it`, `describe`, and `context` that include `:focus`
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # `true` in RSpec 4.ibe` and `fcontext`, re#
> mocks.verify_partial_doubles = true
> end
>
> # This option will default to `:apply_to_host_groups` in RSpec 4 (and will
> # have no way to turn it off -- the option exists only for backwards
> # compatibility in RSpec 3). It causes shared context metadata to be
> # inherited by the metadata hash of host groups and examples, rather than
> # triggering imp# triggeri-inclusion in groups with matching metadata.
> config.shared_contexconfig.sta_behavior =:apply_to_configroups
>
> # The settings below are suggested to provi# Thegood initial experience
> # with RSpec, but feel free to customi# with RSr heart's content.
> =b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=bg
> # is tagged with `:focus`, all examples get run. RSpec also provides
> # aliases for `it`, `describe`, and `context` that include `:focus`
> # metadata: `fit`, `fdescribe` and `fcontext`, re# metadata: `fit`, `fdescribe` and `fcontext`, re#
> # Allows RSpec to per(env) (base) iMac-de-Guido:identity-main webtechnicom$ mocks.verify_partial_doubles = true
> end
>
> # This option will default to `:apply_to_host_groups` in RSpec 4 (and will
> # have no way to turn it off -- the option exists only for backwards
> # compatibility in RSpec 3). It causes shared context metadata to be
> # inherited by the metadata hash of host groups and examples, rather than
> # triggering imp# triggeri-inclusion in groups with matching metadata.
> config.shared_contexconfig.sta_behavior =:apply_to_configroups
>
> # The settings below are suggested to provi# Thegood initial experience
> # with RSpec, but feel free to customi# with RSr heart's content.
> =b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=bg
> # is tagged with `:focus`, all examples get run. RSpec also provides
> # aliases for `it`, `describe`, and `context` that include `:focus`
> # metadata: `fit`, `fdescribe` and `fcontext`, re# metadata: `fit`, `fdescribe` and `fcontext`, re#
> # Allows RSpec to persist some state between runs in orderbash: mocks.verify_partial_doubles: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ end
> bash: end: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # This option will default to `:apply_to_host_groups` in RSpec 4 (and will
> # have no way to turn it off -- the option exists only for backwards
> # compatibility in RSpec 3). It causes shared context metadata to be
> # inherited by the metadata hash of host groups and examples, rather than
> # triggering imp# triggeri-inclusion in groups with matching metadata.
> config.shared_contexconfig.sta_behavior =:apply_to_configroups
>
> # The settings below are suggested to provi# Thegood initial experience
> # with RSpec, but feel free to customi# with RSr heart's content.
> =b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=bg
> # is tagged with `:focus`, all examples get run. RSpec also provides
> # aliases for `it`, `describe`, and `context` that include `:focus`
> # metadata: `fit`, `fdescribe` and `fcontext`, re# metadata: `fit`, `fdescribe` and `fcontext`, re#
> # Allows RSpec to persist some state between runs in order to support
> # the `--only-failures` and `--next-failure` CLI options. We recommend(env) (base) iMac-de-Guido:identity-main webtechnicom$ # have no way to turn it off -- the option exists only for backwards
> # compatibility in RSpec 3). It causes shared context metadata to be
> # inherited by the metadata hash of host groups and examples, rather than
> # triggering imp# triggeri-inclusion in groups with matching metadata.
> config.shared_contexconfig.sta_behavior =:apply_to_configroups
>
> # The settings below are suggested to provi# Thegood initial experience
> # with RSpec, but feel free to customi# with RSr heart's content.
> =b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=bg
> # is tagged with `:focus`, all examples get run. RSpec also provides
> # aliases for `it`, `describe`, and `context` that include `:focus`
> # metadata: `fit`, `fdescribe` and `fcontext`, re# metadata: `fit`, `fdescribe` and `fcontext`, re#
> # Allows RSpec to persist some state between runs in order to support
> # the `--only-failures` and `--next-failure` CLI options. We recommend
> # you config# you config# you config# you config# you config# you co(env) (base) iMac-de-Guido:identity-main webtechnicom$ # compatibility in RSpec 3). It causes shared context metadata to be
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # inherited by the metadata hash of host groups and examples, rather than
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # triggering imp# triggeri-inclusion in groups with matching metadata.
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ config.shared_contexconfig.sta_behavior =:apply_to_configroups
> bash: config.shared_contexconfig.sta_behavior: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # The settings below are suggested to provi# Thegood initial experience
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # with RSpec, but feel free to customi# with RSr heart's content.
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ =b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=bg
> bash: =b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=b=bg: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # is tagged with `:focus`, all examples get run. RSpec also provides
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # aliases for `it`, `describe`, and `context` that include `:focus`
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # metadata: `fit`, `fdescribe` and `fcontext`, re# metadata: `fit`, `fdescribe` and `fcontext`, re#
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # Allows RSpec to persist some state between runs in order to support
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # the `--only-failures` and `--next-failure` CLI options. We recommend
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # you config# you config# you config# you config# you config# you config# youe_status_persistence_file_path = "spec/examples.txt"
> (env) (base) iMac-de-Guido:identity-main webtechnicom$
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # Limits the available syntax to the non-monkey patched syntax that is
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # recommended. For more details, see:
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
> # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
> config.disable_monkey_patching!
>
> # This setting enables warnings. It's recommended, but in some cases may
> # be too noisy due to issues in dependencies.
> config.warnings = true
>
> # Many RSpec users commonly either run the entire suite or an individual
> # file, and it's useful to allow more verbose output when running an
> # individual spec file.
> if config.files_to_run.one?
> # Use the documentation formatter for detailed output,
> # unless a formatter has already been configured
> # (e.g. via a command-line flag).
> config.default_formatter = "doc"
> end
>
> # Print the 10 slowest examples and example groups at the
> # end of the spec run, to help surface which specs are running
> # particularly slow.
> config.profile_examples = 10
>
> # Run specs in random order to surface order dependencies. If you find an
> # order dependency and want to debug it, you can fix th# order depend(env) (base) iMac-de-Guido:identity-main webtechnicom$ # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
> config.disable_monkey_patching!
>
> # This setting enables warnings. It's recommended, but in some cases may
> # be too noisy due to issues in dependencies.
> config.warnings = true
>
> # Many RSpec users commonly either run the entire suite or an individual
> # file, and it's useful to allow more verbose output when running an
> # individual spec file.
> if config.files_to_run.one?
> # Use the documentation formatter for detailed output,
> # unless a formatter has already been configured
> # (e.g. via a command-line flag).
> config.default_formatter = "doc"
> end
>
> # Print the 10 slowest examples and example groups at the
> # end of the spec run, to help surface which specs are running
> # particularly slow.
> config.profile_examples = 10
>
> # Run specs in random order to surface order dependencies. If you find an
> # order dependency and want to debug it, you can fix th# order dependency and want to debug it, you cted after each run.
> # --seed 1234
> cococococococococococococococococococococococococococococococococo(env) (base) iMac-de-Guido:identity-main webtechnicom$ config.disable_monkey_patching!
> bash: config.disable_monkey_patching!: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # This setting enables warnings. It's recommended, but in some cases may
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # be too noisy due to issues in dependencies.
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ config.warnings = true
> bash: config.warnings: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # Many RSpec users commonly either run the entire suite or an individual
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # file, and it's useful to allow more verbose output when running an
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ # individual spec file.
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ if config.files_to_run.one?
> > # Use the documentation formatter for detailed output,
> > # unless a formatter has already been configured
> > # (e.g. via a command-line flag).
> > config.default_formatter = "doc"
> > end
> >
> > # Print the 10 slowest examples and example groups at the
> # end of the spec run, to help surface which specs are running
> # particularly slow.
> config.profile_examples = 10
>
> # Run specs in random order to surface order dependencies. If you find an
> # order dependency and want to debug it, you can fix th# order dependency and want to debug it, you cted after each run.
> # --seed 1234
> cococococococococococococococococococococococococococococococococococococococococococoCLI option.
> # Setting this allows you to use `--seed` to deterministically reproduce
> # test failures related to randomization by passing the same `--seed` value
> # as the one that triggered the failure.
> Kernel.srand
> config.seed
> =end
> end
>
> SERVER_URL = ENV.fetch('SERVER_URL', 'http://localhost:4242')
> Dotenv.load
> Stripe.api_key = ENV['STRIPE_SECRET_KEY']
> Stripe.max_network_retries = 2
> Stripe.api_version = "2020-08-27"
>
>
> def server_url
> SERVER_URL
>
>
> end
>
>
> def get(path, *args, **kwargs)
> RestClient.get("#{SERVER_U> # end of the spec run, to help surface which specs are running
> > # particularly slow.
> > config.profile_examples = 10
> >
> > # Run specs in random order to surface order dependencies. If you find an
> > # order dependency and want to debug it, you can fix th# order dependency and want to debug it, you cted after each run.
> > # --seed 1234
> > cococococococococococococococococococococococococococococococococococococococococococoCLI option.
> > # Setting this allows you to use `--seed` to deterministically reproduce
> > # test failures related to randomization by passing the same `--seed` value
> > # as the one that triggered the failure.
> > Kernel.srand
> > config.seed
> > =end
> > end
> >
> > SERVER_URL = ENV.fetch('SERVER_URL', 'http://localhost:4242')
> bash: syntax error near unexpected token `('
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ Dotenv.load
> bash: Dotenv.load: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ Stripe.api_key = ENV['STRIPE_SECRET_KEY']
> bash: Stripe.api_key: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ Stripe.max_network_retries = 2
> bash: Stripe.max_network_retries: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ Stripe.api_version = "2020-08-27"
> bash: Stripe.api_version: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$
> (env) (base) iMac-de-Guido:identity-main webtechnicom$
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ def server_url
> bash: def: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ SERVER_URL
> bash: SERVER_URL: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$
> (env) (base) iMac-de-Guido:identity-main webtechnicom$
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ end
> bash: end: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$
> (env) (base) iMac-de-Guido:identity-main webtechnicom$
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ def get(path, *args, **kwargs)
> bash: syntax error near unexpected token `('
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ RestClient.get("#{SERVER_URL}#{path}", *args, **kwargs)
> bash: syntax error near unexpected token `"#{SERVER_URL}#{path}",'
> (env) (base) iMac-de-Guido:identity-main webtechnicom$
> (env) (base) iMac-de-Guido:identity-main webtechnicom$
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ enenenenenenenenenenenenenenenenenenenenenenenensponse = RestClient.get("#{SERVER_URL}#{path}", *args, **kwargs)
> bash: syntax error near unexpected token `('
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ JSON.parse(response.body)
> bash: syntax error near unexpected token `response.body'
> (env) (base) iMac-de-Guido:identity-main webtechnicom$
> (env) (base) iMac-de-Guido:identity-main webtechnicom$
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ end
> bash: end: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$
> (env) (base) iMac-de-Guido:identity-main webtechnicom$
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ def post_json(path, payload, **kwargs)
> bash: syntax error near unexpected token `('
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ defaults = {content_type::json}
> Command line interface to a user's defaults.
> Syntax:
>
> 'defaults' [-currentHost | -host <hostname>] followed by one of the following:
>
> read shows all defaults
> read <domain> shows defaults for given domain
> read <domain> <key> shows defaults for given domain, key
>
> read-type <domain> <key> shows the type for the given domain, key
>
> write <domain> <domain_rep> writes domain (overwrites existing)
> write <domain> <key> <value> writes key for domain
>
> rename <domain> <old_key> <new_key> renames old_key to new_key
>
> delete <domain> deletes domain
> delete <domain> <key> deletes key in domain
>
> import <domain> <path to plist> writes the plist at path to domain
> import <domain> - writes a plist from stdin to domain
> export <domain> <path to plist> saves domain as a binary plist to path
> export <domain> - writes domain as an xml plist to stdout
> domains lists all domains
> find <word> lists all entries containing word
> help print this help
>
> <domain> is ( <domain_name> | -app <application_name> | -globalDomain )
> or a path to a file omitting the '.plist' extension
>
> <value> is one of:
> <value_rep>
> -string <string_value>
> -data <hex_digits>
> -int[eger] <integer_value>
> -float <floating-point_value>
> -bool[ean] (true | false | yes | no)
> -date <date_rep>
> -array <value1> <value2> ...
> -array-add <value1> <value2> ...
> -dict <key1> <value1> <key2> <value2> ...
> -dict-add <key1> <value1> ...
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ response = RestClient.post(
> bash: syntax error near unexpected token `('
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ "#{SERVER_URL}#{path}",
> bash: #{SERVER_URL}#{path},: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ payload.to_json,
> bash: payload.to_json,: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ defaults.merge(**kwargs)
> bash: syntax error near unexpected token `**kwargs'
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ )
> bash: syntax error near unexpected token `)'
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ [JSON.parse(response.body), response.code]
> bash: syntax error near unexpected token `response.body'
> (env) (base) iMac-de-Guido:identity-main webtechnicom$
> (env) (base) iMac-de-Guido:identity-main webtechnicom$
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ rescue = > e
> bash: rescue: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ begin
> bash: begin: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ [JSON.parse(e.http_body), e.http_code]
> bash: syntax error near unexpected token `e.http_body'
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ rescue = > e
> bash: rescue: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ puts
> bash: puts: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ "Response:"
> bash: Response:: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ p
> bash: p: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ response
> bash: response: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ throw
> bash: throw: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ "Failed to parse failed response"
> bash: Failed to parse failed response: command not found
> (env) (base) iMac-de-Guido:identity-main webtechnicom$ end
> bash: end: command not found