vertebrae 0.2.4 → 0.2.5

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: 80aee05b643bbc004b4cf9a1b9962f31c5d4516a
4
- data.tar.gz: 764c1380810d1ce67a5c52f6b62ca9686164894f
3
+ metadata.gz: 79eda23c0ff7839809cd5b628cba511fb9065d79
4
+ data.tar.gz: e7bb3222470fd3b0178eec592f35997992545256
5
5
  SHA512:
6
- metadata.gz: 4aa9adc4ac3e7a283d8e4156464b41efd1a76ef23e00fc6b730e7345c42b0d010b11ae28be553d226d77cd8c4ca392a4024f8957669b35874950a0e204a6e5f5
7
- data.tar.gz: c9c06824333836a45b25aa37d3d56ae3cedf0b9e841b0b390c89a15e39ecaac7e80561b264fb05a09dbd8e2073236f3b7f8c8d30a8c4baa8271415623b215014
6
+ metadata.gz: f541fe57bbc089acefccbcd4957677771f3b2fdd824e7488e2ed2fd6be65823a220fe8b870b3ca82ef2275e7216f8368510009569ac6af889de44854aff05d59
7
+ data.tar.gz: 697aaa776de5c575a95d69da1404b3c6b0de73595ffb2fecde4dae83b65117b9ae32d168d7de8fe3ab8f781ce707f18998545d48ef2620a497c3ab1816c0e09b
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- ruby-2.0.0-p247
1
+ ruby-2.0.0-p353
data/.travis.yml ADDED
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - "2.0.0"
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.4
1
+ 0.2.5
data/lib/api.rb CHANGED
@@ -7,7 +7,7 @@ module Vertebrae
7
7
  # Create new API
8
8
  #
9
9
  def initialize(options={}, &block)
10
- options.merge!(default_options)
10
+ default_options.merge!(options)
11
11
 
12
12
  yield_or_eval(&block) if block_given?
13
13
  self.connection = Connection.new(options)
data/vertebrae.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "vertebrae"
8
- s.version = "0.2.4"
8
+ s.version = "0.2.5"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Nathan Woodhull"]
12
- s.date = "2013-10-22"
12
+ s.date = "2014-08-01"
13
13
  s.description = "A set of low level infrastructure and reusable code for building API clients"
14
14
  s.email = "nathan@controlshiftlabs.com"
15
15
  s.extra_rdoc_files = [
@@ -21,6 +21,7 @@ Gem::Specification.new do |s|
21
21
  ".rspec",
22
22
  ".ruby-gemset",
23
23
  ".ruby-version",
24
+ ".travis.yml",
24
25
  "Gemfile",
25
26
  "Gemfile.lock",
26
27
  "LICENSE.txt",
@@ -52,7 +53,7 @@ Gem::Specification.new do |s|
52
53
  s.homepage = "http://github.com/controlshift/vertebrae"
53
54
  s.licenses = ["MIT"]
54
55
  s.require_paths = ["lib"]
55
- s.rubygems_version = "2.0.6"
56
+ s.rubygems_version = "2.0.14"
56
57
  s.summary = "API Client Infrastructure"
57
58
 
58
59
  if s.respond_to? :specification_version then
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vertebrae
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Woodhull
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-10-22 00:00:00.000000000 Z
11
+ date: 2014-08-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -121,6 +121,7 @@ files:
121
121
  - .rspec
122
122
  - .ruby-gemset
123
123
  - .ruby-version
124
+ - .travis.yml
124
125
  - Gemfile
125
126
  - Gemfile.lock
126
127
  - LICENSE.txt
@@ -168,7 +169,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
168
169
  version: '0'
169
170
  requirements: []
170
171
  rubyforge_project:
171
- rubygems_version: 2.0.6
172
+ rubygems_version: 2.0.14
172
173
  signing_key:
173
174
  specification_version: 4
174
175
  summary: API Client Infrastructure