chiketto 0.0.1

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 6473b173731e992724d08b26bb8325c9632bcfac
4
+ data.tar.gz: 81aea07fa8aa0729732108f9b27c007db753158b
5
+ SHA512:
6
+ metadata.gz: e7fad6f07a922300ec1743b1045100279e875a507511d99e0072194e7284673b8373905170ef33be4e4b22a3a0443d0614da7817fdb725bb86489f52f95da9f5
7
+ data.tar.gz: 70ff6f7438b54dc6f1a5161b80d8cb7fca5b6b2320dee75dd89d3508d6e5eeb365f66850a961281aee07efa0b2ef0850737de1ce83eef75ff61b1339d7881ca3
data/.gitignore ADDED
@@ -0,0 +1,25 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
23
+
24
+ .env
25
+ /test/vcr
data/.travis.yml ADDED
@@ -0,0 +1,9 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
4
+ - 2.0.0
5
+ - 2.1.2
6
+ env:
7
+ global:
8
+ - secure: awI4Vmf+oFJC8CToe+yZ7in2By5m290LFBhYNyMNVmZxSfSqS5eDTKOeCWltiA5bZmqEbV+lVxh7YkeBKeZFtUPiDflAXMV57pCDD/CKvThpxHMnCwOEhlBu6GbBbCXAvs+2oPtkIYRpkDaAwFPrUcNrnVwCrdLp7zaXgjpxC8Q=
9
+ - secure: CuwWjtzRsPz4suem7KhRj7CVUEiscBUx7lMB+TEKi0zLeXtJNLsa6qvW866njDRBhw3kUD8jClmcKrAjLL/6/LUDXDdn83x6VEmcIK7yMQd3fR7OqhYnfu1OxDxzI+ed4hcA9UwYzdPIDBXCo/jNB3wDqyeDpLwTly+jtKh8tDE=
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in chiketto.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Chris Radford
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,46 @@
1
+ [![Build Status](https://travis-ci.org/chrisradford/chiketto.svg?branch=master)](https://travis-ci.org/chrisradford/chiketto)
2
+ [![Code Climate](https://codeclimate.com/github/chrisradford/chiketto.png)](https://codeclimate.com/github/chrisradford/chiketto)
3
+ [![Coverage Status](https://coveralls.io/repos/chrisradford/chiketto/badge.png?branch=master)](https://coveralls.io/r/chrisradford/chiketto?branch=master)
4
+
5
+ # チケット - Chiketto
6
+
7
+ 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.
8
+
9
+ **This Gem is still very much a work in progress and is not recommended for production use**
10
+
11
+ ## Installation
12
+
13
+ Add this line to your application's Gemfile:
14
+
15
+ gem 'chiketto'
16
+
17
+ And then execute:
18
+
19
+ $ bundle
20
+
21
+ Or install it yourself as:
22
+
23
+ $ gem install chiketto
24
+
25
+ ## Usage
26
+
27
+ ```
28
+ Chiketto.token = EVENTBRITE_API_TOKEN
29
+ ```
30
+
31
+ or Chiketto will read from the `EVENTBRITE_API_TOKEN` enviroment variable if this is set.
32
+
33
+ ```
34
+ event = Chiketto::Event.find 123456
35
+ Chiketto::Event::Attendees event or Chiketto::Event::Attendees 123456
36
+
37
+ Chiketto::Event.search 'name'
38
+ ```
39
+
40
+ ## Contributing
41
+
42
+ 1. Fork it ( https://github.com/[my-github-username]/chiketto/fork )
43
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
44
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
45
+ 4. Push to the branch (`git push origin my-new-feature`)
46
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,11 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rake/testtask'
3
+ require 'dotenv/tasks'
4
+
5
+ Rake::TestTask.new do |t|
6
+ t.libs << 'test'
7
+ t.pattern = "test/*_test.rb"
8
+ end
9
+
10
+ task default: :test
11
+ task test: :dotenv
data/chiketto.gemspec ADDED
@@ -0,0 +1,29 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'chiketto/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "chiketto"
8
+ spec.version = Chiketto::VERSION
9
+ spec.authors = ["Chris Radford"]
10
+ spec.email = ["chris@chrisradford.com"]
11
+ spec.summary = %q{Chiketto is a ruby gem for interacting with the Eventbrite V3 API}
12
+ spec.description = spec.summary
13
+ spec.homepage = "https://github.com/chrisradford/chiketto"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.6"
22
+ spec.add_development_dependency "coveralls"
23
+ spec.add_development_dependency "codeclimate-test-reporter"
24
+ spec.add_development_dependency "dotenv"
25
+ spec.add_development_dependency "minitest"
26
+ spec.add_development_dependency "rake"
27
+ spec.add_development_dependency "webmock"
28
+ spec.add_development_dependency "vcr"
29
+ end
data/lib/chiketto.rb ADDED
@@ -0,0 +1,8 @@
1
+ module Chiketto
2
+ ENDPOINT = 'https://www.eventbriteapi.com/v3/'
3
+
4
+ require 'chiketto/version'
5
+ require 'chiketto/resource'
6
+ require 'chiketto/event'
7
+
8
+ end
@@ -0,0 +1,10 @@
1
+ module Chiketto
2
+ class Event < Resource
3
+ class << self
4
+ def find(id)
5
+ event = get "events/#{id}"
6
+ Event.new event
7
+ end
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,32 @@
1
+ require 'json'
2
+ require 'open-uri'
3
+
4
+ module Chiketto
5
+ class Resource
6
+ attr_reader :id
7
+
8
+ def initialize(args)
9
+ args.each do |k, v|
10
+ instance_variable_set("@#{k}", v) unless v.nil?
11
+ end
12
+ end
13
+
14
+ class << self
15
+ def get(uri)
16
+ uri = endpoint uri
17
+ resource = open uri
18
+ JSON.parse resource.read
19
+ end
20
+
21
+ private
22
+
23
+ def endpoint(uri)
24
+ ENDPOINT + uri + token
25
+ end
26
+
27
+ def token
28
+ "?token=#{ENV['EVENTBRITE_API_TOKEN']}"
29
+ end
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,3 @@
1
+ module Chiketto
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class ChikettoTest < MiniTest::Test
4
+ end
@@ -0,0 +1,10 @@
1
+ require 'test_helper'
2
+
3
+ class EventTest < MiniTest::Test
4
+ def test_fetching_event
5
+ VCR.use_cassette 'eventbriteapi' do
6
+ event = Chiketto::Event.find 9203575141
7
+ assert_equal event.id, '9203575141'
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,19 @@
1
+ require 'chiketto'
2
+ require 'dotenv'
3
+ require 'minitest/autorun'
4
+ require 'vcr'
5
+
6
+ Dotenv.load
7
+
8
+ VCR.configure do |c|
9
+ c.cassette_library_dir = 'test/vcr'
10
+ c.hook_into :webmock
11
+ end
12
+
13
+ if ENV['TRAVIS']
14
+ require 'coveralls'
15
+ Coveralls.wear!
16
+
17
+ require 'codeclimate-test-reporter'
18
+ CodeClimate::TestReporter.start
19
+ end
metadata ADDED
@@ -0,0 +1,173 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: chiketto
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Chris Radford
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-05-17 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.6'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.6'
27
+ - !ruby/object:Gem::Dependency
28
+ name: coveralls
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: codeclimate-test-reporter
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: dotenv
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: minitest
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rake
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: webmock
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: vcr
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ description: Chiketto is a ruby gem for interacting with the Eventbrite V3 API
126
+ email:
127
+ - chris@chrisradford.com
128
+ executables: []
129
+ extensions: []
130
+ extra_rdoc_files: []
131
+ files:
132
+ - ".gitignore"
133
+ - ".travis.yml"
134
+ - Gemfile
135
+ - LICENSE.txt
136
+ - README.md
137
+ - Rakefile
138
+ - chiketto.gemspec
139
+ - lib/chiketto.rb
140
+ - lib/chiketto/event.rb
141
+ - lib/chiketto/resource.rb
142
+ - lib/chiketto/version.rb
143
+ - test/chiketto_test.rb
144
+ - test/event_test.rb
145
+ - test/test_helper.rb
146
+ homepage: https://github.com/chrisradford/chiketto
147
+ licenses:
148
+ - MIT
149
+ metadata: {}
150
+ post_install_message:
151
+ rdoc_options: []
152
+ require_paths:
153
+ - lib
154
+ required_ruby_version: !ruby/object:Gem::Requirement
155
+ requirements:
156
+ - - ">="
157
+ - !ruby/object:Gem::Version
158
+ version: '0'
159
+ required_rubygems_version: !ruby/object:Gem::Requirement
160
+ requirements:
161
+ - - ">="
162
+ - !ruby/object:Gem::Version
163
+ version: '0'
164
+ requirements: []
165
+ rubyforge_project:
166
+ rubygems_version: 2.2.2
167
+ signing_key:
168
+ specification_version: 4
169
+ summary: Chiketto is a ruby gem for interacting with the Eventbrite V3 API
170
+ test_files:
171
+ - test/chiketto_test.rb
172
+ - test/event_test.rb
173
+ - test/test_helper.rb