brauser 3.2.1 → 3.2.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.
Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/.travis-gemfile +1 -1
  3. data/Gemfile +1 -1
  4. data/README.md +1 -1
  5. data/Rakefile +1 -1
  6. data/brauser.gemspec +2 -2
  7. data/doc/Brauser.html +2 -2
  8. data/doc/Brauser/Browser.html +1 -1
  9. data/doc/Brauser/BrowserMethods.html +1 -1
  10. data/doc/Brauser/BrowserMethods/Attributes.html +1 -1
  11. data/doc/Brauser/BrowserMethods/General.html +1 -1
  12. data/doc/Brauser/BrowserMethods/General/ClassMethods.html +1 -1
  13. data/doc/Brauser/BrowserMethods/Parsing.html +1 -1
  14. data/doc/Brauser/BrowserMethods/PartialQuerying.html +1 -1
  15. data/doc/Brauser/BrowserMethods/Querying.html +1 -1
  16. data/doc/Brauser/BrowserMethods/Register.html +1 -1
  17. data/doc/Brauser/BrowserMethods/Register/ClassMethods.html +1 -1
  18. data/doc/Brauser/Chainers.html +1 -1
  19. data/doc/Brauser/Definition.html +1 -1
  20. data/doc/Brauser/Hooks.html +1 -1
  21. data/doc/Brauser/Hooks/RubyOnRails.html +1 -1
  22. data/doc/Brauser/Queries.html +1 -1
  23. data/doc/Brauser/Query.html +1 -1
  24. data/doc/Brauser/Version.html +2 -2
  25. data/doc/_index.html +1 -1
  26. data/doc/file.README.html +2 -2
  27. data/doc/index.html +2 -2
  28. data/doc/top-level-namespace.html +1 -1
  29. data/lib/brauser.rb +1 -1
  30. data/lib/brauser/browser.rb +1 -1
  31. data/lib/brauser/definition.rb +1 -1
  32. data/lib/brauser/hooks.rb +1 -1
  33. data/lib/brauser/query.rb +1 -1
  34. data/lib/brauser/version.rb +2 -2
  35. data/spec/brauser/browser_spec.rb +1 -1
  36. data/spec/brauser/definition_spec.rb +1 -1
  37. data/spec/brauser/hooks_spec.rb +1 -1
  38. data/spec/brauser/query_spec.rb +1 -1
  39. data/spec/coverage_helper.rb +1 -1
  40. data/spec/spec_helper.rb +1 -1
  41. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f8176421815b3e1b650c42fd1b02b4379f65925f
4
- data.tar.gz: d3869af1f3d2c0effc795caec2735b9f872cebb2
3
+ metadata.gz: eacc522adfe7a1ee8fd5d6c5efb0787ef449eb97
4
+ data.tar.gz: cdd189313289611e8d675fe72eeee7b30e64cc9d
5
5
  SHA512:
6
- metadata.gz: ac75eb86f42070904445bfd7951826ca4df8bd131e69ae71992d8784d06f52eb68d12d6106fa14385c20833612eca40adf0d9601fa8e6fe22859c0dacbdc672a
7
- data.tar.gz: 39fcd66d0c8cb271b97f2a28cf906c8692f1159f538a792b391485426a4d4ee727f33bf4387ad2d030a2f4ddd61113a18f6d7412f886caa9cafbbbb644eb93c6
6
+ metadata.gz: 1fbaf4ba4299809938b887252053810e0a8ae3c7e9e9cea3ee597bb229b2014da5207ababcc53a08cfe5b22e4d204c1341f3793c0823851594694fbe5c5702c5
7
+ data.tar.gz: e94f604347eed13eef8f9b48a8375fb79435d8896413d81c4940b405cd0f7e13d0b92f7c3f6124acb3f1cbd034b9c521a45b6321ec5199503014c690f161462e
data/.travis-gemfile CHANGED
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
data/Gemfile CHANGED
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
data/README.md CHANGED
@@ -198,6 +198,6 @@ Brauser::Browsers.add(:languages, ::Brauser::Definition.new(:it, "Italian"))
198
198
 
