labrat 0.1.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 0e802b06cf5972204efb98df5db37f8fda029e3c38cf3e8374fd90dfb2189376
4
+ data.tar.gz: 2ee7c88054a40f3b254eeec13cc35e521007386e94b1cd23c36cd8c55974003b
5
+ SHA512:
6
+ metadata.gz: 97888d172c61536505bd8fb25eb9c72a8bd739579c4d5a2c85402db3f7f9b3c877747a9b6651b3c43cff1e432815376c4a0ed6a72d8fd691c042b041eef576e2
7
+ data.tar.gz: afa1beada7375558d7cdcf44a550ea2d2b3404e2c4d01c0f171fa667549c10d22129e8a4c7037999118c3372b7c058b104ae76515be35ff5d8a6d2479711ec87
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ /.bundle/
4
+ /.yardoc
5
+ /_yardoc/
6
+ /coverage/
7
+ /vendor/
8
+ /doc/
9
+ /pkg/
10
+ /spec/reports/
11
+ /tmp/
12
+
13
+ # rspec failure tracking
14
+ .rspec_status
15
+ label.pdf
16
+ labrat.pdf
17
+ /vendor-templates/
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,18 @@
1
+ inherit_gem:
2
+ rubocop-shopify: rubocop.yml
3
+
4
+ # require:
5
+ # - rubocop-rspec
6
+ # - rubocop-performance
7
+
8
+ AllCops:
9
+ TargetRubyVersion: 2.7
10
+
11
+ Style/StringLiteralsInInterpolation:
12
+ Enabled: true
13
+
14
+ Layout/LineLength:
15
+ Max: 120
16
+
17
+ Style/MethodCallWithArgsParentheses:
18
+ Enabled: false
data/.travis.yml ADDED
@@ -0,0 +1,13 @@
1
+ language: ruby
2
+ before_install:
3
+ gem install bundler
4
+ script:
5
+ bundle exec rake spec
6
+ dist:
7
+ - linux
8
+ - osx
9
+ rvm:
10
+ - 2.5
11
+ - 2.6
12
+ - 2.7
13
+ - 3.0
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2021-07-28
4
+
5
+ - Initial release
data/Gemfile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in labrat.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+
10
+ gem "rspec", "~> 3.0"
11
+
12
+ gem "rubocop", "~> 1.7"
data/Gemfile.lock ADDED
@@ -0,0 +1,102 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ labrat (0.1.13)
5
+ activesupport
6
+ fat_core
7
+ prawn (~> 2.0)
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ activesupport (6.1.4.1)
13
+ concurrent-ruby (~> 1.0, >= 1.0.2)
14
+ i18n (>= 1.6, < 2)
15
+ minitest (>= 5.1)
16
+ tzinfo (~> 2.0)
17
+ zeitwerk (~> 2.3)
18
+ ast (2.4.2)
19
+ byebug (11.1.3)
20
+ coderay (1.1.3)
21
+ concurrent-ruby (1.1.9)
22
+ damerau-levenshtein (1.3.3)
23
+ diff-lcs (1.4.4)
24
+ fat_core (4.9.2)
25
+ activesupport
26
+ damerau-levenshtein
27
+ i18n (1.8.11)
28
+ concurrent-ruby (~> 1.0)
29
+ method_source (1.0.0)
30
+ minitest (5.14.4)
31
+ parallel (1.20.1)
32
+ parser (3.0.2.0)
33
+ ast (~> 2.4.1)
34
+ pdf-core (0.9.0)
35
+ prawn (2.4.0)
36
+ pdf-core (~> 0.9.0)
37
+ ttfunk (~> 1.7)
38
+ pry (0.13.1)
39
+ coderay (~> 1.1)
40
+ method_source (~> 1.0)
41
+ pry-byebug (3.9.0)
42
+ byebug (~> 11.0)
43
+ pry (~> 0.13.0)
44
+ rainbow (3.0.0)
45
+ rake (13.0.6)
46
+ regexp_parser (2.1.1)
47
+ rexml (3.2.5)
48
+ rspec (3.10.0)
49
+ rspec-core (~> 3.10.0)
50
+ rspec-expectations (~> 3.10.0)
51
+ rspec-mocks (~> 3.10.0)
52
+ rspec-core (3.10.1)
53
+ rspec-support (~> 3.10.0)
54
+ rspec-expectations (3.10.1)
55
+ diff-lcs (>= 1.2.0, < 2.0)
56
+ rspec-support (~> 3.10.0)
57
+ rspec-mocks (3.10.2)
58
+ diff-lcs (>= 1.2.0, < 2.0)
59
+ rspec-support (~> 3.10.0)
60
+ rspec-support (3.10.2)
61
+ rubocop (1.18.4)
62
+ parallel (~> 1.10)
63
+ parser (>= 3.0.0.0)
64
+ rainbow (>= 2.2.2, < 4.0)
65
+ regexp_parser (>= 1.8, < 3.0)
66
+ rexml
67
+ rubocop-ast (>= 1.8.0, < 2.0)
68
+ ruby-progressbar (~> 1.7)
69
+ unicode-display_width (>= 1.4.0, < 3.0)
70
+ rubocop-ast (1.8.0)
71
+ parser (>= 3.0.1.1)
72
+ rubocop-performance (1.11.5)
73
+ rubocop (>= 1.7.0, < 2.0)
74
+ rubocop-ast (>= 0.4.0)
75
+ rubocop-rspec (2.4.0)
76
+ rubocop (~> 1.0)
77
+ rubocop-ast (>= 1.1.0)
78
+ rubocop-shopify (2.2.0)
79
+ rubocop (~> 1.18)
80
+ ruby-progressbar (1.11.0)
81
+ ttfunk (1.7.0)
82
+ tzinfo (2.0.4)
83
+ concurrent-ruby (~> 1.0)
84
+ unicode-display_width (2.0.0)
85
+ zeitwerk (2.5.1)
86
+
87
+ PLATFORMS
88
+ x86_64-linux
89
+
90
+ DEPENDENCIES
91
+ labrat!
92
+ pry (~> 0.13.0)
93
+ pry-byebug (>= 3.9.0)
94
+ rake (~> 13.0)
95
+ rspec (~> 3.0)
96
+ rubocop (~> 1.7)
97
+ rubocop-performance
98
+ rubocop-rspec
99
+ rubocop-shopify
100
+
101
+ BUNDLED WITH
102
+ 2.2.26