profile_it 0.2.4

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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: d573ff0189d9da94ba162a1c7a85bc5845877ca3
4
+ data.tar.gz: c3745baa0f8c4b7fa65510a2b0d57b9f7b9f7b2e
5
+ SHA512:
6
+ metadata.gz: 12de494139905f73cc8ab64a1cb25540e3be0b50e871a98e2b2e12e5346ceecc60229a802f5bb89f58970a318a95143e40ab055506bbb502393a9ae59335930a
7
+ data.tar.gz: bee7bd235b5e582f729d0eae5ea9f19014d6222e8e2098de8a28c526d86cacd02827cd97351fabe097768f350ef8a6741ad50e922a699ca20676729dd86a3f04
data/.gitignore ADDED
@@ -0,0 +1,7 @@
1
+ ./**/.DS_Store
2
+ *.gem
3
+ .bundle
4
+ Gemfile.lock
5
+ pkg/*
6
+ .rvmrc
7
+ .idea
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ ruby-2.2.0
@@ -0,0 +1,19 @@
1
+ # 0.2.4
2
+
3
+ * Completing TransactionProfile => Profile rename
4
+
5
+ # 0.2.3
6
+
7
+ * send version information and GUIDs from the extension
8
+
9
+ # 0.2.2
10
+
11
+ * SSL connections to host
12
+
13
+ # 0.2.0
14
+
15
+ * Internal Alpha. Loosened constraints on when profiling is enabled.
16
+
17
+ # 0.1.0
18
+
19
+ * Initial Development
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in profile_it.gemspec
4
+ gemspec
data/LICENSE.markdown ADDED
@@ -0,0 +1,7 @@
1
+ # GPL Version 2
2
+
3
+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
4
+
5
+ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
6
+
7
+ http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
data/README.markdown ADDED
@@ -0,0 +1,40 @@
1
+ # ProfileIt
2
+
3
+ A Ruby gem for detailed Rails profiling analysis. Metrics are reported to [profileit.io](https://profileit.io).
4
+
5
+ ## Getting Started
6
+
7
+ Install the gem:
8
+
9
+ gem install profile_it
10
+
11
+ Signup for a [profileit.io](https://profileit.io) account and copy the config file to `RAILS_ROOT/config/profile_it.yml`.
12
+
13
+ Your config file should look like:
14
+
15
+ common: &defaults
16
+ name: YOUR_APPLICATION_NAME
17
+ key: YOUR_APPLICATION_KEY
18
+ profile: true
19
+
20
+ production:
21
+ <<: *defaults
22
+
23
+ ## Supported Frameworks
24
+
25
+ * Rails 2.2 through Rails 4
26
+
27
+ ## Supported Rubies
28
+
29
+ * Ruby 1.8.7 through Ruby 2.1.2
30
+
31
+ ## Supported Application Servers
32
+
33
+ * Phusion Passenger
34
+ * Thin
35
+ * WEBrick
36
+ * Unicorn (make sure to add `preload_app true` to `config/unicorn.rb`)
37
+
38
+ ## Help
39
+
40
+ Email support@profileit.io if you need a hand.
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"