atrium-ruby 0.2.2 → 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9a0f84af859ed13efd9e0dc27521fb6badc1d550
4
- data.tar.gz: 4f796b1636d69486d4bee97e905527b96629cae9
3
+ metadata.gz: a1edf618b70ff6e2fb050b1c6e48692e0951c81c
4
+ data.tar.gz: 59beb5c61e06918b09670715bc19a816efb1288d
5
5
  SHA512:
6
- metadata.gz: 3b0adeb06d2ae1f6b540afa5f6a74f9742c76b8079f41f0c55ccf2723abb53bc0c0d2a6782a5510fc79c0b029d54cc0e932ccab9cd4ea2633aca0b3c296d2199
7
- data.tar.gz: 5815ce54d975ed4a693941084a7703643e699ef5a6b84a176c78f66c3e2e2c1a7bc1de7e20dad1f3a84e3c76d8343cb6691a7dfc8d468cb9001151a2070cb4fc
6
+ metadata.gz: cc7c4ec8bb0c580314a3179e859af4684159e3a23413cc708ac59cf8c83ea82f090cf942abcb586a66d06ad781bacd590d832efa02944f508289db2f86b3f675
7
+ data.tar.gz: dcdb766627528892339391a7f1d2f148c65198367ca4b69df3e66ce019021089b7f6c54c856f4c8b4497752c90b95c9275cb49eac4bc06ab95532b1684549adc
data/.gitignore CHANGED
@@ -1,9 +1,10 @@
1
- /.bundle/
1
+ /.bundle
2
2
  /.yardoc
3
3
  /Gemfile.lock
4
- /_yardoc/
5
- /coverage/
6
- /doc/
7
- /pkg/
8
- /spec/reports/
9
- /tmp/
4
+ /_yardoc
5
+ /coverage
6
+ /doc
7
+ /pkg
8
+ /spec/reports
9
+ /tmp
10
+ *.gem
@@ -8,7 +8,6 @@ Gem::Specification.new do |spec|
8
8
  spec.version = ::Atrium::VERSION
9
9
  spec.authors = ["Jon Carstens, Dan Jones, Zach Toolson"]
10
10
  spec.email = ["jon.carstens@mx.com, dan.jones@mx.com, zach.toolson@mx.com"]
11
-
12
11
  spec.summary = "Ruby wrapper for the Atrium API by MX"
13
12
  spec.description = "Ruby wrapper for the Atrium API by MX"
14
13
  spec.homepage = "http://github.com/mxenabled/atrium-ruby"
@@ -9,7 +9,7 @@ module Atrium
9
9
 
10
10
  def make_request(method, endpoint, body = {}, headers = {})
11
11
  headers = default_headers.merge(headers)
12
- url = "#{::Atrium::BASE_URL}#{endpoint}"
12
+ url = "#{::Atrium::BASE_URL}/#{endpoint}"
13
13
  response = http_client.public_send(method, url, ::JSON.dump(body), headers)
14
14
 
15
15
  handle_response(response)
@@ -1,3 +1,3 @@
1
1
  module Atrium
2
- VERSION = "0.2.2"
2
+ VERSION = "0.2.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: atrium-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jon Carstens, Dan Jones, Zach Toolson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-01-13 00:00:00.000000000 Z
11
+ date: 2017-01-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: active_attr