truck_you 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2f79d9776ec0b64393641c64f76ec44122eb1279
4
+ data.tar.gz: 5d891cc8aae9a86ca0aba63693915f9f8d475ec2
5
+ SHA512:
6
+ metadata.gz: d8b14d72b1bc14e691b91baf267c3a2b8b5200cfb0c83e397dda72559b028ee21d367e2b06f46175d285c8692a57bf4fbf78aa55fcc6ad2556b0a3009e92c057
7
+ data.tar.gz: ebad14ff9fe7e4148a2465a2b5b0fe3e729659ca54a3caad5c0a4fe8b1f2d7dcf7222b969e1e858cfcd45fd0dd44df4cc2c208de77b1842223fc9b47d8697e6d
data/.gitignore ADDED
@@ -0,0 +1,2 @@
1
+ *.gem
2
+ Gemfile.lock
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,32 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ truck (0.0.0)
5
+ faraday (~> 0.9.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ ansi (1.5.0)
11
+ builder (3.2.2)
12
+ faraday (0.9.2)
13
+ multipart-post (>= 1.2, < 3)
14
+ minitest (5.8.2)
15
+ minitest-reporters (1.1.4)
16
+ ansi
17
+ builder
18
+ minitest (>= 5.0)
19
+ ruby-progressbar
20
+ multipart-post (2.0.0)
21
+ rake (0.9.6)
22
+ ruby-progressbar (1.7.5)
23
+
24
+ PLATFORMS
25
+ ruby
26
+
27
+ DEPENDENCIES
28
+ bundler (~> 1.6)
29
+ minitest
30
+ minitest-reporters
31
+ rake (~> 0)
32
+ truck!
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 Dave De Carlo
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,35 @@
1
+ # :truck: Keep on Truckin' :truck:
2
+
3
+ Super simple API client for sending repeated requests to a common endpoint (i.e Google Analytics)
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'truck'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install truck
20
+
21
+ ## Usage
22
+
23
+ TODO: Write usage instructions here
24
+
25
+ ## Development
26
+
27
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
28
+
29
+ ## Contributing
30
+
31
+ 1. Fork it ( https://github.com/[my-github-username]/truck/fork )
32
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
33
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
34
+ 4. Push to the branch (`git push origin my-new-feature`)
35
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ require 'rake/testtask'
2
+
3
+ Rake::TestTask.new do |task|
4
+ task.libs << %w(test lib)
5
+ task.pattern = 'test/**/test_*.rb'
6
+ end
7
+
8
+ task :default => :test
@@ -0,0 +1,35 @@
1
+ require 'faraday'
2
+
3
+ module Truck
4
+ def payload
5
+ @payload ||= Payload.new
6
+ end
7
+
8
+ class << self
9
+ attr_writer :configuration
10
+ end
11
+
12
+ def self.configuration
13
+ @configuration ||= Configuration.new
14
+ end
15
+
16
+ def self.configure
17
+ yield(configuration)
18
+ end
19
+
20
+ class Configuration
21
+ attr_accessor :host, :payload
22
+ end
23
+
24
+ class Payload
25
+ def deliver(dp = "/")
26
+ conn = Faraday.new(:url => "http://#{Truck.configuration.host}") do |faraday|
27
+ faraday.request :url_encoded # form-encode POST params
28
+ faraday.response :logger # log requests to STDOUT
29
+ faraday.adapter Faraday.default_adapter # make requests with Net::HTTP
30
+ end
31
+
32
+ conn.post "", Truck.configuration.payload.merge({ :dp => dp })
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,14 @@
1
+ module Truck
2
+ class Version
3
+ MAJOR = 0
4
+ MINOR = 0
5
+ PATCH = 0
6
+ PRE = nil
7
+
8
+ class << self
9
+ def to_s
10
+ [MAJOR, MINOR, PATCH, PRE].compact.join('.')
11
+ end
12
+ end
13
+ end
14
+ end
data/lib/truck.rb ADDED
@@ -0,0 +1,2 @@
1
+ require 'truck/truck'
2
+ require 'truck/version'
@@ -0,0 +1,7 @@
1
+ require 'minitest'
2
+ require 'minitest/autorun'
3
+ require 'minitest/reporters'
4
+
5
+ require 'truck'
6
+
7
+ Minitest::Reporters.use! Minitest::Reporters::SpecReporter.new
@@ -0,0 +1,24 @@
1
+ require 'test_helper'
2
+
3
+ class TestTruck < Minitest::Test
4
+
5
+ class Dummy
6
+ include Truck
7
+ end
8
+
9
+ def setup
10
+ Truck.configure do |config|
11
+ config.host = '0.0.0.0'
12
+ config.payload = { :send => 'me' }
13
+ end
14
+ end
15
+
16
+ def test_configure
17
+ assert_equal(Truck.configuration.payload, { :send => 'me' })
18
+ assert_equal(Truck.configuration.host, '0.0.0.0')
19
+ end
20
+
21
+ def test_payload
22
+ assert_instance_of Truck::Payload, Dummy.new.payload
23
+ end
24
+ end
data/truck.gemspec ADDED
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'truck/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "truck_you"
8
+ spec.version = Truck::Version
9
+ spec.authors = ["Dave De Carlo, Bryan Mulvihill"]
10
+ spec.email = ["dec114@gmail.com, mulvihill.bryan@gmail.com"]
11
+ spec.summary = %q{A Ruby interface to google analytics}
12
+ spec.homepage = "https://github.com/quotha/truck"
13
+ spec.description = "Keep truckin"
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_dependency 'faraday', '~> 0.9.0'
22
+ spec.add_development_dependency "bundler", "~> 1.6"
23
+ spec.add_development_dependency "rake", '~> 0'
24
+ spec.add_development_dependency "minitest"
25
+ spec.add_development_dependency "minitest-reporters"
26
+ end
metadata ADDED
@@ -0,0 +1,128 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: truck_you
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Dave De Carlo, Bryan Mulvihill
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-11-04 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: faraday
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.9.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 0.9.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.6'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.6'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
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: minitest
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-reporters
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
+ description: Keep truckin
84
+ email:
85
+ - dec114@gmail.com, mulvihill.bryan@gmail.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - ".gitignore"
91
+ - Gemfile
92
+ - Gemfile.lock
93
+ - LICENSE.txt
94
+ - README.md
95
+ - Rakefile
96
+ - lib/truck.rb
97
+ - lib/truck/truck.rb
98
+ - lib/truck/version.rb
99
+ - test/test_helper.rb
100
+ - test/test_truck.rb
101
+ - truck.gemspec
102
+ homepage: https://github.com/quotha/truck
103
+ licenses:
104
+ - MIT
105
+ metadata: {}
106
+ post_install_message:
107
+ rdoc_options: []
108
+ require_paths:
109
+ - lib
110
+ required_ruby_version: !ruby/object:Gem::Requirement
111
+ requirements:
112
+ - - ">="
113
+ - !ruby/object:Gem::Version
114
+ version: '0'
115
+ required_rubygems_version: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - ">="
118
+ - !ruby/object:Gem::Version
119
+ version: '0'
120
+ requirements: []
121
+ rubyforge_project:
122
+ rubygems_version: 2.4.5
123
+ signing_key:
124
+ specification_version: 4
125
+ summary: A Ruby interface to google analytics
126
+ test_files:
127
+ - test/test_helper.rb
128
+ - test/test_truck.rb