File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
# This file is responsible for configuring your application
2
2
# and its dependencies with the aid of the Mix.Config module.
3
- use Mix. Config
3
+ import Config
4
4
5
5
# This configuration is loaded before any dependency and is restricted
6
6
# to this project. If another project depends on this project, this
Original file line number Diff line number Diff line change @@ -263,7 +263,7 @@ defmodule Temp do
263
263
Integer . to_string ( rand_uniform ( 0x100000000 ) , 36 ) |> String . downcase
264
264
end
265
265
266
- if :erlang . system_info ( :otp_release ) >= '18' do
266
+ if :erlang . system_info ( :otp_release ) >= ~c " 18 " do
267
267
defp rand_uniform ( num ) do
268
268
:rand . uniform ( num )
269
269
end
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ defmodule Temp.Mixfile do
8
8
[
9
9
app: :temp ,
10
10
version: @ version ,
11
- elixir: "~> 1.0 " ,
11
+ elixir: "~> 1.9 " ,
12
12
name: "temp" ,
13
13
source_url: @ source_url ,
14
14
homepage_url: @ source_url ,
You can’t perform that action at this time.
0 commit comments