siamese 0.1.0 → 0.1.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d2e543fa8e7e3ab1a9935b09bed384b17ade1f858ea3ba14dd9fe4c375b1a23c
4
- data.tar.gz: 9deb13870059ece66e22e17358790eb892388858115d61f607ee74538c9c0487
3
+ metadata.gz: 81d080a971f4482e643964f88e26451521c7782be3f635deae08a93ff8448bcf
4
+ data.tar.gz: dde5f147d76605aeab8e8d4cf2381b93df41372099d84af060c3eb96ee142131
5
5
  SHA512:
6
- metadata.gz: 6697ad02d5ffcd41c899d7ba3e1c2425da0af3324fd961760a50b2d33dc1868387267a029b8f3bbd29fcd6e1a533613c6487127cd77769a371b3decf9f316e0c
7
- data.tar.gz: 70be6ee4b77599d0ecd979194890a32adaa4244370c8400b03f5d67f13b0ece25a759e6e39336f3e86afa9fe0793ced4f45d59ad348364cdda8b2897fe6e11ad
6
+ metadata.gz: c04e5b678c98f13ece38687e5b06cd352cb8d6d352b3ae3c5ef164259212f88e13f5b4244ec5aba9b21d17a4d171a47084696d2e6403ffaf524a23d18d7340ea
7
+ data.tar.gz: 6b9fba3114be2f60c362c5c07b88cd90e7316120a9025f267fd922a4b6e629e567294e0cdf26a40659f022148b2e61914d96faf87cb0abfbeb3007b7ca792d3f
data/README.md CHANGED
@@ -15,8 +15,6 @@ gem 'siamese'
15
15
  Configure in an initializer:
16
16
  ```ruby
17
17
  # config/initializers/siamese.rb
18
- require "siamese"
19
-
20
18
  Siamese.configure do |config|
21
19
  config.twilio_account_sid = Rails.application.credentials[:twilio_account_sid]
22
20
  config.twilio_auth_token = Rails.application.credentials[:twilio_auth_token]
data/lib/siamese.rb CHANGED
@@ -33,7 +33,7 @@ module Siamese
33
33
  end
34
34
 
35
35
  def client
36
- @client ||= Twilio::REST::Client.new(account_sid, auth_token)
36
+ @client ||= Twilio::REST::Client.new(twilio_account_sid, twilio_auth_token)
37
37
  end
38
38
  end
39
39
  end
@@ -1,3 +1,3 @@
1
1
  module Siamese
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: siamese
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Micah Geisel