199
199
  ## Copyright
200
200
 
201
- Copyright (C) 2013 and above Shogun (shogun_panda@cowtech.it).
201
+ Copyright (C) 2013 and above Shogun (shogun@cowtech.it).
202
202
 
203
203
  Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
data/Rakefile CHANGED
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
data/brauser.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -15,7 +15,7 @@ Gem::Specification.new do |gem|
15
15
  gem.rubyforge_project = "brauser"
16
16
 
17
17
  gem.authors = ["Shogun"]
18
- gem.email = ["shogun_panda@cowtech.it"]
18
+ gem.email = ["shogun@cowtech.it"]
19
19
 
20
20
  gem.files = `git ls-files`.split($\)
21
21
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
data/doc/Brauser.html CHANGED
@@ -88,7 +88,7 @@
88
88
 
89
89
  <h2>Overview</h2><div class="docstring">
90
90
  <div class="discussion">
91
- <p>This file is part of the brauser gem. Copyright (C) 2013 and above Shogun &lt;shogun_panda@cowtech.it&gt;.
91
+ <p>This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <a href="&#109;&#097;&#105;&#108;&#116;&#111;:&#115;&#104;&#111;&#103;&#117;&#110;&#064;&#099;&#111;&#119;&#116;&#101;&#099;&#104;&#046;&#105;&#116;">&#115;&#104;&#111;&#103;&#117;&#110;&#064;&#099;&#111;&#119;&#116;&#101;&#099;&#104;&#046;&#105;&#116;</a>.
92
92
  Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.</p>
93
93
 
94
94
 
@@ -121,7 +121,7 @@ Licensed under the MIT license, which can be found at http://www.opensource.org/
121
121
  </div>
122
122
 
123
123
  <div id="footer">
124
- Generated on Sat Aug 17 12:40:12 2013 by
124
+ Generated on Sun Aug 18 16:30:30 2013 by
125
125
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
126
126
  0.8.7 (ruby-2.0.0).
127
127
  </div>
@@ -2572,7 +2572,7 @@ browser.is_msie_v_gt_4_1_on_windows?
2572
2572
  </div>
2573
2573
 
2574
2574
  <div id="footer">
2575
- Generated on Sat Aug 17 12:40:13 2013 by
2575
+ Generated on Sun Aug 18 16:30:30 2013 by
2576
2576
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
2577
2577
  0.8.7 (ruby-2.0.0).
2578
2578
  </div>
@@ -116,7 +116,7 @@
116
116
  </div>
117
117
 
118
118
  <div id="footer">
119
- Generated on Sat Aug 17 12:40:12 2013 by
119
+ Generated on Sun Aug 18 16:30:30 2013 by
120
120
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
121
121
  0.8.7 (ruby-2.0.0).
122
122
  </div>
@@ -476,7 +476,7 @@
476
476
  </div>
477
477
 
478
478
  <div id="footer">
479
- Generated on Sat Aug 17 12:40:12 2013 by
479
+ Generated on Sun Aug 18 16:30:30 2013 by
480
480
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
481
481
  0.8.7 (ruby-2.0.0).
482
482
  </div>
@@ -125,7 +125,7 @@
125
125
  </div>
126
126
 
127
127
  <div id="footer">
128
- Generated on Sat Aug 17 12:40:12 2013 by
128
+ Generated on Sun Aug 18 16:30:30 2013 by
129
129
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
130
130
  0.8.7 (ruby-2.0.0).
131
131
  </div>
@@ -520,7 +520,7 @@
520
520
  </div>
521
521
 
522
522
  <div id="footer">
523
- Generated on Sat Aug 17 12:40:12 2013 by
523
+ Generated on Sun Aug 18 16:30:30 2013 by
524
524
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
525
525
  0.8.7 (ruby-2.0.0).
526
526
  </div>
@@ -341,7 +341,7 @@
341
341
  </div>
342
342
 
