Navigation Menu

Skip to content

Commit

Permalink
Fix for v0.12.2
Browse files Browse the repository at this point in the history
  • Loading branch information
parroty committed Jan 17, 2014
1 parent ea6db08 commit 3213632
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/mix/tasks.ex
Expand Up @@ -34,7 +34,7 @@ defmodule Mix.Tasks.Vcr do

pattern = cond do
options[:all] -> %r/.*/
Enum.count(files) == 1 -> Enum.first(files)
Enum.count(files) == 1 -> Enum.at(files, 0)
true -> nil
end

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Expand Up @@ -25,7 +25,7 @@ defmodule ExVCR.Mixfile do
deps(:prod) ++
[
{:ibrowse, github: "cmullaparthi/ibrowse", ref: "866b0ff5aca229f1ef53653eabc8ed1720c13cd6", override: true},
{:httpotion, github: "parroty/httpotion", branch: "version"},
{:httpotion, github: "myfreeweb/httpotion"},
{:excoveralls, github: "parroty/excoveralls"},
{:http_server, github: "parroty/http_server"}
]
Expand Down
2 changes: 1 addition & 1 deletion mix.lock
Expand Up @@ -4,7 +4,7 @@
"excoveralls": {:git, "git://github.com/parroty/excoveralls.git", "cb860b34721a3fea2c08ca0b267451c3c886c652", []},
"exprintf": {:git, "git://github.com/parroty/exprintf.git", "ef4d3dc220ba23f6eb3544705c949d49bc24f5bc", []},
"http_server": {:git, "git://github.com/parroty/http_server.git", "b496c12424f5d459e1961fba02874e51a2ff9181", []},
"httpotion": {:git, "git://github.com/parroty/httpotion.git", "07d7048981e5c604628ea5e9bf732ef784d7cbdf", [branch: "version"]},
"httpotion": {:git, "git://github.com/myfreeweb/httpotion.git", "3f97f62bbf40e7b941e3b52dd130cf95b6b3fb6e", []},
"ibrowse": {:git, "git://github.com/cmullaparthi/ibrowse.git", "866b0ff5aca229f1ef53653eabc8ed1720c13cd6", [ref: "866b0ff5aca229f1ef53653eabc8ed1720c13cd6"]},
"jsex": {:git, "git://github.com/talentdeficit/jsex.git", "c9df36f07b2089a73ab6b32074c01728f1e5a2e1", []},
"jsx": {:git, "git://github.com/talentdeficit/jsx.git", "e50af6e109cb03bd26acf715cbc77de746507d1d", [tag: "v1.4.3"]},
Expand Down

0 comments on commit 3213632

Please sign in to comment.