Coder Social home page Coder Social logo

radpath's Introduction

Radpath

Build Status Build Status wercker status Circle CI Inline docs Build Status Coverage Status

A library for dealing with paths in Elixir largely inspired by Python's pathlib.

Getting Started

To use Radpath, add a dependency in your mix:

def deps do
  [ { :Radpath, github: "lowks/Radpath"}]
end

then mix deps.get fetches dependencies and compiles Radpath.

Status

Developed whenever I can find the time.

Running Tests

Running tests against a stable release of Elixir defined by 'STABLE_ELIXIR_VERSION' in the Makefile:

make ci

Running tests against your system's Elixir:

make

Docs (Lite Version)

To list down files in a path:

Radpath.files("/home/lowks/Documents")

or if you wanted to filter out certain files with pdf extensions:

Radpath.files("/home/lowks/Documents", "pdf")

Listing down only directories:

Radpath.dirs("/home/lowks")                  

To create symlink:

Radpath.symlink(source, destination)

To create tempfile:

{status, fd, file_path}  = Radpath.mktempfile
IO.write fd, "hoho"
File.close fd
File.read! filepath
"hoho"
File.rm! filepath

This uses all the defaults

To customize the location plus the extension:

{_, fd, filepath} = Radpath.mktempfile(".log", "/home/lowks/Downloads")
IO.write fd, "hoho"
File.read! filepath
"hoho"
File.close! filepath

The default is ".log". Checkout the rest of the docs in the docs folder.

Run mix docs to generate a nice docs in a local folder or you can read them online: Radpath hexdocs

Check out test examples for usage.

radpath's People

Contributors

lowks avatar rrrene avatar sztheory avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

radpath's Issues

Create sections for mix.exs

Create different sections in mix.exs so that different environment can be used allowing to specify different dependencies for different environments.

A "send" function

I am wondering would something like this would be useful ?

Radpath.files(["pdf","doc"]) |> Radpath.send(destination)

Essentially it's a mv operation.

Add the ability to create zip files.

Add the ability to create zip archives somewhere along lines like this:

Radpath.files("/tmp", "log") |> Radpath.zip("myzip.zip")

or

Radpath.dirs("/tmp") |> Radpath.zip("myzip2.zip")

Create a Makefile

Create a makefile ala amrita to lessen the pain that an old version Erlang from travis and drone gives.

relative_path function

Put in a relative_path function which does this:

iex(1)> Radpath.relative_path("/tmp/lowks/", "/tmp/lowks/iam.txt")
"iam.txt"
iex(2)> Radpath.relative_path("/tmp/lowks/", "/tmp/lowks/hoho/iam.txt")
"hoho/iam.txt"

Let zip handle a list

Something like this:

Radpath.files("/home/lowks/Documents", "doc") |> Radpath.zip("mystuff.zip")

Upgrade to 0.1.3.1 (Deprecations)

[String] String.to_char_list/1 is deprecated in favor of List.from_char_data/1 (this is a soft deprecation, no warnings will be emitted)

Build on travis breaking

The build on Travis is breaking with the log below:

Using worker: worker-linux-2-1.bb.travis-ci.org:travis-linux-16

git.1

$ git clone --depth=50 --branch=master git://github.com/lowks/Radpath.git lowks/Radpath

Cloning into 'lowks/Radpath'...

remote: Counting objects: 247, done.

remote: Compressing objects: 100% (109/109), done.

remote: Total 247 (delta 124), reused 241 (delta 118)

Receiving objects: 100% (247/247), 67.04 KiB | 0 bytes/s, done.

Resolving deltas: 100% (124/124), done.

Checking connectivity... done.

$ cd lowks/Radpath
git.3

$ git checkout -qf 5c8e4cdbf14b0fa740fe298ef3612910ac04d98c

$ source $HOME/otp/R16B03-1/activate

Applying fix for NPM certificates
before_install.1

$ git clone git://github.com/elixir-lang/elixir

Cloning into 'elixir'...

remote: Reusing existing pack: 57806, done.

remote: Counting objects: 108, done.

remote: Compressing objects: 100% (107/107), done.

remote: Total 57914 (delta 38), reused 4 (delta 0)

Receiving objects: 100% (57914/57914), 21.80 MiB | 14.32 MiB/s, done.

Resolving deltas: 100% (29028/29028), done.

Checking connectivity... done.

$ cd elixir && make && cd ..

==> elixir (compile)

ERROR: OTP release R16B03-1 does not match required regex (17).*

ERROR: compile failed while processing /home/travis/build/lowks/Radpath/elixir/lib/elixir: rebar_abort

make: *** [erlang] Error 1

The command "make" failed and exited with 2 during before_install.

Your build has been stopped.

Going to try this fix: basho/riak#131

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.