booking_maker 0.1.0 → 0.1.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f66f7a08bbe77794d2685b3e1c80c5538be51dffb9a3691cd2e48bf8e543deb4
4
- data.tar.gz: ea66ab493f446a2bddcff0b34b081216960bb3ae3658f176ec88db205edad9d7
3
+ metadata.gz: dc5c7da67d6b1a60847631f92b8e255f564b0d4efeb61fcf0eed6469dd8689ec
4
+ data.tar.gz: 3e2a556f25e872810f2844aeb8e3eeaadb4c10b962dba1f12d018e613538241a
5
5
  SHA512:
6
- metadata.gz: 0663d095fa9e1844ff38c426d4ae6e44af880c9faeb37f1f1ad0543e5076902dae6c2884fabe5abe659552032c70e9e65a7b598627298802f4277c4bee0f9b38
7
- data.tar.gz: 4ad547f1b7ee7d7812e816a60e9ad5a885c60de44530c5bf276b8026c3b536656464fbc75dc0f669408e534900e4f6840b8904044e4577c34fc8ebf242bdc6eb
6
+ metadata.gz: 71d45470d8374ddfca6404d54b555ea55ffe0575dd0eacad246e0e4f3e88118c3674781650b80cac7118223a87b8f34d9712102a352740f4e6c75eefe3e41770
7
+ data.tar.gz: 0e3311dcd7d6ca2bc8ba53b3faeae2a074798ec3ce5b7e478cbfeb6b88c3fecd83c55fc334eb345a83801e675382ed051832f9241366eb05b79e8099cc364765
data/.rubocop.yml CHANGED
@@ -1,13 +1,214 @@
1
1
  AllCops:
2
- TargetRubyVersion: 2.4
2
+ EnabledByDefault: true
3
+
4
+ Style/AndOr:
5
+ Enabled: false
6
+
7
+ Style/ClassAndModuleChildren:
8
+ Enabled: false
9
+
10
+ Style/AsciiComments:
11
+ Enabled: false
12
+
13
+ Style/SymbolArray:
14
+ Enabled: false
15
+
16
+ Style/WordArray:
17
+ Enabled: false
18
+
19
+ Style/MixinGrouping:
20
+ Enabled: false
21
+
22
+ Style/RescueStandardError:
23
+ Enabled: false
24
+
25
+ Style/MethodCallWithArgsParentheses:
26
+ Enabled: false
27
+
28
+ Style/DocumentationMethod:
29
+ Enabled: false
30
+
31
+ Style/CollectionMethods:
32
+ PreferredMethods:
33
+ detect: "detect"
34
+ find: "detect"
35
+ inject: "inject"
36
+ reduce: "inject"
37
+
38
+ Style/Documentation:
39
+ Enabled: false
40
+
41
+ Style/DoubleNegation:
42
+ Enabled: false
43
+
44
+ Lint/ConstantResolution:
45
+ Enabled: false
46
+
47
+ Layout/DotPosition:
48
+ EnforcedStyle: trailing
49
+
50
+
51
+ Layout/EmptyLineAfterGuardClause:
52
+ Enabled: false
53
+
54
+ Style/EmptyElse:
55
+ EnforcedStyle: empty
56
+
57
+ Layout/ExtraSpacing:
58
+ Exclude:
59
+ - "db/migrate/*.rb"
60
+ - "*.gemspec"
61
+
62
+ Style/FormatString:
63
+ EnforcedStyle: percent
64
+
65
+ Style/MissingElse:
66
+ Enabled: false
67
+
68
+ Style/StringHashKeys:
69
+ Exclude:
70
+ - "spec/queries/*.rb"
71
+ - "*.gemspec"
72
+
73
+ Style/GuardClause:
74
+ MinBodyLength: 5
75
+
76
+ Style/HashSyntax:
77
+ EnforcedStyle: ruby19
78
+ Exclude:
79
+ - "**/*.rake"
80
+ - "Rakefile"
81
+
82
+
83
+ Style/IfUnlessModifier:
84
+ Enabled: false
85
+
86
+ Style/PreferredHashMethods:
87
+ EnforcedStyle: short
88
+
89
+ Style/Lambda:
90
+ Enabled: false
91
+
92
+ Style/NumericLiterals:
93
+ MinDigits: 7
94
+
95
+ Style/PerlBackrefs:
96
+ AutoCorrect: false
97
+
98
+ Style/RedundantSelf:
99
+ Enabled: false
100
+
101
+ Style/FrozenStringLiteralComment:
102
+ Enabled: false
103
+
104
+ Style/RedundantReturn:
105
+ AllowMultipleReturnValues: true
106
+
107
+ Style/RedundantArgument:
108
+ Enabled: false
109
+
110
+ Style/Semicolon:
111
+ Exclude:
112
+ - "spec/**/*"
113
+
114
+ Style/SignalException:
115
+ EnforcedStyle: only_raise
116
+
117
+ Style/MethodDefParentheses:
118
+ Enabled: false
3
119
 
