Skip to content
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

(WIP) Add iframe support #7

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/toopher_api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class PairingDeactivatedError< ToopherApiError
# Abstracts calls to the Toopher OAuth webservice
class ToopherAPI
# Version of the library
VERSION = '1.1.0'
VERSION = '1.2.0'

# Default URL for the Toopher webservice API. Can be overridden in the constructor if necessary.
DEFAULT_BASE_URL = 'https://api.toopher.com/v1/'
Expand Down
4 changes: 2 additions & 2 deletions test/test_toopher_api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -312,9 +312,9 @@ def test_multiple_users_to_enable_raises_correct_error()
def test_version_string_exists()
major, minor, patch = ToopherAPI::VERSION.split('.')
assert(major >= '1', 'version string (major level) is invalid')
assert(minor >= '0', 'version string (minor level) is invalid')
assert(minor >= '2', 'version string (minor level) is invalid')
assert(patch >= '0', 'version string (patch level) is invalid')
assert(ToopherAPI::VERSION >= '1.0.6', 'version string does not exist')
assert(ToopherAPI::VERSION >= '1.2.0', 'version string does not exist')
end

def test_gemspec_version_matches_version_string()
Expand Down
4 changes: 2 additions & 2 deletions toopher_api.gemspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Gem::Specification.new do |s|
s.name = 'toopher_api'
s.version = '1.1.0'
s.date = '2013-11-26'
s.version = '1.2.0'
s.date = '2014-05-10'
s.summary = 'Interface to the toopher.com authentication api'
s.description = 'Synchronous interface to the toopher.com authentication api.'
s.authors = ['Toopher, Inc.']
Expand Down