lightspeed_restaurant 0.1.2 → 0.1.3
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 18eb9ef7e7bb62d418c019eafb350c64741007eb
|
|
4
|
+
data.tar.gz: aedde8a60516a595b7cf8e9193b145f963f2cf79
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0eb2e4d62b5a10c1eacd2853862db17e69448ed345a7e433ce3bd89019914933c160c55fe669cecf54b1b0ef24502feaffba0a9a633d4991c27b1cfb7dad346e
|
|
7
|
+
data.tar.gz: 6e3c6bd3b8f8fe340dfb13d90972137f8c1a64a06017284cd9e3be42f8aa08f76cb84ff45b955328aa61299620b18baec96ce243f49955f687bead3791b47cf2
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[](https://circleci.com/gh/chronogolf/lightspeed_restaurant) [](https://gemnasium.com/chronogolf/lightspeed_restaurant) [](https://codeclimate.com/github/chronogolf/lightspeed_restaurant)
|
|
1
|
+
[](https://circleci.com/gh/chronogolf/lightspeed_restaurant) [](https://gemnasium.com/chronogolf/lightspeed_restaurant) [](https://codeclimate.com/github/chronogolf/lightspeed_restaurant) [](https://badge.fury.io/rb/lightspeed_restaurant)
|
|
2
2
|
|
|
3
3
|
# Lightspeed Restaurant API Client
|
|
4
4
|
|
|
@@ -58,6 +58,11 @@ LightspeedRestaurant::Customer.create(...firstName: 'Tom', email: 'tom@brady.com
|
|
|
58
58
|
|
|
59
59
|
#### Update
|
|
60
60
|
```ruby
|
|
61
|
+
LightspeedRestaurant::Customer.update(123, { email: 'tom@brady.com' })
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
#### Save
|
|
65
|
+
```ruby
|
|
61
66
|
customer = LightspeedRestaurant::Customer.find(123)
|
|
62
67
|
customer.firstName = 'Micheal'
|
|
63
68
|
customer.save
|
|
@@ -66,7 +71,7 @@ customer.save
|
|
|
66
71
|
#### Destroy
|
|
67
72
|
```ruby
|
|
68
73
|
customer = LightspeedRestaurant::Customer.find(123)
|
|
69
|
-
customer.
|
|
74
|
+
customer.destroy
|
|
70
75
|
```
|
|
71
76
|
|
|
72
77
|
## Contributing
|
|
@@ -81,7 +86,6 @@ Pull requests are welcome on GitHub at https://github.com/chronogolf/lightspeed_
|
|
|
81
86
|
Find more informations at http://www.chronogolf.com/solutions
|
|
82
87
|
|
|
83
88
|
## Future Improvements
|
|
84
|
-
- Improve update operation to handle update by passing a hash
|
|
85
89
|
- Improve destroy operation to handle destroy by passing an ID (or an array of IDs)
|
|
86
90
|
- Add missing resources (Company, Reservation, Floor, Table...)
|
|
87
91
|
- Improve test coverage
|
|
@@ -3,11 +3,13 @@ require 'lightspeed_restaurant/operations/list'
|
|
|
3
3
|
require 'lightspeed_restaurant/operations/find'
|
|
4
4
|
require 'lightspeed_restaurant/operations/create'
|
|
5
5
|
require 'lightspeed_restaurant/operations/update'
|
|
6
|
+
require 'lightspeed_restaurant/operations/save'
|
|
6
7
|
|
|
7
8
|
module LightspeedRestaurant
|
|
8
9
|
class Customer < LightspeedRestaurant::Base
|
|
9
|
-
include LightspeedRestaurant::Operations::
|
|
10
|
+
include LightspeedRestaurant::Operations::Save
|
|
10
11
|
extend LightspeedRestaurant::Operations::Create
|
|
12
|
+
extend LightspeedRestaurant::Operations::Update
|
|
11
13
|
extend LightspeedRestaurant::Operations::Find
|
|
12
14
|
extend LightspeedRestaurant::Operations::List
|
|
13
15
|
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
module LightspeedRestaurant
|
|
2
2
|
module Operations
|
|
3
3
|
module Update
|
|
4
|
-
def update
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
def update(id, attributes)
|
|
5
|
+
updated_object = new(attributes)
|
|
6
|
+
LightspeedRestaurant.put(resource_path + "/#{id}", updated_object)
|
|
7
|
+
updated_object
|
|
7
8
|
end
|
|
8
|
-
alias_method :save, :update
|
|
9
9
|
end
|
|
10
10
|
end
|
|
11
11
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lightspeed_restaurant
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Olivier Buffon
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-12-
|
|
11
|
+
date: 2015-12-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: excon
|
|
@@ -171,6 +171,7 @@ files:
|
|
|
171
171
|
- lib/lightspeed_restaurant/operations/destroy.rb
|
|
172
172
|
- lib/lightspeed_restaurant/operations/find.rb
|
|
173
173
|
- lib/lightspeed_restaurant/operations/list.rb
|
|
174
|
+
- lib/lightspeed_restaurant/operations/save.rb
|
|
174
175
|
- lib/lightspeed_restaurant/operations/update.rb
|
|
175
176
|
- lib/lightspeed_restaurant/request.rb
|
|
176
177
|
- lib/lightspeed_restaurant/version.rb
|