Skip to content

Commit

Permalink
Fix rubocop warning;
Browse files Browse the repository at this point in the history
  • Loading branch information
dejan committed Jan 4, 2025
1 parent 165430e commit 251532e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
7 changes: 7 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,10 @@
source 'http://rubygems.org'

gemspec

group :development, :test do
gem 'rake', '~> 13.0.6'
gem 'rspec', '~> 3.3'
gem 'rspec_junit_formatter', '~> 0.2'
gem 'rubocop', '~> 1.23'
end
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,12 @@ comment = Comment.new(text: 'Hey!')
comment.text_html # => '<p>Hey!</p>'
```

## Development

### Run Rubocop



## Licence

AutoHtml is released under the [MIT License](https://raw.githubusercontent.com/dejan/auto_html/master/MIT-LICENSE).
5 changes: 0 additions & 5 deletions auto_html.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,6 @@ Gem::Specification.new do |gem|

gem.required_ruby_version = '>= 2.5.0'

gem.add_development_dependency 'rake', '~> 13.0.6'
gem.add_development_dependency 'rspec', '~> 3.3'
gem.add_development_dependency 'rspec_junit_formatter', '~> 0.2'
gem.add_development_dependency 'rubocop', '~> 1.23'

gem.files = Dir['Rakefile', '{bin,lib,man,test,spec}/**/*',
'README*', 'LICENSE'] & `git ls-files -z`.split("\0")
gem.metadata = {
Expand Down

0 comments on commit 251532e

Please sign in to comment.