selenium-webdriver 2.46.1 → 2.46.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (117) hide show
  1. data/CHANGES +7 -0
  2. data/Gemfile.lock +5 -5
  3. data/lib/selenium-client.rb +2 -0
  4. data/lib/selenium-webdriver.rb +2 -0
  5. data/lib/selenium/client.rb +2 -0
  6. data/lib/selenium/client/base.rb +2 -0
  7. data/lib/selenium/client/driver.rb +2 -0
  8. data/lib/selenium/client/errors.rb +2 -0
  9. data/lib/selenium/client/extensions.rb +19 -0
  10. data/lib/selenium/client/idiomatic.rb +2 -0
  11. data/lib/selenium/client/javascript_expression_builder.rb +2 -0
  12. data/lib/selenium/client/javascript_frameworks/jquery.rb +2 -0
  13. data/lib/selenium/client/javascript_frameworks/prototype.rb +2 -0
  14. data/lib/selenium/client/legacy_driver.rb +2 -0
  15. data/lib/selenium/client/protocol.rb +2 -0
  16. data/lib/selenium/client/selenium_helper.rb +2 -0
  17. data/lib/selenium/rake/server_task.rb +2 -0
  18. data/lib/selenium/server.rb +2 -0
  19. data/lib/selenium/webdriver.rb +2 -0
  20. data/lib/selenium/webdriver/android.rb +2 -0
  21. data/lib/selenium/webdriver/android/bridge.rb +2 -0
  22. data/lib/selenium/webdriver/chrome.rb +2 -0
  23. data/lib/selenium/webdriver/chrome/bridge.rb +2 -0
  24. data/lib/selenium/webdriver/chrome/profile.rb +2 -0
  25. data/lib/selenium/webdriver/chrome/service.rb +2 -0
  26. data/lib/selenium/webdriver/common.rb +2 -0
  27. data/lib/selenium/webdriver/common/action_builder.rb +2 -0
  28. data/lib/selenium/webdriver/common/alert.rb +2 -0
  29. data/lib/selenium/webdriver/common/bridge_helper.rb +2 -0
  30. data/lib/selenium/webdriver/common/core_ext/base64.rb +2 -0
  31. data/lib/selenium/webdriver/common/core_ext/dir.rb +2 -0
  32. data/lib/selenium/webdriver/common/core_ext/string.rb +2 -0
  33. data/lib/selenium/webdriver/common/driver.rb +2 -0
  34. data/lib/selenium/webdriver/common/driver_extensions/has_input_devices.rb +2 -0
  35. data/lib/selenium/webdriver/common/driver_extensions/has_location.rb +2 -0
  36. data/lib/selenium/webdriver/common/driver_extensions/has_network_connection.rb +2 -0
  37. data/lib/selenium/webdriver/common/driver_extensions/has_remote_status.rb +2 -0
  38. data/lib/selenium/webdriver/common/driver_extensions/has_session_id.rb +2 -0
  39. data/lib/selenium/webdriver/common/driver_extensions/has_touch_screen.rb +2 -0
  40. data/lib/selenium/webdriver/common/driver_extensions/has_web_storage.rb +2 -0
  41. data/lib/selenium/webdriver/common/driver_extensions/rotatable.rb +2 -0
  42. data/lib/selenium/webdriver/common/driver_extensions/takes_screenshot.rb +2 -0
  43. data/lib/selenium/webdriver/common/driver_extensions/uploads_files.rb +2 -0
  44. data/lib/selenium/webdriver/common/element.rb +2 -0
  45. data/lib/selenium/webdriver/common/error.rb +2 -0
  46. data/lib/selenium/webdriver/common/file_reaper.rb +2 -0
  47. data/lib/selenium/webdriver/common/html5/local_storage.rb +2 -0
  48. data/lib/selenium/webdriver/common/html5/location.rb +2 -0
  49. data/lib/selenium/webdriver/common/html5/session_storage.rb +2 -0
  50. data/lib/selenium/webdriver/common/html5/shared_web_storage.rb +2 -0
  51. data/lib/selenium/webdriver/common/json_helper.rb +2 -0
  52. data/lib/selenium/webdriver/common/keyboard.rb +2 -0
  53. data/lib/selenium/webdriver/common/keys.rb +2 -0
  54. data/lib/selenium/webdriver/common/log_entry.rb +2 -0
  55. data/lib/selenium/webdriver/common/logs.rb +2 -0
  56. data/lib/selenium/webdriver/common/mouse.rb +2 -0
  57. data/lib/selenium/webdriver/common/navigation.rb +2 -0
  58. data/lib/selenium/webdriver/common/options.rb +2 -0
  59. data/lib/selenium/webdriver/common/platform.rb +2 -0
  60. data/lib/selenium/webdriver/common/port_prober.rb +2 -0
  61. data/lib/selenium/webdriver/common/profile_helper.rb +2 -0
  62. data/lib/selenium/webdriver/common/proxy.rb +2 -0
  63. data/lib/selenium/webdriver/common/search_context.rb +2 -0
  64. data/lib/selenium/webdriver/common/socket_lock.rb +2 -0
  65. data/lib/selenium/webdriver/common/socket_poller.rb +2 -0
  66. data/lib/selenium/webdriver/common/target_locator.rb +2 -0
  67. data/lib/selenium/webdriver/common/timeouts.rb +2 -0
  68. data/lib/selenium/webdriver/common/touch_action_builder.rb +2 -0
  69. data/lib/selenium/webdriver/common/touch_screen.rb +2 -0
  70. data/lib/selenium/webdriver/common/wait.rb +2 -0
  71. data/lib/selenium/webdriver/common/window.rb +2 -0
  72. data/lib/selenium/webdriver/common/zipper.rb +2 -0
  73. data/lib/selenium/webdriver/firefox.rb +2 -0
  74. data/lib/selenium/webdriver/firefox/binary.rb +2 -0
  75. data/lib/selenium/webdriver/firefox/bridge.rb +2 -0
  76. data/lib/selenium/webdriver/firefox/extension.rb +2 -0
  77. data/lib/selenium/webdriver/firefox/extension/webdriver.xpi +0 -0
  78. data/lib/selenium/webdriver/firefox/launcher.rb +2 -0
  79. data/lib/selenium/webdriver/firefox/native/linux/amd64/x_ignore_nofocus.so +0 -0
  80. data/lib/selenium/webdriver/firefox/profile.rb +2 -0
  81. data/lib/selenium/webdriver/firefox/profiles_ini.rb +2 -0
  82. data/lib/selenium/webdriver/firefox/socket_lock.rb +17 -0
  83. data/lib/selenium/webdriver/firefox/util.rb +2 -0
  84. data/lib/selenium/webdriver/ie.rb +2 -0
  85. data/lib/selenium/webdriver/ie/bridge.rb +2 -0
  86. data/lib/selenium/webdriver/ie/server.rb +2 -0
  87. data/lib/selenium/webdriver/iphone.rb +2 -0
  88. data/lib/selenium/webdriver/iphone/bridge.rb +2 -0
  89. data/lib/selenium/webdriver/phantomjs.rb +2 -0
  90. data/lib/selenium/webdriver/phantomjs/bridge.rb +2 -0
  91. data/lib/selenium/webdriver/phantomjs/service.rb +2 -0
  92. data/lib/selenium/webdriver/remote.rb +2 -0
  93. data/lib/selenium/webdriver/remote/bridge.rb +2 -0
  94. data/lib/selenium/webdriver/remote/capabilities.rb +2 -0
  95. data/lib/selenium/webdriver/remote/commands.rb +2 -0
  96. data/lib/selenium/webdriver/remote/http/common.rb +2 -0
  97. data/lib/selenium/webdriver/remote/http/curb.rb +2 -0
  98. data/lib/selenium/webdriver/remote/http/default.rb +2 -0
  99. data/lib/selenium/webdriver/remote/http/persistent.rb +2 -0
  100. data/lib/selenium/webdriver/remote/response.rb +2 -0
  101. data/lib/selenium/webdriver/remote/server_error.rb +2 -0
  102. data/lib/selenium/webdriver/safari.rb +2 -0
  103. data/lib/selenium/webdriver/safari/bridge.rb +2 -0
  104. data/lib/selenium/webdriver/safari/browser.rb +2 -0
  105. data/lib/selenium/webdriver/safari/extensions.rb +2 -0
  106. data/lib/selenium/webdriver/safari/options.rb +2 -0
  107. data/lib/selenium/webdriver/safari/server.rb +2 -0
  108. data/lib/selenium/webdriver/support.rb +2 -0
  109. data/lib/selenium/webdriver/support/abstract_event_listener.rb +2 -0
  110. data/lib/selenium/webdriver/support/block_event_listener.rb +2 -0
  111. data/lib/selenium/webdriver/support/color.rb +2 -0
  112. data/lib/selenium/webdriver/support/event_firing_bridge.rb +2 -0
  113. data/lib/selenium/webdriver/support/select.rb +2 -0
  114. data/selenium-webdriver.gemspec +1 -1
  115. metadata +77 -79
  116. data/COPYING +0 -204
  117. data/lib/selenium/webdriver/common/driver_extensions/has_browser_connection.rb +0 -17
