-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'jwir3/#25-bubblez-rename'
- Loading branch information
Showing
14 changed files
with
242 additions
and
238 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,4 +1,4 @@ | ||
source 'https://rubygems.org' | ||
|
||
# Specify your gem's dependencies in bubbles.gemspec | ||
# Specify your gem's dependencies in bubblez.gemspec | ||
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
This file was deleted.
Oops, something went wrong.
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,28 @@ | ||
require "bubblez/version" | ||
require 'bubblez/config' | ||
require 'base64' | ||
require 'bubblez/rest_client_resources' | ||
require 'bubblez/rest_environment' | ||
require 'bubblez/version' | ||
require 'rest-client' | ||
require 'json' | ||
|
||
module Bubblez | ||
class Resources < RestClientResources | ||
def initialize(api_key='') | ||
super | ||
|
||
@package_name = Bubblez::VersionInformation.package_name | ||
@version_name = Bubblez::VersionInformation.version_name | ||
@version_code = Bubblez::VersionInformation.version_code | ||
end | ||
|
||
def get_version_info | ||
{ | ||
:name => @package_name, | ||
:version_name => @version_name, | ||
:version_code => @version_code | ||
} | ||
end | ||
end | ||
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
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
8 changes: 4 additions & 4 deletions
8
lib/bubbles/rest_client_resources.rb → lib/bubblez/rest_client_resources.rb
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
2 changes: 1 addition & 1 deletion
2
lib/bubbles/rest_environment.rb → lib/bubblez/rest_environment.rb
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,4 +1,4 @@ | ||
module Bubbles | ||
module Bubblez | ||
class RestEnvironment | ||
attr_accessor :host, :port, :api_key, :api_key_name | ||
|
||
|
Oops, something went wrong.