summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorBobby McDonald <BobbyMcWho@users.noreply.github.com>2019-11-17 12:35:30 -0500
committerMichael Herold <opensource@michaeljherold.com>2019-11-17 11:35:30 -0600
commit2846ea63a90a594ed67e3eb8ba7c5fd125909089 (patch)
treee86f362d5a224b0e520eeece5144eb22be252827 /spec
parentd1cad54a6e3dd3aae3633a4a98fd19cbc4a53fc4 (diff)
downloadhashie-2846ea63a90a594ed67e3eb8ba7c5fd125909089.tar.gz
Update github urls to hashie/hashie (#497)
* Update github urls to hashie/hashie * Point omniauth in integration tests at master. Until omniauth releases the changes merged from https://github.com/omniauth/omniauth/pull/977 , we must point at master branch. * revert incorrect change of gem email Co-Authored-By: Michael Herold <github@michaeljherold.com> * Reference open issue for release
Diffstat (limited to 'spec')
-rw-r--r--spec/hashie/mash_spec.rb2
-rw-r--r--spec/integration/elasticsearch/integration_spec.rb2
-rw-r--r--spec/integration/omniauth-oauth2/Gemfile3
-rw-r--r--spec/integration/omniauth/Gemfile4
4 files changed, 8 insertions, 3 deletions
diff --git a/spec/hashie/mash_spec.rb b/spec/hashie/mash_spec.rb
index 831ce90..fa4e47b 100644
--- a/spec/hashie/mash_spec.rb
+++ b/spec/hashie/mash_spec.rb
@@ -75,7 +75,7 @@ describe Hashie::Mash do
# Added due to downstream gems assuming indifferent access to be true for Mash
# When this is not, bump major version so that downstream gems can target
# correct version and fix accordingly.
- # See https://github.com/intridea/hashie/pull/197
+ # See https://github.com/hashie/hashie/pull/197
it 'maintains indifferent access when nested' do
subject[:a] = { b: 'c' }
expect(subject[:a][:b]).to eq 'c'
diff --git a/spec/integration/elasticsearch/integration_spec.rb b/spec/integration/elasticsearch/integration_spec.rb
index e333f21..c3817fe 100644
--- a/spec/integration/elasticsearch/integration_spec.rb
+++ b/spec/integration/elasticsearch/integration_spec.rb
@@ -17,7 +17,7 @@ class MyModel < Hashie::Mash
end
RSpec.describe 'elaasticsearch-model' do
- # See https://github.com/intridea/hashie/issues/354#issuecomment-363306114
+ # See https://github.com/hashie/hashie/issues/354#issuecomment-363306114
# for the reason why this doesn't work as you would expect
it 'raises an error when the model does has an id' do
object = MyModel.new
diff --git a/spec/integration/omniauth-oauth2/Gemfile b/spec/integration/omniauth-oauth2/Gemfile
index 5e2bdee..c081df6 100644
--- a/spec/integration/omniauth-oauth2/Gemfile
+++ b/spec/integration/omniauth-oauth2/Gemfile
@@ -1,6 +1,9 @@
source 'http://rubygems.org'
gem 'hashie', path: '../../..'
+# Update omniauth to a pessimistic minor once omniauth releases changes in
+# https://github.com/omniauth/omniauth/pull/977
+gem 'omniauth', git: 'https://github.com/omniauth/omniauth.git', branch: 'master'
gem 'omniauth-oauth2', '~> 1.4.0'
gem 'rails', '~> 5.0.1'
gem 'rspec', '~> 3.5.0'
diff --git a/spec/integration/omniauth/Gemfile b/spec/integration/omniauth/Gemfile
index 84e0998..a29245b 100644
--- a/spec/integration/omniauth/Gemfile
+++ b/spec/integration/omniauth/Gemfile
@@ -2,7 +2,9 @@ source 'http://rubygems.org'
gem 'benchmark-ips'
gem 'hashie', path: '../../..'
-gem 'omniauth', '~> 1.4.1'
+# Update omniauth to a pessimistic minor once https://github.com/omniauth/omniauth/issues/980
+# is resolved.
+gem 'omniauth', git: 'https://github.com/omniauth/omniauth.git', branch: 'master'
gem 'rack-test', '~> 0.6.3'
gem 'rake'
gem 'rspec', '~> 3.5.0'