| 
									
										
										
										
											2015-05-05 20:15:40 +00:00
										 |  |  | defmodule Isn.Mixfile do | 
					
						
							|  |  |  |   use Mix.Project | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-27 16:15:09 +00:00
										 |  |  |   @version "0.1.0" | 
					
						
							| 
									
										
										
										
											2015-05-05 20:15:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   def project do | 
					
						
							|  |  |  |     [app: :isn, | 
					
						
							|  |  |  |      version: @version, | 
					
						
							|  |  |  |      elixir: "~> 1.0", | 
					
						
							|  |  |  |      deps: deps, | 
					
						
							|  |  |  |      test_paths: ["test"], | 
					
						
							|  |  |  |      # Hex | 
					
						
							|  |  |  |      description: description, | 
					
						
							|  |  |  |      package: package, | 
					
						
							|  |  |  |      # Docs | 
					
						
							|  |  |  |      name: "Isn", | 
					
						
							|  |  |  |      docs: [source_ref: "v#{@version}", | 
					
						
							|  |  |  |             source_url: "https://github.com/Frost/isn"] | 
					
						
							|  |  |  |    ] | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   # Configuration for the OTP application | 
					
						
							|  |  |  |   # | 
					
						
							|  |  |  |   # Type `mix help compile.app` for more information | 
					
						
							|  |  |  |   def application do | 
					
						
							|  |  |  |     [] | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   defp description do | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     Ecto types for the postgreSQL isn extension. | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   defp package do | 
					
						
							| 
									
										
										
										
											2015-05-27 17:17:36 +00:00
										 |  |  |     [files: ~w(lib README.md mix.exs), | 
					
						
							|  |  |  |      contributors: ["Martin Frost"], | 
					
						
							|  |  |  |      licenses: ["Apache 2.0"], | 
					
						
							| 
									
										
										
										
											2015-05-05 20:15:40 +00:00
										 |  |  |      links: %{"GitHub" => "https://github.com/Frost/isn"}] | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   defp deps do | 
					
						
							|  |  |  |     [{:postgrex, "~> 0.8.1"}, | 
					
						
							| 
									
										
										
										
											2015-05-27 17:20:23 +00:00
										 |  |  |      {:ecto, "~> 0.11.0"}, | 
					
						
							| 
									
										
										
										
											2015-06-02 06:03:03 +00:00
										 |  |  |      {:eh, "~> 0.2.0"}, | 
					
						
							| 
									
										
										
										
											2015-05-27 17:20:23 +00:00
										 |  |  |      {:ex_doc, "~> 0.6.1", only: :dev}] | 
					
						
							| 
									
										
										
										
											2015-05-05 20:15:40 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | end |