Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,4 @@ build-iPhoneSimulator/
# Used by RuboCop. Remote config files pulled in from inherit_from directive.
# .rubocop-https?--*
.DS_Store
Gemfile.lock
37 changes: 0 additions & 37 deletions Gemfile.lock

This file was deleted.

3 changes: 2 additions & 1 deletion lib/typocop/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,8 @@ def accept_pull_request
@client.create_pull_request_review(
@repo_name,
PULL_ID,
event: 'APPROVE'
event: 'APPROVE',
body: 'Checked for typos — Everything looks great! :star: :tada: :sparkles:'
)
rescue Octokit::UnprocessableEntity => e
puts e
Expand Down
2 changes: 1 addition & 1 deletion lib/typocop/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Typocop
VERSION = '0.1.2'
VERSION = '0.1.3'
end
2 changes: 1 addition & 1 deletion typocop.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Gem::Specification.new do |s|
s.add_dependency 'octokit', '9.2.0'
s.add_dependency 'rugged', '~> 1.6.3'
s.add_dependency 'thor', '~> 1.3.2'
s.add_dependency 'typo_checker'
s.add_dependency 'typo_checker', '0.1.7'
s.executables = %w[typocop]
s.files.each do |file|
next unless file.start_with?('bin/')
Expand Down
Loading