-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #88: URI parsing issue when using API endpoints from the gitconfig
Closes #90, #88 LGTM given by: @nhance Squashed commit of the following: commit fe72200 Author: Valentino <[email protected]> Date: Mon Mar 16 12:11:15 2015 -0400 Remove ruby version from Gemfile commit 75a88c6 Author: Valentino <[email protected]> Date: Mon Mar 16 12:06:44 2015 -0400 Fix URI parsing issue when using API endpoints from the gitconfig commit afeae6c Author: Valentino <[email protected]> Date: Mon Mar 16 10:46:40 2015 -0400 Added multi-depency to tests
- Loading branch information
Valentino
committed
Mar 16, 2015
1 parent
ab24a43
commit 7bc9b7f
Showing
8 changed files
with
55 additions
and
24 deletions.
There are no files selected for viewing
This file contains 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,3 +1,4 @@ | ||
pkg/* | ||
**/.DS_Store | ||
.rspec | ||
gemfiles |
This file contains 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,12 @@ | ||
appraise "latest-gli-release" do | ||
gem "gli" | ||
end | ||
|
||
appraise "latest-github-api-release" do | ||
gem "github_api" | ||
end | ||
|
||
appraise "current-reflow-locked-versions" do | ||
gem "gli", "2.12.2" | ||
gem "github_api", "0.12.3" | ||
end |
This file contains 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,5 +1,3 @@ | ||
source 'https://rubygems.org' | ||
|
||
ruby "2.1.5" | ||
|
||
gemspec |
This file contains 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 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,10 +1,11 @@ | ||
#!/usr/bin/env rake | ||
require 'rake' | ||
require 'bundler/gem_tasks' | ||
require 'bundler/setup' | ||
require 'rspec/core/rake_task' | ||
|
||
Dir[File.join(File.dirname(__FILE__),'lib/tasks/*.rake')].each { |f| load f } | ||
|
||
RSpec::Core::RakeTask.new(:spec) | ||
|
||
task :default => [:spec] |
This file contains 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,11 @@ | ||
dependencies: | ||
override: | ||
- 'rvm-exec 2.0.0-p643 bundle install' | ||
- 'rvm-exec 2.1.5 bundle install' | ||
- 'rvm-exec 2.2.1 bundle install' | ||
|
||
test: | ||
override: | ||
- 'rvm-exec 2.0.0-p643 bundle exec rake' | ||
- 'rvm-exec 2.1.5 bundle exec rake' | ||
- 'rvm-exec 2.2.1 bundle exec rake' |
This file contains 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 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