fulcrum 0.4.1 → 0.4.2

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
  SHA1:
3
- metadata.gz: 6817a6497641a0c97399e143a818eb9bc75e6f39
4
- data.tar.gz: 1e00c5e9aa0135bd2ed9cc7c62f6d37d43491d6a
3
+ metadata.gz: f0b25d12d45de68b0476ef5a41955033412541f1
4
+ data.tar.gz: 1ee80ca2b26ecb1e4d4986d663bd7e460170d925
5
5
  SHA512:
6
- metadata.gz: 30e72446302d4a886bd1260efd57063b2f144d4879616b1680f03d99e02b59b7436c982959600b2ee9ef36e6cdb126bd63b1e3b8376d7a7a7c9beb879c13fe50
7
- data.tar.gz: 40754a1556b7c0550d125f5c8965b1abbd999697f213bbfdf1a85796ce6f65d67c210745e32a09576a9ba9280f63530b22a9d51614d94812f77e39afe8f7b01e
6
+ metadata.gz: a7758a23b6aa84420af50c7dc3194e4977b0642ed2874ff04b98568227cfbe92c33d388beff0730826ec12b910afda4a865d94e44edfd3bc42fe82d2e31f895e
7
+ data.tar.gz: 4b8c17da9d99ce4083ecf443944edfcaf849f8503d1068285fd22101413cda89f649db0b101e5a85321a4260eab4528e7796e8f1db11e0c273a2ebe90307214c
@@ -0,0 +1,5 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
4
+ - 2.0.0
5
+ - 2.1.1
@@ -1,3 +1,10 @@
1
+ ## v0.4.2 (October 23, 2014)
2
+ * Fix specs
3
+ * Remove ruby 1.9.2 from travis configuration
4
+
5
+ ## v0.4.1 (October 23, 2014)
6
+ * Change to gem info
7
+
1
8
  ## v0.4.0 (October 21, 2014)
2
9
  * Add support for changesets on record delete calls
3
10
 
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Fulcrum
1
+ # Fulcrum [![Build Status](https://secure.travis-ci.org/fulcrumapp/fulcrum-ruby.png)](http://travis-ci.org/fulcrumapp/fulcrum-ruby)
2
2
 
3
3
  Fulcrum API Gem
4
4
 
@@ -273,7 +273,7 @@ Fetches the GPS track for the specified video.
273
273
 
274
274
  ## Contributing
275
275
 
276
- 1. Fork it
276
+ 1. Fork the repo
277
277
  2. Create your feature branch (`git checkout -b my-new-feature`)
278
278
  3. Commit your changes (`git commit -am 'Added some feature'`)
279
279
  4. Push to the branch (`git push origin my-new-feature`)
@@ -6,7 +6,10 @@ module Fulcrum
6
6
  include Actions::Update
7
7
 
8
8
  def delete(id, changeset_id=nil)
9
- call(:delete, member(id), attributes_for_object(changeset_id: changeset_id))
9
+ record_attributes = {}
10
+ record_attributes[:changeset_id] = changeset_id if changeset_id
11
+
12
+ call(:delete, member(id), attributes_for_object(record_attributes))
10
13
  end
11
14
  end
12
15
  end
@@ -1,3 +1,3 @@
1
1
  module Fulcrum
2
- VERSION = "0.4.1"
2
+ VERSION = "0.4.2"
3
3
  end
@@ -1,7 +1,6 @@
1
1
  require 'rspec'
2
2
  require 'webmock/rspec'
3
3
  require 'fulcrum'
4
- require 'debugger'
5
4
  require 'client_helper'
6
5
  require 'resource_examples'
7
6
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fulcrum
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fulcrum
@@ -102,6 +102,7 @@ extensions: []
102
102
  extra_rdoc_files: []
103
103
  files:
104
104
  - ".gitignore"
105
+ - ".travis.yml"
105
106
  - CHANGELOG.md
106
107
  - Gemfile
107
108
  - LICENSE