data/CHANGES CHANGED
@@ -1,3 +1,7 @@
1
+ 2.46.2 (2015-06-05)
2
+ ===================
3
+ * Fix encoding issue which prevents Element#send_keys to work on Ruby < 2.0 (#621)
4
+
1
5
  2.46.1 (2015-06-04)
2
6
  ===================
3
7
  * Fix aborted rubygems.org release
@@ -9,6 +13,9 @@ Firefox:
9
13
  * Support for Firefox 38
10
14
  * Fix performance bug by not forcing garbage collection in httpd.js
11
15
 
16
+ Chrome:
17
+ * Fixed ChromeDriver port race condition (#449 - thanks Jason Anderson)
18
+
12
19
  Ruby changes:
13
20
  * Retry binding to ports unavailable by EADDRNOTAVAIL (#394).
14
21
  * Remove Presto-Opera support (Blink-based Opera still supported)
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- selenium-webdriver (2.45.0.dev)
4
+ selenium-webdriver (2.47.0.dev)
5
5
  childprocess (~> 0.5)
6
6
  multi_json (~> 1.0)
7
7
  rubyzip (~> 1.0)
@@ -10,7 +10,7 @@ PATH
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- addressable (2.3.6)
13
+ addressable (2.3.7)
14
14
  builder (3.2.2)
15
15
  childprocess (0.5.5)
16
16
  ffi (~> 1.0, >= 1.0.11)
@@ -21,7 +21,7 @@ GEM
21
21
  diff-lcs (1.2.5)
22
22
  ffi (1.9.6)
23
23
  multi_json (1.10.1)
24
- rack (1.5.2)
24
+ rack (1.6.0)
25
25
  rspec (2.99.0)
26
26
  rspec-core (~> 2.99.0)
27
27
  rspec-expectations (~> 2.99.0)
@@ -29,8 +29,8 @@ GEM
29
29
  rspec-core (2.99.2)
30
30
  rspec-expectations (2.99.2)
31
31
  diff-lcs (>= 1.1.3, < 2.0)
32
- rspec-mocks (2.99.2)
33
- rubyzip (1.1.6)
32
+ rspec-mocks (2.99.3)
33
+ rubyzip (1.1.7)
34
34
  safe_yaml (1.0.4)
35
35
  webmock (1.20.4)
36
36
  addressable (>= 2.3.6)
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,22 @@
1
+ # encoding: utf-8
2
+ #
3
+ # Licensed to the Software Freedom Conservancy (SFC) under one
4
+ # or more contributor license agreements. See the NOTICE file
5
+ # distributed with this work for additional information
6
+ # regarding copyright ownership. The SFC licenses this file
7
+ # to you under the Apache License, Version 2.0 (the
8
+ # "License"); you may not use this file except in compliance
9
+ # with the License. You may obtain a copy of the License at
10
+ #
11
+ # http://www.apache.org/licenses/LICENSE-2.0
12
+ #
13
+ # Unless required by applicable law or agreed to in writing,
14
+ # software distributed under the License is distributed on an
15
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16
+ # KIND, either express or implied. See the License for the
17
+ # specific language governing permissions and limitations
18
+ # under the License.
19
+
1
20
  module Selenium
2
21
  module Client
3
22
 
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information