skunk 0.3.1 → 0.5.0

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.
data/.travis.yml DELETED
@@ -1,5 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 2.5
4
- - 2.6
5
- - 2.7
data/Gemfile.lock DELETED
@@ -1,119 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- skunk (0.3.1)
5
- rubycritic (~> 4.2.1)
6
- terminal-table (~> 1.8.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- addressable (2.7.0)
12
- public_suffix (>= 2.0.2, < 5.0)
13
- ansi (1.5.0)
14
- ast (2.4.0)
15
- axiom-types (0.1.1)
16
- descendants_tracker (~> 0.0.4)
17
- ice_nine (~> 0.11.0)
18
- thread_safe (~> 0.3, >= 0.3.1)
19
- byebug (11.0.1)
20
- codeclimate-engine-rb (0.4.1)
21
- virtus (~> 1.0)
22
- coercible (1.0.0)
23
- descendants_tracker (~> 0.0.1)
24
- descendants_tracker (0.0.4)
25
- thread_safe (~> 0.3, >= 0.3.1)
26
- docile (1.3.2)
27
- equalizer (0.0.11)
28
- erubis (2.7.0)
29
- flay (2.12.1)
30
- erubis (~> 2.7.0)
31
- path_expander (~> 1.0)
32
- ruby_parser (~> 3.0)
33
- sexp_processor (~> 4.0)
34
- flog (4.6.3)
35
- path_expander (~> 1.0)
36
- ruby_parser (~> 3.1, > 3.1.0)
37
- sexp_processor (~> 4.8)
38
- ice_nine (0.11.2)
39
- jaro_winkler (1.5.4)
40
- json (2.2.0)
41
- kwalify (0.7.2)
42
- launchy (2.4.3)
43
- addressable (~> 2.3)
44
- minitest (5.8.5)
45
- minitest-around (0.5.0)
46
- minitest (~> 5.0)
47
- parallel (1.19.0)
48
- parser (2.6.5.0)
49
- ast (~> 2.4.0)
50
- path_expander (1.1.0)
51
- psych (3.1.0)
52
- public_suffix (4.0.1)
53
- rainbow (3.0.0)
54
- rake (10.5.0)
55
- reek (5.4.1)
56
- codeclimate-engine-rb (~> 0.4.0)
57
- kwalify (~> 0.7.0)
58
- parser (>= 2.5.0.0, < 2.7, != 2.5.1.1)
59
- psych (~> 3.1.0)
60
- rainbow (>= 2.0, < 4.0)
61
- rubocop (0.76.0)
62
- jaro_winkler (~> 1.5.1)
63
- parallel (~> 1.10)
64
- parser (>= 2.6)
65
- rainbow (>= 2.2.2, < 4.0)
66
- ruby-progressbar (~> 1.7)
67
- unicode-display_width (>= 1.4.0, < 1.7)
68
- ruby-progressbar (1.10.1)
69
- ruby_parser (3.14.1)
70
- sexp_processor (~> 4.9)
71
- rubycritic (4.2.2)
72
- flay (~> 2.8)
73
- flog (~> 4.4)
74
- launchy (= 2.4.3)
75
- parser (~> 2.6.0)
76
- rainbow (~> 3.0)
77
- reek (~> 5.0, < 6.0)
78
- ruby_parser (~> 3.8)
79
- simplecov (~> 0.17.0)
80
- tty-which (~> 0.4.0)
81
- virtus (~> 1.0)
82
- sexp_processor (4.13.0)
83
- simplecov (0.17.1)
84
- docile (~> 1.1)
85
- json (>= 1.8, < 3)
86
- simplecov-html (~> 0.10.0)
87
- simplecov-console (0.5.0)
88
- ansi
89
- simplecov
90
- terminal-table
91
- simplecov-html (0.10.2)
92
- terminal-table (1.8.0)
93
- unicode-display_width (~> 1.1, >= 1.1.1)
94
- thread_safe (0.3.6)
95
- tty-which (0.4.1)
96
- unicode-display_width (1.6.0)
97
- virtus (1.0.5)
98
- axiom-types (~> 0.1)
99
- coercible (~> 1.0)
100
- descendants_tracker (~> 0.0, >= 0.0.3)
101
- equalizer (~> 0.0, >= 0.0.9)
102
-
103
- PLATFORMS
104
- ruby
105
-
106
- DEPENDENCIES
107
- bundler (~> 2.0)
108
- byebug (~> 11)
109
- minitest (~> 5.8.4)
110
- minitest-around (~> 0.5.0)
111
- rake (~> 10.0)
112
- reek (~> 5.4.0)
113
- rubocop (< 1.0)
114
- simplecov (~> 0.17.1)
115
- simplecov-console (= 0.5.0)
116
- skunk!
117
-
118
- BUNDLED WITH
119
- 2.0.2
data/bin/console DELETED
@@ -1,16 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- #!/usr/bin/env ruby
4
-
5
- require "bundler/setup"
6
- require "skunk"
7
-
8
- # You can add fixtures and/or initialization code here to make experimenting
9
- # with your gem easier. You can also use a different console, if you like.
10
-
11
- # (If you use this, don't forget to add pry to your Gemfile!)
12
- # require "pry"
13
- # Pry.start
14
-
15
- require "irb"
16
- IRB.start(__FILE__)
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here