thirtysix 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +5 -0
  3. data/README.md +21 -0
  4. metadata +45 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 0b55c23d4307a9a8235c2314eb14a0543b684e41
4
+ data.tar.gz: 5d6e4307fac8bbe507c69d03db7921e7e9fbfbf1
5
+ SHA512:
6
+ metadata.gz: 63a49fbc2498f06507b0b9944a10cd28b840dc2203271ff9fc6e7f2ca2c7047b37d0ade247a16fd56015cfa9f2aaddc7c3455b1bc3d9ba9c7eb9977f5818c603
7
+ data.tar.gz: 74e3f69fde9255d287b1876cd002e2658060657bb567f5353866b78172aa536cae0e381f7a5629ed38c5614eed2780ea9da3461c3412676ee55d830d333f9525
data/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ source 'https://rubygems.org'
2
+
3
+ group :test do
4
+ gem 'rspec'
5
+ end
data/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # Thirtysix
2
+
3
+ A Rack middleware for instrumenting object creation in your rails app
4
+
5
+ ## Setup
6
+
7
+ ### Gemfile
8
+
9
+ Include this in the Gemfile of the app you want to instrument
10
+
11
+ `gem 'thirtysix', :require => 'thirtysix/rack/middleware'`
12
+
13
+ ### Environment
14
+
15
+ Set the following environment variables
16
+
17
+ `THIRTYSIX_URL` set this to `http://www.thirtysix.tech`
18
+
19
+ `THIRTYSIX_API_KEY`: An API key. Grab one from the [Valid API keys](http://www.thirtysix.tech/api_keys)
20
+
21
+ See also [Thirtysix App](https://github.com/gmoore/thirtysixapp)
metadata ADDED
@@ -0,0 +1,45 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: thirtysix
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Gary Moore
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-08-27 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Instrumentation for Rails Apps
14
+ email: gary.moore@gmail.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - Gemfile
20
+ - README.md
21
+ homepage: http://rubygems.org/gems/thirtysix
22
+ licenses:
23
+ - MIT
24
+ metadata: {}
25
+ post_install_message:
26
+ rdoc_options: []
27
+ require_paths:
28
+ - lib
29
+ required_ruby_version: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ required_rubygems_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ requirements: []
40
+ rubyforge_project:
41
+ rubygems_version: 2.6.11
42
+ signing_key:
43
+ specification_version: 4
44
+ summary: Instrumentation for Rails Apps
45
+ test_files: []