chiketto 0.4.9 → 0.4.10

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: 2d3c982cc44a739bfced986438e2c622e3ea8fa8
4
- data.tar.gz: c82350ae60fe519bbe9aa6839ac1933a9e454176
3
+ metadata.gz: f61176708050b3b558a54d859de182a0dab6829d
4
+ data.tar.gz: 60eeb7cbf7d3233b13706236b23281110988a773
5
5
  SHA512:
6
- metadata.gz: ee1253d5e183e441d3d664e62c3897dfb345e0f2c1351a650795bece8d569fc5970c2c61dde2d012750fed4035974ccfe2edeac7eeea0e60ab20418f885568d0
7
- data.tar.gz: 28c12c5b26dc440daff2d703bed88a1d2a59307935f0c89d1161caf1fded0523149d522944b5a34ad192315ce9f6469678dc027cadacbdea0ece5b0813d6ef06
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, chiketto in Japanese literally means 'Ticket' and seems like a reasonable name given most of the obvious options are already taken. Chiketto works with Ruby 2.0 and above, since this is a new gem it makes little sense to support older, unsupported version of Ruby.
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, those these are the only instances. It's also worth noting that when using the V1 API Chiketto will make a second call to the V3 API in order to fetch the data. This is due to changes in the way data is formatted and what data is returned between the two API versions.
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
- Finally, for now, Chiketto allows you to list out all the possible Categories on the Eventbrite API, returning an Array of Category objects.
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 )
@@ -6,7 +6,8 @@ module Chiketto
6
6
  :event_id,
7
7
  :order_id,
8
8
  :assigned_number,
9
- :answers
9
+ :answers,
10
+ :barcodes
10
11
 
11
12
  attr_date :changed,
12
13
  :created
@@ -1,3 +1,3 @@
1
1
  module Chiketto
2
- VERSION = "0.4.9"
2
+ VERSION = "0.4.10"
3
3
  end
@@ -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.9
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-02-08 00:00:00.000000000 Z
11
+ date: 2015-04-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler