-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GHI-5855 - Added the type field to the Ey::Core::Client::Alert class …
…(updated ey-core 3.6.5) (#139) * Changed gem version to debug one * Added debug messages to check if it appears in the output * Added `type` field to `Ey::Core::Client::Alert` class * Added bin/console script * Added Idea IDE related files to ``.gitignore` * Fixed typo in debug message and changed the gem version * Added homepage * Removed debug message * Fixed .gitignore
- Loading branch information
Showing
5 changed files
with
10 additions
and
2 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 |
---|---|---|
|
@@ -21,3 +21,6 @@ tmp | |
.rspec | ||
.gemrelease | ||
tags | ||
|
||
# Idea IDE files | ||
.idea/ |
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,4 @@ | ||
#!/usr/bin/env ruby | ||
|
||
require "irb" | ||
IRB.start(__FILE__) |
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |gem| | |
gem.email = ["[email protected]"] | ||
gem.description = %q{Engine Yard Core API Ruby Client} | ||
gem.summary = %q{Client library providing real and mock functionality for accessing Engine Yard's Core API} | ||
gem.homepage = "" | ||
gem.homepage = "https://github.com/engineyard/core-client-rb" | ||
|
||
gem.files = `git ls-files`.split($/) | ||
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } | ||
|
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,5 +1,5 @@ | ||
module Ey | ||
module Core | ||
VERSION = "3.6.5" | ||
VERSION = "3.6.6" | ||
end | ||
end |