Project

skeema

0.01
No commit activity in last 3 years
No release in over 3 years
Skeema
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0
 Project Readme

Skeema

Three different implementations of parsing ActiveRecord schema.rb files

Examples:

# use the regex-based implementation
Skeema::Regex.parse('path/to/schema.rb')
# => { 'authors' => ['name'], 'posts' => ['author_id', 'title', 'body'] }

# use the instance_eval-based implementation
Skeema::Pretender.parse('path/to/schema.rb')
# => { :authors => [:name], :posts => [:author_id, :title, :body] }

# use the ripper-based implementation
Skeema::Ripper.parse('path/to/schema.rb')
# => { :authors => [:name], :posts => [:author_id, :title, :body] }