4
120
  Style/StringLiterals:
5
- Enabled: true
6
121
  EnforcedStyle: double_quotes
7
122
 
8
123
  Style/StringLiteralsInInterpolation:
9
- Enabled: true
10
- EnforcedStyle: double_quotes
124
+ Enabled: false
125
+
126
+ Style/SingleLineBlockParams:
127
+ Enabled: false
128
+
129
+ Lint/UnderscorePrefixedVariableName:
130
+ Enabled: false
131
+
132
+ Lint/UnusedMethodArgument:
133
+ Enabled: false
134
+
135
+
136
+ Metrics/AbcSize:
137
+ Enabled: false
138
+
139
+ Metrics/CyclomaticComplexity:
140
+ Max: 40
141
+
142
+ Metrics/PerceivedComplexity:
143
+ Enabled: false
144
+
145
+ Metrics/BlockLength:
146
+ Enabled: false
11
147
 
12
148
  Layout/LineLength:
13
- Max: 120
149
+ Enabled: false
150
+
151
+
152
+ Metrics/MethodLength:
153
+ Enabled: false
154
+
155
+ Metrics/ClassLength:
156
+ Enabled: false
157
+
158
+ Naming/HeredocDelimiterNaming:
159
+ Enabled: false
160
+
161
+ Naming/AccessorMethodName:
162
+ Enabled: false
163
+
164
+ Metrics/ModuleLength:
165
+ Enabled: false
166
+
167
+ Lint/UnusedBlockArgument:
168
+ Enabled: false
169
+
170
+ Lint/RescueException:
171
+ Enabled: false
172
+
173
+ Naming/RescuedExceptionsVariableName:
174
+ Enabled: false
175
+
176
+ Bundler/GemComment:
177
+ Enabled: false
178
+
179
+ Style/SafeNavigation:
180
+ Enabled: false
181
+
182
+ Lint/NumberConversion:
183
+ Enabled: false
184
+ Style/ConstantVisibility:
185
+ Enabled: false
186
+ Style/MutableConstant:
187
+ Enabled: false
188
+ Style/Copyright:
189
+ Enabled: false
190
+ Style/MultilineTernaryOperator:
191
+ Enabled: false
192
+ Layout/MultilineAssignmentLayout:
193
+ Enabled: false
194
+ Style/Send:
195
+ Enabled: false
196
+ Style/RedundantFileExtensionInRequire:
197
+ Enabled: false
198
+ Style/ClassMethodsDefinitions:
199
+ Enabled: false
200
+ Style/GlobalStdStream:
201
+ Enabled: false
202
+ Layout/IndentationConsistency:
203
+ Enabled: false
204
+ Layout/IndentationWidth:
205
+ Enabled: false
206
+ Style/DateTime:
207
+ Enabled: false
208
+ Layout/HeredocIndentation:
209
+ Exclude:
210
+ - "lib/souls/init.rb"
211
+ Style/RaiseArgs:
212
+ Enabled: false
213
+ Metrics/BlockNesting:
214
+ Enabled: false
data/Gemfile CHANGED
@@ -8,5 +8,5 @@ gem "activesupport", "6.1.3.2"
8
8
  gem "parser", "3.0.1.1"
9
9
  gem "rake", "13.0.3"
10
10
  gem "rspec", "3.10.0"
11
- gem "rubocop", "1.16.1"
11
+ gem "rubocop", "1.17.0"
12
12
  gem "steep", "0.44.1"
