Packages

ExRated, the OTP GenServer with the naughty name that allows you to rate-limit calls to any service that requires it. For example, rate-limit calls to your favorite API which requires no more than `limit` API calls within a `scale` milliseconds time window.

Current section

18 Versions

Jump to

Compare versions

2 files changed
+4 additions
-4 deletions
  @@ -3,7 +3,7 @@
3 3 {<<"contributors">>,[<<"Glenn Rempe">>]}.
4 4 {<<"description">>,
5 5 <<"ExRated, the OTP GenServer with the naughty name that allows you to rate-limit calls\nto any service that requires it.\n\nFor example, rate-limit calls to your favorite API which requires no more\nthan `limit` API calls within a `scale` milliseconds time window. You can enforce\nlimits for windows as narrow as milliseconds, or as broad as 25 hours.\n">>}.
6 - {<<"elixir">>,<<"~> 1.0.0-rc1 or ~> 1.0.0">>}.
6 + {<<"elixir">>,<<"~> 1.0.0-rc1 or ~> 1.0.0-rc2 or ~> 1.0.0">>}.
7 7 {<<"files">>,
8 8 [<<"lib/ex_rated.ex">>,<<"lib/ex_rated_app.ex">>,<<"mix.exs">>,
9 9 <<"README.md">>,<<"LICENSE">>]}.
  @@ -11,4 +11,4 @@
11 11 {<<"links">>,#{<<"GitHub">> => <<"https://github.com/grempe/ex_rated">>}}.
12 12 {<<"requirements">>,
13 13 #{<<"ex2ms">> => #{<<"optional">> => nil,<<"requirement">> => <<"~> 1.3.0">>}}}.
14 - {<<"version">>,<<"0.0.3">>}.
14 + {<<"version">>,<<"0.0.4">>}.
  @@ -3,8 +3,8 @@ defmodule ExRated.Mixfile do
3 3
4 4 def project do
5 5 [app: :ex_rated,
6 - version: "0.0.3",
7 - elixir: "~> 1.0.0-rc1 or ~> 1.0.0",
6 + version: "0.0.4",
7 + elixir: "~> 1.0.0-rc1 or ~> 1.0.0-rc2 or ~> 1.0.0",
8 8 description: description,
9 9 package: package,
10 10 deps: deps]