Skip to content

Commit 2b07d22

Browse files
committed
Fix URLs to replace http with https
1 parent db07b1c commit 2b07d22

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

.eslintrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ env:
99
jquery: true
1010
node: true
1111

12-
# http://eslint.org/docs/rules/
12+
# https://eslint.org/docs/rules/
1313
rules:
1414
# Possible Errors
1515
comma-dangle: [2, never]

CODE_OF_CONDUCT.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ members of the project's leadership.
6868
## Attribution
6969

7070
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71-
available at [http://contributor-covenant.org/version/1/4][version]
71+
available at [https://contributor-covenant.org/version/1/4][version]
7272

73-
[homepage]: http://contributor-covenant.org
74-
[version]: http://contributor-covenant.org/version/1/4/
73+
[homepage]: https://contributor-covenant.org
74+
[version]: https://contributor-covenant.org/version/1/4/

README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# [Split](http://libraries.io/rubygems/split)
1+
# [Split](https://libraries.io/rubygems/split)
22

33
[![Gem Version](https://badge.fury.io/rb/split.svg)](http://badge.fury.io/rb/split)
4-
[![Build Status](https://secure.travis-ci.org/splitrb/split.svg?branch=master)](http://travis-ci.org/splitrb/split)
4+
[![Build Status](https://secure.travis-ci.org/splitrb/split.svg?branch=master)](https://travis-ci.org/splitrb/split)
55
[![Code Climate](https://codeclimate.com/github/splitrb/split/badges/gpa.svg)](https://codeclimate.com/github/splitrb/split)
66
[![Test Coverage](https://codeclimate.com/github/splitrb/split/badges/coverage.svg)](https://codeclimate.com/github/splitrb/split/coverage)
77
[![standard-readme compliant](https://img.shields.io/badge/readme%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/RichardLitt/standard-readme)
88
[![Open Source Helpers](https://www.codetriage.com/splitrb/split/badges/users.svg)](https://www.codetriage.com/splitrb/split)
99

10-
> 📈 The Rack Based A/B testing framework http://libraries.io/rubygems/split
10+
> 📈 The Rack Based A/B testing framework https://libraries.io/rubygems/split
1111
1212
Split is a rack based A/B testing framework designed to work with Rails, Sinatra or any other rack based app.
1313

@@ -110,9 +110,9 @@ Split has two options for you to use to determine which alternative is the best.
110110

111111
The first option (default on the dashboard) uses a z test (n>30) for the difference between your control and alternative conversion rates to calculate statistical significance. This test will tell you whether an alternative is better or worse than your control, but it will not distinguish between which alternative is the best in an experiment with multiple alternatives. Split will only tell you if your experiment is 90%, 95%, or 99% significant, and this test only works if you have more than 30 participants and 5 conversions for each branch.
112112

113-
As per this [blog post](http://www.evanmiller.org/how-not-to-run-an-ab-test.html) on the pitfalls of A/B testing, it is highly recommended that you determine your requisite sample size for each branch before running the experiment. Otherwise, you'll have an increased rate of false positives (experiments which show a significant effect where really there is none).
113+
As per this [blog post](https://www.evanmiller.org/how-not-to-run-an-ab-test.html) on the pitfalls of A/B testing, it is highly recommended that you determine your requisite sample size for each branch before running the experiment. Otherwise, you'll have an increased rate of false positives (experiments which show a significant effect where really there is none).
114114

115-
[Here](http://www.evanmiller.org/ab-testing/sample-size.html) is a sample size calculator for your convenience.
115+
[Here](https://www.evanmiller.org/ab-testing/sample-size.html) is a sample size calculator for your convenience.
116116

117117
The second option uses simulations from a beta distribution to determine the probability that the given alternative is the winner compared to all other alternatives. You can view these probabilities by clicking on the drop-down menu labeled "Confidence." This option should be used when the experiment has more than just 1 control and 1 alternative. It can also be used for a simple, 2-alternative A/B test.
118118

@@ -360,7 +360,7 @@ end
360360

361361
If you are running `ab_test` from a view, you must define your event
362362
hook callback as a
363-
[helper_method](http://apidock.com/rails/AbstractController/Helpers/ClassMethods/helper_method)
363+
[helper_method](https://apidock.com/rails/AbstractController/Helpers/ClassMethods/helper_method)
364364
in the controller:
365365

366366
``` ruby
@@ -446,7 +446,7 @@ match "/split" => Split::Dashboard, anchor: false, via: [:get, :post, :delete],
446446
end
447447
```
448448

449-
More information on this [here](http://steve.dynedge.co.uk/2011/12/09/controlling-access-to-routes-and-rack-apps-in-rails-3-with-devise-and-warden/)
449+
More information on this [here](https://steve.dynedge.co.uk/2011/12/09/controlling-access-to-routes-and-rack-apps-in-rails-3-with-devise-and-warden/)
450450

451451
### Screenshot
452452

@@ -824,8 +824,8 @@ end
824824

825825
## Extensions
826826

827-
- [Split::Export](http://github.com/splitrb/split-export) - Easily export A/B test data out of Split.
828-
- [Split::Analytics](http://github.com/splitrb/split-analytics) - Push test data to Google Analytics.
827+
- [Split::Export](https://github.com/splitrb/split-export) - Easily export A/B test data out of Split.
828+
- [Split::Analytics](https://github.com/splitrb/split-analytics) - Push test data to Google Analytics.
829829
- [Split::Mongoid](https://github.com/MongoHQ/split-mongoid) - Store experiment data in mongoid (still uses redis).
830830
- [Split::Cacheable](https://github.com/harrystech/split_cacheable) - Automatically create cache buckets per test.
831831
- [Split::Counters](https://github.com/bernardkroes/split-counters) - Add counters per experiment and alternative.
@@ -837,7 +837,7 @@ Ryan bates has produced an excellent 10 minute screencast about split on the Rai
837837

838838
## Blogposts
839839

840-
* [Recipe: A/B testing with KISSMetrics and the split gem](http://robots.thoughtbot.com/post/9595887299/recipe-a-b-testing-with-kissmetrics-and-the-split-gem)
840+
* [Recipe: A/B testing with KISSMetrics and the split gem](https://robots.thoughtbot.com/post/9595887299/recipe-a-b-testing-with-kissmetrics-and-the-split-gem)
841841
* [Rails A/B testing with Split on Heroku](http://blog.nathanhumbert.com/2012/02/rails-ab-testing-with-split-on-heroku.html)
842842

843843
## Backers
@@ -917,9 +917,9 @@ Please do! Over 70 different people have contributed to the project, you can see
917917

918918
### Development
919919

920-
The source code is hosted at [GitHub](http://github.com/splitrb/split).
920+
The source code is hosted at [GitHub](https://github.com/splitrb/split).
921921

922-
Report issues and feature requests on [GitHub Issues](http://github.com/splitrb/split/issues).
922+
Report issues and feature requests on [GitHub Issues](https://github.com/splitrb/split/issues).
923923

924924
You can find a discussion form on [Google Groups](https://groups.google.com/d/forum/split-ruby).
925925

lib/split/dashboard/views/layout.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
</div>
2222

2323
<div id="footer">
24-
<p>Powered by <a href="http://github.com/splitrb/split">Split</a> v<%=Split::VERSION %></p>
24+
<p>Powered by <a href="https://github.com/splitrb/split">Split</a> v<%=Split::VERSION %></p>
2525
</div>
2626
</body>
2727
</html>

0 commit comments

Comments
 (0)