Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickdavey committed Apr 2, 2023
1 parent 75c5ff0 commit 343ccde
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
5 changes: 1 addition & 4 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,12 @@ Style/SymbolArray:
Style/SafeNavigation:
Enabled: false

Layout/IndentHeredoc:
Layout/HeredocIndentation:
Enabled: false

Layout/FirstParameterIndentation:
EnforcedStyle: consistent

Rails/DynamicFindBy:
Enabled: false

Layout/EmptyLines:
Enabled: false

Expand Down
13 changes: 7 additions & 6 deletions vimwiki_markdown.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,25 +12,26 @@ Gem::Specification.new do |spec|
spec.description = %q{Converts a vimwiki markdown file to html. It parses [[links]] and has support for syntax highlighting.}
spec.homepage = "https://github.com/patrickdavey/wimwiki_markdown"
spec.license = "MIT"
spec.required_ruby_version = '>= 2.3.8'
spec.required_ruby_version = ">= 2.7"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]

spec.add_development_dependency "bundler"
spec.add_development_dependency "guard-rspec", "~> 4.3"
spec.add_development_dependency "pry", "~> 0.12"
spec.add_development_dependency "rake", "~> 12.3"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "pry", "~> 0.12"
spec.add_development_dependency "rspec-its", "~> 1.1"
spec.add_development_dependency "rspec-html-matchers", "~> 0.6.1"
spec.add_development_dependency "guard-rspec", "~> 4.3"
spec.add_development_dependency "rspec-its", "~> 1.1"
spec.add_development_dependency "rubocop"
spec.add_development_dependency "solargraph"

spec.add_runtime_dependency "activesupport", "~> 4.1"
spec.add_runtime_dependency "github-markup", "~> 3.0"
spec.add_runtime_dependency "commonmarker", "~> 0.23.4"
spec.add_runtime_dependency "escape_utils", "~> 1.2"
spec.add_runtime_dependency "github-markup", "~> 3.0"
spec.add_runtime_dependency "html-pipeline", "~> 2.0"
spec.add_runtime_dependency "rouge", "~> 4.0"
spec.add_runtime_dependency "escape_utils", "~> 1.2"
end

0 comments on commit 343ccde

Please sign in to comment.