eventbright 0.1.5 → 0.1.7
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.
- data/VERSION +1 -1
- data/eventbright.gemspec +90 -0
- data/lib/eventbright/api_objects/event.rb +1 -2
- data/lib/eventbright/main.rb +1 -1
- metadata +4 -3
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.7
|
data/eventbright.gemspec
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{eventbright}
|
|
8
|
+
s.version = "0.1.7"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["David Haslem"]
|
|
12
|
+
s.date = %q{2010-05-26}
|
|
13
|
+
s.description = %q{A simple, unoffical gem that integrates with the EventBrite events service. (http://www.eventbrite.com)}
|
|
14
|
+
s.email = %q{therabidbanana@gmail.com}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"README.markdown"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
".document",
|
|
21
|
+
".gitignore",
|
|
22
|
+
"LICENSE",
|
|
23
|
+
"README.markdown",
|
|
24
|
+
"Rakefile",
|
|
25
|
+
"VERSION",
|
|
26
|
+
"eventbright.gemspec",
|
|
27
|
+
"lib/eventbright.rb",
|
|
28
|
+
"lib/eventbright/api_object.rb",
|
|
29
|
+
"lib/eventbright/api_object_class_methods.rb",
|
|
30
|
+
"lib/eventbright/api_object_collection.rb",
|
|
31
|
+
"lib/eventbright/api_object_relationships.rb",
|
|
32
|
+
"lib/eventbright/api_objects/attendee.rb",
|
|
33
|
+
"lib/eventbright/api_objects/discount.rb",
|
|
34
|
+
"lib/eventbright/api_objects/event.rb",
|
|
35
|
+
"lib/eventbright/api_objects/organizer.rb",
|
|
36
|
+
"lib/eventbright/api_objects/ticket.rb",
|
|
37
|
+
"lib/eventbright/api_objects/user.rb",
|
|
38
|
+
"lib/eventbright/api_objects/venue.rb",
|
|
39
|
+
"lib/eventbright/error.rb",
|
|
40
|
+
"lib/eventbright/main.rb",
|
|
41
|
+
"spec/eventbright/api_object_class_spec.rb",
|
|
42
|
+
"spec/eventbright/api_object_collection_spec.rb",
|
|
43
|
+
"spec/eventbright/api_object_relationship_spec.rb",
|
|
44
|
+
"spec/eventbright/api_object_spec.rb",
|
|
45
|
+
"spec/eventbright/user_spec.rb",
|
|
46
|
+
"spec/eventbright_api_faker.rb",
|
|
47
|
+
"spec/eventbright_spec.rb",
|
|
48
|
+
"spec/faked_responses/auth_required.json",
|
|
49
|
+
"spec/faked_responses/event_get.json",
|
|
50
|
+
"spec/faked_responses/user_get.json",
|
|
51
|
+
"spec/faked_responses/user_list_events.json",
|
|
52
|
+
"spec/faked_responses/user_list_organizers.json",
|
|
53
|
+
"spec/faked_responses/user_list_venues.json",
|
|
54
|
+
"spec/faked_responses/user_update.json",
|
|
55
|
+
"spec/spec.opts",
|
|
56
|
+
"spec/spec_helper.rb"
|
|
57
|
+
]
|
|
58
|
+
s.homepage = %q{http://github.com/therabidbanana/eventbright}
|
|
59
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
60
|
+
s.require_paths = ["lib"]
|
|
61
|
+
s.rubygems_version = %q{1.3.6}
|
|
62
|
+
s.summary = %q{An unofficial gem for EventBrite Integration}
|
|
63
|
+
s.test_files = [
|
|
64
|
+
"spec/eventbright/api_object_class_spec.rb",
|
|
65
|
+
"spec/eventbright/api_object_collection_spec.rb",
|
|
66
|
+
"spec/eventbright/api_object_relationship_spec.rb",
|
|
67
|
+
"spec/eventbright/api_object_spec.rb",
|
|
68
|
+
"spec/eventbright/user_spec.rb",
|
|
69
|
+
"spec/eventbright_api_faker.rb",
|
|
70
|
+
"spec/eventbright_spec.rb",
|
|
71
|
+
"spec/spec_helper.rb"
|
|
72
|
+
]
|
|
73
|
+
|
|
74
|
+
if s.respond_to? :specification_version then
|
|
75
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
76
|
+
s.specification_version = 3
|
|
77
|
+
|
|
78
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
79
|
+
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
|
|
80
|
+
s.add_runtime_dependency(%q<httparty>, [">= 0.5.2"])
|
|
81
|
+
else
|
|
82
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
|
83
|
+
s.add_dependency(%q<httparty>, [">= 0.5.2"])
|
|
84
|
+
end
|
|
85
|
+
else
|
|
86
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
|
87
|
+
s.add_dependency(%q<httparty>, [">= 0.5.2"])
|
|
88
|
+
end
|
|
89
|
+
end
|
|
90
|
+
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
require 'tzinfo'
|
|
2
1
|
require 'eventbright/api_objects/organizer'
|
|
3
2
|
require 'eventbright/api_objects/venue'
|
|
4
3
|
require 'eventbright/api_objects/ticket'
|
|
@@ -17,7 +16,7 @@ module EventBright
|
|
|
17
16
|
updatable :box_header_background_color, :box_header_text_color
|
|
18
17
|
updatable :currency
|
|
19
18
|
updatable :venue_id, :organizer_id
|
|
20
|
-
readable :category
|
|
19
|
+
readable :category, :num_attendee_rows
|
|
21
20
|
reformats :privacy, :timezone, :start_date, :end_date
|
|
22
21
|
|
|
23
22
|
requires :title
|
data/lib/eventbright/main.rb
CHANGED
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 1
|
|
8
|
-
-
|
|
9
|
-
version: 0.1.
|
|
8
|
+
- 7
|
|
9
|
+
version: 0.1.7
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- David Haslem
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-05-
|
|
17
|
+
date: 2010-05-26 00:00:00 -04:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
@@ -61,6 +61,7 @@ files:
|
|
|
61
61
|
- README.markdown
|
|
62
62
|
- Rakefile
|
|
63
63
|
- VERSION
|
|
64
|
+
- eventbright.gemspec
|
|
64
65
|
- lib/eventbright.rb
|
|
65
66
|
- lib/eventbright/api_object.rb
|
|
66
67
|
- lib/eventbright/api_object_class_methods.rb
|