343
343
  <div id="footer">
344
- Generated on Sat Aug 17 12:40:12 2013 by
344
+ Generated on Sun Aug 18 16:30:30 2013 by
345
345
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
346
346
  0.8.7 (ruby-2.0.0).
347
347
  </div>
@@ -608,7 +608,7 @@
608
608
  </div>
609
609
 
610
610
  <div id="footer">
611
- Generated on Sat Aug 17 12:40:13 2013 by
611
+ Generated on Sun Aug 18 16:30:30 2013 by
612
612
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
613
613
  0.8.7 (ruby-2.0.0).
614
614
  </div>
@@ -574,7 +574,7 @@
574
574
  </div>
575
575
 
576
576
  <div id="footer">
577
- Generated on Sat Aug 17 12:40:13 2013 by
577
+ Generated on Sun Aug 18 16:30:30 2013 by
578
578
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
579
579
  0.8.7 (ruby-2.0.0).
580
580
  </div>
@@ -125,7 +125,7 @@
125
125
  </div>
126
126
 
127
127
  <div id="footer">
128
- Generated on Sat Aug 17 12:40:12 2013 by
128
+ Generated on Sun Aug 18 16:30:30 2013 by
129
129
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
130
130
  0.8.7 (ruby-2.0.0).
131
131
  </div>
@@ -761,7 +761,7 @@
761
761
  </div>
762
762
 
763
763
  <div id="footer">
764
- Generated on Sat Aug 17 12:40:12 2013 by
764
+ Generated on Sun Aug 18 16:30:30 2013 by
765
765
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
766
766
  0.8.7 (ruby-2.0.0).
767
767
  </div>
@@ -582,7 +582,7 @@
582
582
  </div>
583
583
 
584
584
  <div id="footer">
585
- Generated on Sat Aug 17 12:40:12 2013 by
585
+ Generated on Sun Aug 18 16:30:30 2013 by
586
586
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
587
587
  0.8.7 (ruby-2.0.0).
588
588
  </div>
@@ -1026,7 +1026,7 @@ This class represents a detection of the current user browser.</p>
1026
1026
  </div>
1027
1027
 
1028
1028
  <div id="footer">
1029
- Generated on Sat Aug 17 12:40:13 2013 by
1029
+ Generated on Sun Aug 18 16:30:31 2013 by
1030
1030
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1031
1031
  0.8.7 (ruby-2.0.0).
1032
1032
  </div>
@@ -116,7 +116,7 @@
116
116
  </div>
117
117
 
118
118
  <div id="footer">
119
- Generated on Sat Aug 17 12:40:12 2013 by
119
+ Generated on Sun Aug 18 16:30:30 2013 by
120
120
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
121
121
  0.8.7 (ruby-2.0.0).
122
122
  </div>
@@ -323,7 +323,7 @@
323
323
  </div>
324
324
 
325
325
  <div id="footer">
326
- Generated on Sat Aug 17 12:40:12 2013 by
326
+ Generated on Sun Aug 18 16:30:30 2013 by
327
327
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
328
328
  0.8.7 (ruby-2.0.0).
329
329
  </div>
@@ -582,7 +582,7 @@
582
582
  </div>
583
583
 
584
584
  <div id="footer">
585
- Generated on Sat Aug 17 12:40:12 2013 by
585
+ Generated on Sun Aug 18 16:30:30 2013 by
586
586
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
587
587
  0.8.7 (ruby-2.0.0).
588
588
  </div>
@@ -503,7 +503,7 @@ Brauser::Browser.new.is(:msie).v("&gt;= 7").on?(:windows)
503
503
  </div>
504
504
 
505
505
  <div id="footer">
506
- Generated on Sat Aug 17 12:40:13 2013 by
506
+ Generated on Sun Aug 18 16:30:30 2013 by
507
507
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
508
508
  0.8.7 (ruby-2.0.0).
509
509
  </div>
@@ -149,7 +149,7 @@
149
149
 
150
150
  </div>
151
151
  </dt>
