upshot 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/.gitignore +2 -0
- data/Gemfile +2 -0
- data/lib/upshot.rb +4 -0
- data/lib/upshot/version.rb +3 -0
- data/lib/version.rb +3 -0
- data/upshot.gemspec +19 -0
- metadata +52 -0
checksums.yaml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
MmY3YzBkZjMyOTk4YWNhZGIwMmJjMmIwNDhlMDI1MjczMjVjMGViYg==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
YzY2NjczMzA1NDM2YzIwNTU1ODkwYmU0OTA5YjkzYjNhNDg3ODVhNg==
|
7
|
+
SHA512:
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
ZjA4NWI1OTE3NzE4YmRhNjMyNzRiZGFmMjBiY2RhNTA0NWI4NTdiYzFjMDgz
|
10
|
+
OWQ5ZjdhMDhkOTY3MzNhZTk2NjdlOTJlZTQwNWZiZDdlMDMwZjNiMTUwOWQx
|
11
|
+
YzI1ZTk2MzNjMzdlNWU5OTE2OWU4ZWI1MmJkNWFmZGUyNjE3Zjg=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
YWI1OWEzZWEzNTMyMjA4MzFjYmY3ZjgwOGE2ZWMxMGI3NmExNzIwZTgwNDcx
|
14
|
+
OTFmMzhhNWU1OTdjZGYzNjhkM2E0Yjc5MWI3NWU2YjJlYmZjYTBjZTJiNzM1
|
15
|
+
OGFjMjBjNzkwZDRjMTI1Y2YyMGQwMmVlMzUwNTI5M2NlZjU4OWY=
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/lib/upshot.rb
ADDED
data/lib/version.rb
ADDED
data/upshot.gemspec
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
|
4
|
+
require 'upshot/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = "upshot"
|
8
|
+
s.version = Upshot::VERSION
|
9
|
+
s.platform = Gem::Platform::RUBY
|
10
|
+
s.authors = ["Nelson Gauthier", "Pierre Carrier"]
|
11
|
+
s.email = ["nelson@airbnb.com", "pierre.carrier@airbnb.com"]
|
12
|
+
s.homepage = "https://github.com/airbnb/upshot-ruby"
|
13
|
+
s.summary = "ActiveRecord query execution tracing over UDP"
|
14
|
+
s.description = s.summary
|
15
|
+
|
16
|
+
s.files = `git ls-files`.split("\n")
|
17
|
+
s.test_files = `git ls-files -- spec/*`.split("\n")
|
18
|
+
s.require_path = 'lib'
|
19
|
+
end
|
metadata
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: upshot
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Nelson Gauthier
|
8
|
+
- Pierre Carrier
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2014-03-13 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: ActiveRecord query execution tracing over UDP
|
15
|
+
email:
|
16
|
+
- nelson@airbnb.com
|
17
|
+
- pierre.carrier@airbnb.com
|
18
|
+
executables: []
|
19
|
+
extensions: []
|
20
|
+
extra_rdoc_files: []
|
21
|
+
files:
|
22
|
+
- .gitignore
|
23
|
+
- Gemfile
|
24
|
+
- lib/upshot.rb
|
25
|
+
- lib/upshot/version.rb
|
26
|
+
- lib/version.rb
|
27
|
+
- upshot.gemspec
|
28
|
+
homepage: https://github.com/airbnb/upshot-ruby
|
29
|
+
licenses: []
|
30
|
+
metadata: {}
|
31
|
+
post_install_message:
|
32
|
+
rdoc_options: []
|
33
|
+
require_paths:
|
34
|
+
- lib
|
35
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - ! '>='
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '0'
|
40
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
41
|
+
requirements:
|
42
|
+
- - ! '>='
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: '0'
|
45
|
+
requirements: []
|
46
|
+
rubyforge_project:
|
47
|
+
rubygems_version: 2.1.3
|
48
|
+
signing_key:
|
49
|
+
specification_version: 4
|
50
|
+
summary: ActiveRecord query execution tracing over UDP
|
51
|
+
test_files: []
|
52
|
+
has_rdoc:
|