speedos 0.0.10 → 0.0.11
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 +4 -4
- data/Gemfile +1 -0
- data/Gemfile.lock +11 -5
- data/README.md +2 -1
- data/speedos.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4a05784e3dc6dad87f1ec5c55a6df8f2e93ca327
|
|
4
|
+
data.tar.gz: 9aa76e9795b058283fd0e2ddcb2199180aefc25d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 270c943ecf10c705e220265d966e461b310aceb5f10da8117c5552081a8d8ec0d35363c0d2d06b839bab00d1f598b11d3a91d8c3c600878d5ec0b8c1e8730b6a
|
|
7
|
+
data.tar.gz: 217745696d7e639e51323f137ae49881b6b46ea85625e1b48f92c01925d3789891e783743f57f70c3e87d96f3db4d5d88c05b7b3819af4eca3156513bfc9dd32
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,16 @@
|
|
|
1
|
+
GIT
|
|
2
|
+
remote: https://github.com/PeterWuMC/har.git
|
|
3
|
+
revision: 83ccefb7f0b98f6c721b91c75a86a29ed6e1d68f
|
|
4
|
+
specs:
|
|
5
|
+
har (0.0.10)
|
|
6
|
+
jschematic (>= 0.1.0)
|
|
7
|
+
json
|
|
8
|
+
launchy (>= 0.3.7)
|
|
9
|
+
|
|
1
10
|
PATH
|
|
2
11
|
remote: .
|
|
3
12
|
specs:
|
|
4
|
-
speedos (0.0.
|
|
13
|
+
speedos (0.0.10)
|
|
5
14
|
browsermob-proxy (= 0.1.3)
|
|
6
15
|
capybara (= 2.1.0)
|
|
7
16
|
faker (= 1.1.2)
|
|
@@ -38,10 +47,6 @@ GEM
|
|
|
38
47
|
faker (1.1.2)
|
|
39
48
|
i18n (~> 0.5)
|
|
40
49
|
ffi (1.9.0)
|
|
41
|
-
har (0.0.9)
|
|
42
|
-
jschematic (>= 0.1.0)
|
|
43
|
-
json
|
|
44
|
-
launchy (>= 0.3.7)
|
|
45
50
|
i18n (0.6.5)
|
|
46
51
|
jschematic (0.1.0)
|
|
47
52
|
addressable
|
|
@@ -84,5 +89,6 @@ PLATFORMS
|
|
|
84
89
|
|
|
85
90
|
DEPENDENCIES
|
|
86
91
|
database_cleaner
|
|
92
|
+
har!
|
|
87
93
|
rspec
|
|
88
94
|
speedos!
|
data/README.md
CHANGED
|
@@ -4,9 +4,10 @@
|
|
|
4
4
|
Speedos incorporates [BrowserMob Proxy](http://bmp.lightbody.net) along with [Capybara](https://github.com/jnicklas/capybara), recording the web traffic and time taken to load all elements on each of the pages within a user journey. The aim is to identify any performance related issues, such as specific items that take a long time to load on page.
|
|
5
5
|
|
|
6
6
|
## Installation
|
|
7
|
-
Put speedos on your Gemfile
|
|
7
|
+
Put speedos on your Gemfile and using the new HarView
|
|
8
8
|
|
|
9
9
|
gem 'speedos'
|
|
10
|
+
gem 'har', git: 'https://github.com/PeterWuMC/har.git'
|
|
10
11
|
|
|
11
12
|
Or, install it via rubygem
|
|
12
13
|
|
data/speedos.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: speedos
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- SimplyBusiness
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-
|
|
11
|
+
date: 2013-10-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: mongoid
|