speedly 0.1.1 → 0.1.2

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c04d02a9de64bbb643058471ffc8c1f8fb81e9a7
4
+ data.tar.gz: 731e0a85d9c937f3810b1c602c2a998db616bcdf
5
+ SHA512:
6
+ metadata.gz: 8e8c8cb4e42dc258fee2fe51d9290be1ca7b9c3813a5a5177eb5e0a3a79352dff9f96feccecd0490790c89d4fef6c849e283d407e748c210e0541a24b58bc533
7
+ data.tar.gz: 973cf24c64c38f97ac1bdf94494176c22c54a55350f5942d9ffb394d6e3ff86b9b878cd27405ce375e1b06c37a8e0bf660098cfbef74850b30611ad72f765505
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2013 Daniel Bayerlein
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md CHANGED
@@ -1,9 +1,12 @@
1
1
  # Speedly
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/speedly.png)](http://badge.fury.io/rb/speedly)
4
+ [![Dependency Status](https://gemnasium.com/danielbayerlein/speedly.png)](https://gemnasium.com/danielbayerlein/speedly)
5
+
3
6
  Speedly is a simple CLI tool to test your page speed performance. It works with
4
7
  [YSlow](https://github.com/marcelduran/yslow).
5
8
 
6
- ## Requirements
9
+ ## Dependency
7
10
 
8
11
  Speedly use [PhantomJS](https://github.com/ariya/phantomjs).
9
12
 
@@ -71,7 +74,7 @@ Size: 419 kB (429499 B)
71
74
  ```
72
75
  $ speedly -v
73
76
 
74
- Speedly version 0.1.0
77
+ Speedly version 0.1.2
75
78
  ```
76
79
 
77
80
  `-h, --help` display the help message:
@@ -88,7 +91,7 @@ Usage: speedly [--url[=<url>,=<url>]] [--advanced] [--version]
88
91
 
89
92
  ## Special Thanks
90
93
 
91
- * [Sven Winkler (@sven-q)](https://github.com/sven-q) - For the name and suggestions for
94
+ * [Sven Winkler (@svenwin)](https://github.com/svenwin) - For the name and suggestions for
92
95
  improvement.
93
96
  * [Ariya Hidayat (@ariya)](https://github.com/ariya) - [PhantomJS](https://github.com/ariya/phantomjs)
94
97
  * [Marcel Duran (@marcelduran)](https://github.com/marcelduran) - [YSlow](https://github.com/marcelduran/yslow)
@@ -103,4 +106,4 @@ improvement.
103
106
 
104
107
  ## Copyright
105
108
 
106
- Copyright (c) 2013 Daniel Bayerlein. See [LICENSE](LICENSE) for details.
109
+ Copyright (c) 2013 Daniel Bayerlein. See [LICENSE](./LICENSE.md) for details.
@@ -1,3 +1,3 @@
1
1
  module Speedly
2
- VERSION = '0.1.1'
2
+ VERSION = '0.1.2'
3
3
  end
@@ -19,10 +19,10 @@ Gem::Specification.new do |gem|
19
19
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
20
20
  gem.require_paths = ['lib']
21
21
 
22
- gem.add_runtime_dependency 'json', '~> 1.7.7'
23
- gem.add_runtime_dependency 'slop', '~> 3.4.3'
24
- gem.add_runtime_dependency 'term-ansicolor', '~> 1.1.1'
22
+ gem.add_runtime_dependency 'json', '~> 1.8.0'
23
+ gem.add_runtime_dependency 'slop', '~> 3.4.5'
24
+ gem.add_runtime_dependency 'term-ansicolor', '~> 1.2.2'
25
25
 
26
26
  gem.add_development_dependency 'rspec', '~> 2.13.0'
27
- gem.add_development_dependency 'fuubar', '~> 1.1.0'
27
+ gem.add_development_dependency 'fuubar', '~> 1.1.1'
28
28
  end
metadata CHANGED
@@ -1,68 +1,60 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: speedly
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
5
- prerelease:
4
+ version: 0.1.2
6
5
  platform: ruby
7
6
  authors:
8
7
  - Daniel Bayerlein
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-03-09 00:00:00.000000000 Z
11
+ date: 2013-06-08 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: json
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
17
  - - ~>
20
18
  - !ruby/object:Gem::Version
21
- version: 1.7.7
19
+ version: 1.8.0
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
24
  - - ~>
28
25
  - !ruby/object:Gem::Version
29
- version: 1.7.7
26
+ version: 1.8.0
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: slop
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
31
  - - ~>
36
32
  - !ruby/object:Gem::Version
37
- version: 3.4.3
33
+ version: 3.4.5
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
38
  - - ~>
44
39
  - !ruby/object:Gem::Version
45
- version: 3.4.3
40
+ version: 3.4.5
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: term-ansicolor
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
45
  - - ~>
52
46
  - !ruby/object:Gem::Version
53
- version: 1.1.1
47
+ version: 1.2.2
54
48
  type: :runtime
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
52
  - - ~>
60
53
  - !ruby/object:Gem::Version
61
- version: 1.1.1
54
+ version: 1.2.2
62
55
  - !ruby/object:Gem::Dependency
63
56
  name: rspec
64
57
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
58
  requirements:
67
59
  - - ~>
68
60
  - !ruby/object:Gem::Version
@@ -70,7 +62,6 @@ dependencies:
70
62
  type: :development
71
63
  prerelease: false
72
64
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
65
  requirements:
75
66
  - - ~>
76
67
  - !ruby/object:Gem::Version
@@ -78,19 +69,17 @@ dependencies:
78
69
  - !ruby/object:Gem::Dependency
79
70
  name: fuubar
80
71
  requirement: !ruby/object:Gem::Requirement
81
- none: false
82
72
  requirements:
83
73
  - - ~>
84
74
  - !ruby/object:Gem::Version
85
- version: 1.1.0
75
+ version: 1.1.1
86
76
  type: :development
87
77
  prerelease: false
88
78
  version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
79
  requirements:
91
80
  - - ~>
92
81
  - !ruby/object:Gem::Version
93
- version: 1.1.0
82
+ version: 1.1.1
94
83
  description: A CLI tool to test your page speed performance.
95
84
  email:
96
85
  - daniel.bayerlein@googlemail.com
@@ -102,7 +91,7 @@ files:
102
91
  - .gitignore
103
92
  - .rspec
104
93
  - Gemfile
105
- - LICENSE
94
+ - LICENSE.md
106
95
  - README.md
107
96
  - Rakefile
108
97
  - bin/speedly
@@ -119,27 +108,26 @@ files:
119
108
  - speedly.gemspec
120
109
  homepage: https://github.com/danielbayerlein/speedly
121
110
  licenses: []
111
+ metadata: {}
122
112
  post_install_message:
123
113
  rdoc_options: []
124
114
  require_paths:
125
115
  - lib
126
116
  required_ruby_version: !ruby/object:Gem::Requirement
127
- none: false
128
117
  requirements:
129
- - - ! '>='
118
+ - - '>='
130
119
  - !ruby/object:Gem::Version
131
120
  version: '0'
132
121
  required_rubygems_version: !ruby/object:Gem::Requirement
133
- none: false
134
122
  requirements:
135
- - - ! '>='
123
+ - - '>='
136
124
  - !ruby/object:Gem::Version
137
125
  version: '0'
138
126
  requirements: []
139
127
  rubyforge_project:
140
- rubygems_version: 1.8.25
128
+ rubygems_version: 2.0.2
141
129
  signing_key:
142
- specification_version: 3
130
+ specification_version: 4
143
131
  summary: Speedly is a simple CLI tool to test your page speed performance. It works
144
132
  with YSlow.
145
133
  test_files:
data/LICENSE DELETED
@@ -1,22 +0,0 @@
1
- Copyright (c) 2013 Daniel Bayerlein
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.