152
- <dd><pre class="code"><span class='int'>1</span></pre></dd>
152
+ <dd><pre class="code"><span class='int'>2</span></pre></dd>
153
153
 
154
154
  <dt id="STRING-constant" class="">STRING =
155
155
  <div class="docstring">
@@ -180,7 +180,7 @@
180
180
  </div>
181
181
 
182
182
  <div id="footer">
183
- Generated on Sat Aug 17 12:40:13 2013 by
183
+ Generated on Sun Aug 18 16:30:30 2013 by
184
184
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
185
185
  0.8.7 (ruby-2.0.0).
186
186
  </div>
data/doc/_index.html CHANGED
@@ -295,7 +295,7 @@
295
295
  </div>
296
296
 
297
297
  <div id="footer">
298
- Generated on Sat Aug 17 12:40:12 2013 by
298
+ Generated on Sun Aug 18 16:30:30 2013 by
299
299
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
300
300
  0.8.7 (ruby-2.0.0).
301
301
  </div>
data/doc/file.README.html CHANGED
@@ -263,13 +263,13 @@ Brauser::Browsers.add(:languages, ::Brauser::Definition.new(:it, "Italian"))
263
263
 
264
264
  <h2 id="copyright">Copyright</h2>
265
265
 
266
- <p>Copyright (C) 2013 and above Shogun (shogun_panda@cowtech.it).</p>
266
+ <p>Copyright (C) 2013 and above Shogun (shogun@cowtech.it).</p>
267
267
 
268
268
  <p>Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.</p>
269
269
  </div></div>
270
270
 
271
271
  <div id="footer">
272
- Generated on Sat Aug 17 12:40:12 2013 by
272
+ Generated on Sun Aug 18 16:30:30 2013 by
273
273
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
274
274
  0.8.7 (ruby-2.0.0).
275
275
  </div>
data/doc/index.html CHANGED
@@ -263,13 +263,13 @@ Brauser::Browsers.add(:languages, ::Brauser::Definition.new(:it, "Italian"))
263
263
 
264
264
  <h2 id="copyright">Copyright</h2>
265
265
 
266
- <p>Copyright (C) 2013 and above Shogun (shogun_panda@cowtech.it).</p>
266
+ <p>Copyright (C) 2013 and above Shogun (shogun@cowtech.it).</p>
267
267
 
268
268
  <p>Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.</p>
269
269
  </div></div>
270
270
 
271
271
  <div id="footer">
272
- Generated on Sat Aug 17 12:40:12 2013 by
272
+ Generated on Sun Aug 18 16:30:30 2013 by
273
273
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
274
274
  0.8.7 (ruby-2.0.0).
275
275
  </div>
@@ -103,7 +103,7 @@
103
103
  </div>
104
104
 
105
105
  <div id="footer">
106
- Generated on Sat Aug 17 12:40:12 2013 by
106
+ Generated on Sun Aug 18 16:30:30 2013 by
107
107
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
108
108
  0.8.7 (ruby-2.0.0).
109
109
  </div>
data/lib/brauser.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
data/lib/brauser/hooks.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
data/lib/brauser/query.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -16,7 +16,7 @@ module Brauser
16
16
  MINOR = 2
17
17
 
18
18
  # The patch version.
19
- PATCH = 1
19
+ PATCH = 2
20
20
 
21
21
  # The current version of brauser.
22
22
  STRING = [MAJOR, MINOR, PATCH].compact.join(".")
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
data/spec/spec_helper.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the brauser gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brauser
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.1
4
+ version: 3.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shogun
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-08-17 00:00:00.000000000 Z
11
+ date: 2013-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: lazier
@@ -26,7 +26,7 @@ dependencies:
26
26
  version: 3.3.1
27
27
  description: A framework agnostic browser detection and querying helper.
28
28
  email:
29
- - shogun_panda@cowtech.it
29
+ - shogun@cowtech.it
30
30
  executables: []
31
31
  extensions: []
32
32
  extra_rdoc_files: []