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 +4 -4
- data/.travis.yml +5 -0
- data/CHANGELOG.md +7 -0
- data/README.md +2 -2
- data/lib/fulcrum/record.rb +4 -1
- data/lib/fulcrum/version.rb +1 -1
- data/spec/spec_helper.rb +0 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f0b25d12d45de68b0476ef5a41955033412541f1
|
|
4
|
+
data.tar.gz: 1ee80ca2b26ecb1e4d4986d663bd7e460170d925
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a7758a23b6aa84420af50c7dc3194e4977b0642ed2874ff04b98568227cfbe92c33d388beff0730826ec12b910afda4a865d94e44edfd3bc42fe82d2e31f895e
|
|
7
|
+
data.tar.gz: 4b8c17da9d99ce4083ecf443944edfcaf849f8503d1068285fd22101413cda89f649db0b101e5a85321a4260eab4528e7796e8f1db11e0c273a2ebe90307214c
|
data/.travis.yml
ADDED
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Fulcrum
|
|
1
|
+
# Fulcrum [](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
|
|
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`)
|
data/lib/fulcrum/record.rb
CHANGED
|
@@ -6,7 +6,10 @@ module Fulcrum
|
|
|
6
6
|
include Actions::Update
|
|
7
7
|
|
|
8
8
|
def delete(id, changeset_id=nil)
|
|
9
|
-
|
|
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
|
data/lib/fulcrum/version.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
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.
|
|
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
|