data/Gemfile.lock ADDED
@@ -0,0 +1,91 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ booking_maker (0.1.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ activesupport (6.1.3.2)
10
+ concurrent-ruby (~> 1.0, >= 1.0.2)
11
+ i18n (>= 1.6, < 2)
12
+ minitest (>= 5.1)
13
+ tzinfo (~> 2.0)
14
+ zeitwerk (~> 2.3)
15
+ ast (2.4.2)
16
+ concurrent-ruby (1.1.9)
17
+ diff-lcs (1.4.4)
18
+ ffi (1.15.3)
19
+ i18n (1.8.10)
20
+ concurrent-ruby (~> 1.0)
21
+ language_server-protocol (3.16.0.1)
22
+ listen (3.5.1)
23
+ rb-fsevent (~> 0.10, >= 0.10.3)
24
+ rb-inotify (~> 0.9, >= 0.9.10)
25
+ minitest (5.14.4)
26
+ parallel (1.20.1)
27
+ parser (3.0.1.1)
28
+ ast (~> 2.4.1)
29
+ rainbow (3.0.0)
30
+ rake (13.0.3)
31
+ rb-fsevent (0.11.0)
32
+ rb-inotify (0.10.1)
33
+ ffi (~> 1.0)
34
+ rbs (1.2.1)
35
+ regexp_parser (2.1.1)
36
+ rexml (3.2.5)
37
+ rspec (3.10.0)
38
+ rspec-core (~> 3.10.0)
39
+ rspec-expectations (~> 3.10.0)
40
+ rspec-mocks (~> 3.10.0)
41
+ rspec-core (3.10.1)
42
+ rspec-support (~> 3.10.0)
43
+ rspec-expectations (3.10.1)
44
+ diff-lcs (>= 1.2.0, < 2.0)
45
+ rspec-support (~> 3.10.0)
46
+ rspec-mocks (3.10.2)
47
+ diff-lcs (>= 1.2.0, < 2.0)
48
+ rspec-support (~> 3.10.0)
49
+ rspec-support (3.10.2)
50
+ rubocop (1.17.0)
51
+ parallel (~> 1.10)
52
+ parser (>= 3.0.0.0)
53
+ rainbow (>= 2.2.2, < 4.0)
54
+ regexp_parser (>= 1.8, < 3.0)
55
+ rexml
56
+ rubocop-ast (>= 1.7.0, < 2.0)
57
+ ruby-progressbar (~> 1.7)
58
+ unicode-display_width (>= 1.4.0, < 3.0)
59
+ rubocop-ast (1.7.0)
60
+ parser (>= 3.0.1.1)
61
+ ruby-progressbar (1.11.0)
62
+ steep (0.44.1)
63
+ activesupport (>= 5.1)
64
+ language_server-protocol (>= 3.15, < 4.0)
65
+ listen (~> 3.0)
66
+ parallel (>= 1.0.0)
67
+ parser (>= 2.7)
68
+ rainbow (>= 2.2.2, < 4.0)
69
+ rbs (>= 1.2.0)
70
+ terminal-table (>= 2, < 4)
71
+ terminal-table (3.0.1)
72
+ unicode-display_width (>= 1.1.1, < 3)
73
+ tzinfo (2.0.4)
74
+ concurrent-ruby (~> 1.0)
75
+ unicode-display_width (2.0.0)
76
+ zeitwerk (2.4.2)
77
+
78
+ PLATFORMS
79
+ x86_64-linux
80
+
81
+ DEPENDENCIES
82
+ activesupport (= 6.1.3.2)
83
+ booking_maker!
84
+ parser (= 3.0.1.1)
85
+ rake (= 13.0.3)
86
+ rspec (= 3.10.0)
87
+ rubocop (= 1.17.0)
88
+ steep (= 0.44.1)
89
+
90
+ BUNDLED WITH
91
+ 2.2.20
data/exe/bm ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require "booking_maker"
3
+ puts "booking maker!"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BookingMaker
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: booking_maker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - POPPIN-FUMI
@@ -10,14 +10,15 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2021-06-10 00:00:00.000000000 Z
13
+ date: 2021-06-22 00:00:00.000000000 Z
14
14
  dependencies: []
15
15
  description: Booking Management App
16
16
  email:
17
17
  - f.kawasaki@elsoul.nl
18
18
  - s.kishi@elsoul.nl
19
19
  - jamesoneve@gmail.com
20
- executables: []
20
+ executables:
21
+ - bm
21
22
  extensions: []
22
23
  extra_rdoc_files: []
23
24
  files:
@@ -28,12 +29,14 @@ files:
28
29
  - CHANGELOG.md
29
30
  - CODE_OF_CONDUCT.md
30
31
  - Gemfile
32
+ - Gemfile.lock
31
33
  - LICENSE.txt
32
34
  - README.md
33
35
  - Rakefile
34
36
  - bin/console
35
37
  - bin/setup
36
38
  - booking_maker.gemspec
39
+ - exe/bm
37
40
  - lib/booking_maker.rb
38
41
  - lib/booking_maker/version.rb
39
42
  homepage: https://github.com/elsoul/booking_maker