dailycred 0.1.34 → 0.1.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/dailycred.gemspec +1 -1
- data/lib/dailycred/helper.rb +1 -1
- metadata +1 -1
data/dailycred.gemspec
CHANGED
data/lib/dailycred/helper.rb
CHANGED
|
@@ -15,7 +15,7 @@ module Dailycred
|
|
|
15
15
|
# for more documentation, visit https://www.dailycred.com/api/ruby
|
|
16
16
|
def dailycred
|
|
17
17
|
config = Rails.configuration
|
|
18
|
-
@dailycred ||= Dailycred.new(config.DAILYCRED_CLIENT_ID, config.DAILYCRED_SECRET_KEY, config.DAILYCRED_OPTIONS)
|
|
18
|
+
@dailycred ||= Dailycred::Client.new(config.DAILYCRED_CLIENT_ID, config.DAILYCRED_SECRET_KEY, config.DAILYCRED_OPTIONS)
|
|
19
19
|
end
|
|
20
20
|
|
|
21
21
|
# when making oauth calls, we may need to redirect to our oauth callback url
|