Skip to content

A Ruby implementation of parts of the Elixir standard library

License

Notifications You must be signed in to change notification settings

havenwood/elixir.rb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Elixir.rb

Build Status

The Elixir standard library in Ruby!

So far there are partial implementations of the following Elixir modules:

  • Agent
  • Atom
  • Base
  • Dict
  • Enum
  • File
  • Float
  • Integer
  • List
  • OptionParser
  • Path
  • Range
  • Set
  • Stream
  • String
  • System
  • Task
  • Tuple
  • Version

Requirements

Ruby 2.2+

Installation

gem install elixir.rb

Examples

Stream.unfold/2

require 'elixir/stream'

include Elixir

Fib = Stream.unfold [0, 1] do |a, b|
  [a, [b, a + b]]
end

Fib.size
#=> Infinity

Fib.take 5
#=> [0, 1, 1, 2, 3]

Agent and Task

require 'elixir/agent'
require 'elixir/task'

include Elixir

status, agent = Agent.start { 0 }
#=> [:ok, #<Concurrent::Atomic:...>]

Agent.cast(agent) { |value| value + 42 }
#=> :ok

Agent.get agent, &:next
#=> 43

task = Task.async do
  sleep 0.5

  Agent.get agent, &:itself
end
#<Concurrent::IVar:...>

Task.await task
#=> 42

Development

Install Elixir.rb and its deps:

git clone https://github.com/havenwood/elixir.rb
cd elixir.rb
gem install -g --no-lock

Run the tests:

RUBYGEMS_GEMDEPS="-" rake

About

A Ruby implementation of parts of the Elixir standard library

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages