chiketto 0.4.9 → 0.4.10
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/README.md +5 -5
- data/lib/chiketto/attendee.rb +2 -1
- data/lib/chiketto/version.rb +1 -1
- data/test/attendee_test.rb +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f61176708050b3b558a54d859de182a0dab6829d
|
|
4
|
+
data.tar.gz: 60eeb7cbf7d3233b13706236b23281110988a773
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 41b9540fa6733ee0bf5f30a5db1e6e2441f100c81c814a0dab5b41e71f048804d96f48fc745013016bbd76acc0cc8995df099035e6e3e99761465c590032342c
|
|
7
|
+
data.tar.gz: 7ed03765f751246d344b99603d43ea5c86b7b5ad70d58fdec8241d49331955925a2c697262210606a8da80082ea3f430e2a34a736242c5f220d468e113ecb5ea
|
data/README.md
CHANGED
|
@@ -3,11 +3,9 @@
|
|
|
3
3
|
|
|
4
4
|
# チケット - Chiketto
|
|
5
5
|
|
|
6
|
-
Chiketto is a ruby gem for interacting with the Eventbrite V3 API,
|
|
6
|
+
Chiketto is a ruby gem for interacting with the Eventbrite V3 API, in Japanese chiketto means 'Ticket'. This library is tested on Ruby 2.0 and above, though may work on 1.9.3.
|
|
7
7
|
|
|
8
|
-
Chiketto falls back to the V1 API when dealing with updating and creating events,
|
|
9
|
-
|
|
10
|
-
**This Gem is still very much a work in progress though may now be suitable for production use - version 1.0 should be ready late summer 2014**
|
|
8
|
+
Chiketto currently falls back to the V1 API when dealing with updating and creating events, though this will change with the 1.0 release.
|
|
11
9
|
|
|
12
10
|
## Installation
|
|
13
11
|
|
|
@@ -62,12 +60,14 @@ You can also use the search endpoint on the API to look up events and have an Ar
|
|
|
62
60
|
Chiketto::Event.search 'name'
|
|
63
61
|
```
|
|
64
62
|
|
|
65
|
-
|
|
63
|
+
Chiketto also allows you to list out all the possible Categories on the Eventbrite API, returning an Array of Category objects.
|
|
66
64
|
|
|
67
65
|
```ruby
|
|
68
66
|
Chiketto::Category.list
|
|
69
67
|
```
|
|
70
68
|
|
|
69
|
+
For more supported objects, API calls, and methods, I suggest looking at the source code.
|
|
70
|
+
|
|
71
71
|
## Contributing
|
|
72
72
|
|
|
73
73
|
1. Fork it ( https://github.com/chrisradfordltd/chiketto/fork )
|
data/lib/chiketto/attendee.rb
CHANGED
data/lib/chiketto/version.rb
CHANGED
data/test/attendee_test.rb
CHANGED
|
@@ -10,6 +10,8 @@ class AttendeeTest < MiniTest::Test
|
|
|
10
10
|
assert_respond_to attendee, :event_id
|
|
11
11
|
assert_respond_to attendee, :order_id
|
|
12
12
|
assert_respond_to attendee, :assigned_number
|
|
13
|
+
assert_respond_to attendee, :answers
|
|
14
|
+
assert_respond_to attendee, :barcodes
|
|
13
15
|
end
|
|
14
16
|
|
|
15
17
|
def test_attr_date_types
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chiketto
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Radford
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-04-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|