active_activity_api 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 15e017264ae25afdfde6adb09bf9e76d9bc223accbaa98eb76a3d57e90ae4e97
4
+ data.tar.gz: 2dadce938669572087d64a68f4720c86dfd9d0412e24f4fee1d0b335369a41d6
5
+ SHA512:
6
+ metadata.gz: 960020eafc30126451827f28aa1b3c69bf932ada70f4694a863ed5755360378658963c3a5ae7a804dca897bd262062c28c05f130ff9b08ccc23c70da94d03a7c
7
+ data.tar.gz: c41e94baab3f896d04ffd79e0bd793329362145988d4cd3c377bf46c3a0bb5dcbfe3c7db74294310db3a5e42aa2114672b40aac70b9da71bb7cd5e370a8bed0a
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
@@ -0,0 +1,44 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ active_activity_api (0.0.2)
5
+ httparty
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ byebug (11.1.1)
11
+ diff-lcs (1.3)
12
+ dotenv (2.7.5)
13
+ httparty (0.17.3)
14
+ mime-types (~> 3.0)
15
+ multi_xml (>= 0.5.2)
16
+ mime-types (3.3.1)
17
+ mime-types-data (~> 3.2015)
18
+ mime-types-data (3.2019.1009)
19
+ multi_xml (0.6.0)
20
+ rspec (3.9.0)
21
+ rspec-core (~> 3.9.0)
22
+ rspec-expectations (~> 3.9.0)
23
+ rspec-mocks (~> 3.9.0)
24
+ rspec-core (3.9.1)
25
+ rspec-support (~> 3.9.1)
26
+ rspec-expectations (3.9.0)
27
+ diff-lcs (>= 1.2.0, < 2.0)
28
+ rspec-support (~> 3.9.0)
29
+ rspec-mocks (3.9.1)
30
+ diff-lcs (>= 1.2.0, < 2.0)
31
+ rspec-support (~> 3.9.0)
32
+ rspec-support (3.9.2)
33
+
34
+ PLATFORMS
35
+ ruby
36
+
37
+ DEPENDENCIES
38
+ active_activity_api!
39
+ byebug
40
+ dotenv
41
+ rspec
42
+
43
+ BUNDLED WITH
44
+ 1.17.2
@@ -0,0 +1,21 @@
1
+ # MIT LICENSE
2
+
3
+ Copyright (c) 2020 dbwinger <dbwinger@gmail.com>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "active_activity_api"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,6 @@
1
+ require 'ostruct'
2
+
3
+ # Wrap the API results for a race in an class, and do some data coercion
4
+ module Active
5
+ class Activity < OpenStruct; end;
6
+ end
@@ -0,0 +1,11 @@
1
+ if ENV['ENV'] == 'development'
2
+ require 'dotenv/load'
3
+ require 'byebug'
4
+ end
5
+ require 'active_activity_api/version'
6
+ require 'active/activity'
7
+ require 'active_activity_api/client'
8
+
9
+ module ActiveActivityApi
10
+ class Error < StandardError; end;
11
+ end
@@ -0,0 +1,48 @@
1
+ require 'httparty'
2
+
3
+ module ActiveActivityApi
4
+ class Client
5
+ include HTTParty
6
+
7
+ BASE_URL = "http://api.amp.active.com/v2"
8
+
9
+ def initialize api_key: ENV['ACTIVE_API_KEY']
10
+ @api_key = api_key
11
+ end
12
+
13
+ # Params used by all API calls
14
+ def default_params
15
+ {
16
+ api_key: @api_key,
17
+ per_page: 100
18
+ }
19
+ end
20
+
21
+ def search **opts
22
+ # Response in format
23
+ # {
24
+ # ...
25
+ # results: [{
26
+ # detailPageTemplateId: "",
27
+ # salesStartDate: "2013-07-22T12:09:21",
28
+ # ...
29
+ call_api('search', opts)['results'].map do |activity|
30
+ Active::Activity.new(activity)
31
+ end
32
+ end
33
+
34
+ protected
35
+
36
+ def call_api path, params = {}
37
+ response = self.class.get(
38
+ "#{BASE_URL}/#{path}",
39
+ query: default_params.merge(params)
40
+ )
41
+ if response.code == 200
42
+ response.parsed_response
43
+ else
44
+ raise Error.new response.body
45
+ end
46
+ end
47
+ end
48
+ end
@@ -0,0 +1,3 @@
1
+ module ActiveActivityApi
2
+ VERSION = '0.0.1'
3
+ end
metadata ADDED
@@ -0,0 +1,107 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: active_activity_api
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - dbwinger
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-02-01 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rspec
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: byebug
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: dotenv
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: httparty
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: "[description]"
70
+ email:
71
+ - dbwinger@entrision.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - Gemfile
77
+ - Gemfile.lock
78
+ - LICENSE.md
79
+ - bin/console
80
+ - lib/active/activity.rb
81
+ - lib/active_activity_api.rb
82
+ - lib/active_activity_api/client.rb
83
+ - lib/active_activity_api/version.rb
84
+ homepage: https://github.com/dbwinger/active_activity_api
85
+ licenses:
86
+ - MIT
87
+ metadata: {}
88
+ post_install_message:
89
+ rdoc_options: []
90
+ require_paths:
91
+ - lib
92
+ required_ruby_version: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ required_rubygems_version: !ruby/object:Gem::Requirement
98
+ requirements:
99
+ - - ">="
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ requirements: []
103
+ rubygems_version: 3.0.3
104
+ signing_key:
105
+ specification_version: 4
106
+ summary: "[summary]"
107
+ test_files: []