Skip to content
This repository was archived by the owner on Oct 22, 2020. It is now read-only.

Commit 773ad5a

Browse files
committed
Merge branch 'development'
2 parents b062c38 + 4697ee0 commit 773ad5a

File tree

414 files changed

+1891
-105
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

414 files changed

+1891
-105
lines changed

.rubocop.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,9 @@ Lint/UnusedMethodArgument:
5252
Style/ClassVars:
5353
Enabled: false
5454
Description: 'There are genuine use cases for using class vars.'
55+
56+
Metrics/BlockLength:
57+
Enabled: true
58+
Description: 'Some unit tests are going to be naturally long; no need to flag this up.'
59+
Exclude:
60+
- spec/**/*

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.1
1+
2.4.2

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: ruby
22
rvm:
3-
- 2.3.4
4-
- 2.4.1
3+
- 2.3.5
4+
- 2.4.2
55
before_install:
66
- "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
77
script: bundle exec rspec

Gemfile

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1+
# frozen_string_literal: true
2+
13
source 'https://rubygems.org'
24
gem 'colorize', '>=0.8.1'
35
gem 'mime-types', '>=3.1'
4-
gem 'nokogiri', '~>1.8.0'
6+
gem 'nokogiri', '~>1.8.1'
57
gem 'require_all', '~>1.4'
6-
gem 'rubyzip', '~>1.2'
7-
gem 'slop', '~>4.5'
8-
gem 'typhoeus', '~>1.1.2'
8+
gem 'rubyzip', '~>1.2.1'
9+
gem 'slop', '~>4.6.0'
10+
gem 'typhoeus', '~>1.3.0'
911

1012
group :test do
11-
gem 'rspec', '~>3.5'
13+
gem 'rspec', '~>3.7'
1214
end

README.md

Lines changed: 1 addition & 1 deletion

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.7
1+
1.8

env.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'date'
24
require 'fileutils'
35
require 'json'

github_updater.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'json'
24
require 'typhoeus'
35
require 'fileutils'

lib/cli/auto_complete.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module Cli
24
# Functionality for configuring auto-complete functionality in Readline lib.
35
module AutoComplete

lib/cli/console.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'readline'
24

35
require 'modules'

0 commit comments

Comments
 (0)