We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83a5572 commit 64ce488Copy full SHA for 64ce488
4 files changed
.gitignore
@@ -1,24 +1,18 @@
1
Gemfile.lock
2
3
-/tmp
4
-/dev
5
-/gems
6
/coverage
7
-/doc
8
/debug.rb
9
-
10
-/_local_jekyll
11
-/_site
+/dev
+/doc
+/gems
12
/spec/status.txt
+/tmp
13
14
.sass-cache
15
.bundle
16
.byebug_history
17
.yardoc
18
-_index
19
madness.log
20
nohup.out
21
toc.txt
22
toc.html
23
24
-*.sublime-*
.rubocop.yml
@@ -9,12 +9,14 @@ inherit_gem:
AllCops:
TargetRubyVersion: 2.7
- SuggestExtensions: false
+ Exclude:
+ - dev/**/*
+ - debug.rb
# Allow `$stderr.puts` in a command line
Style/StderrPuts:
Exclude:
- - 'lib/madness/command_line.rb'
+ - lib/madness/command_line.rb
# Allow longer examples
RSpec/ExampleLength:
Runfile.bak
madness.gemspec
@@ -16,15 +16,15 @@ Gem::Specification.new do |s|
s.required_ruby_version = '>= 2.7'
s.add_runtime_dependency 'addressable', '~> 2.7'
- s.add_runtime_dependency 'coderay', '~> 1.1'
- s.add_runtime_dependency 'colsole', '~> 0.7.2'
- s.add_runtime_dependency 'commonmarker', '~> 0.23', '>= 0.23.4'
+ s.add_runtime_dependency 'colsole', '~> 0.5'
s.add_runtime_dependency 'docopt', '~> 0.6'
- s.add_runtime_dependency 'extended_yaml', '~> 0.2.3'
+ s.add_runtime_dependency 'extended_yaml', '~> 0.2'
s.add_runtime_dependency 'naturally', '~> 2.2'
25
s.add_runtime_dependency 'os', '~> 1.0'
26
s.add_runtime_dependency 'puma', '>= 5.1'
+ s.add_runtime_dependency 'redcarpet', '~> 3.5'
27
s.add_runtime_dependency 'requires', '~> 1.0'
+ s.add_runtime_dependency 'rouge', '~> 4.0'
28
s.add_runtime_dependency 'sinatra', '~> 3.0'
29
s.add_runtime_dependency 'slim', '~> 4.0'
30
0 commit comments