-
-
Notifications
You must be signed in to change notification settings - Fork 20
Drop Ruby 1.8 support and clean up #66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
HashNotAdam
wants to merge
22
commits into
fog:master
Choose a base branch
from
HashNotAdam:fix/cop
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
9466845
Include Ruby 2.2, 2.3, and 2.4 in Travis tests
HashNotAdam 58ac795
Remove test on Fixnum since it has been removed from Ruby 2.4
HashNotAdam a0a4e39
Include XMLRPC gem if running on Ruby 2.4+
HashNotAdam f3f7d98
Replace outdated Rubocop parameter
HashNotAdam 38056d3
Reduce duplication when defining methods
HashNotAdam 944ed55
Exclude spec directory in Rubocop checks
HashNotAdam e9f9239
:cop: Use double-quoted strings
HashNotAdam f5999d2
:cop: Remove useless method arguments
HashNotAdam d489f3d
:cop: Remove useless assignment to a local variable
HashNotAdam e6efad4
:cop: Ensure there is only one space between a method name and the fi…
HashNotAdam 7f9813b
:cop: Clarify ambiguous splat operator
HashNotAdam 9396779
:cop: Replace gsub with tr for simple string comparisons
HashNotAdam eca53b6
:cop: Disable test for class length on Fog::Compute::XenServer
HashNotAdam cf0faab
:cop: Underscore unused block argument
HashNotAdam 25f1feb
:cop: Reduce cyclomatic complexity
HashNotAdam 42d2574
:cop: Reduce duplication
HashNotAdam 54a3323
Remove debug code incorrectly commited
HashNotAdam 03d8775
Remove %i since it is not supported in Ruby < 2.0
HashNotAdam afdcf9d
:cop: Reduce duplication
HashNotAdam 73c2911
Integrate get_by_reference_or_name_or_uuid into method_missing
HashNotAdam 325e077
:cop: Use Ruby 1.9 hash syntax
HashNotAdam b903c05
:cop: Make Hound use the Rubocop settings
HashNotAdam File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| ruby: | ||
| config_file: .rubocop.yml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| source 'https://rubygems.org' | ||
| source "https://rubygems.org" | ||
|
|
||
| # Specify your gem's dependencies in fog-xenserver.gemspec | ||
| gemspec |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,11 +1,11 @@ | ||
| require 'bundler/gem_tasks' | ||
| require 'rake/testtask' | ||
| require "bundler/gem_tasks" | ||
| require "rake/testtask" | ||
|
|
||
| Rake::TestTask.new do |t| | ||
| t.libs.push %w(spec) | ||
| t.test_files = FileList['spec/**/*_spec.rb'] | ||
| t.test_files = FileList["spec/**/*_spec.rb"] | ||
| t.verbose = true | ||
| end | ||
|
|
||
| desc 'Default Task' | ||
| task :default => [ :test ] | ||
| desc "Default Task" | ||
| task default: [ :test ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❤️ 💙 💚 💛 💜