0.02
No release in over 3 years
Low commit activity in last 3 years
EditorConfig core library written in Ruby
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 5.0
~> 10.0
 Project Readme

EditorConfig Ruby Core

Build Status

EditorConfig Ruby Core provides the same functionality as the EditorConfig C Core and EditorConfig Python Core libraries.

EditorConfig Project

EditorConfig makes it easy to maintain the correct coding style when switching between different text editors and between different projects. The EditorConfig project maintains a file format and plugins for various text editors which allow this file format to be read and used by those editors. For information on the file format and supported text editors, see the EditorConfig website.

Installation

With RubyGems:

$ gem install editorconfig

Usage

Loading library module.

require 'editor_config'
EditorConfig.parse(File.read(".editorconfig"))

A command line binary is also provided.

$ editorconfig main.c
charset=utf-8
insert_final_newline=true
end_of_line=lf
tab_width=8

Load

File System

An flattened config can be loaded from the file system with:

filename = "~/Project/foo/lib/foo.rb"
config = EditorConfig.load_file(filename)

# config: hash of properties and values
{
  "charset" => "utf-8",
  "indent_style" => "space",
  "end_of_line" => "lf",
  "insert_final_newline" => "true"
}

This API walks up the directory hierarchy gathering all .editorconfig files until it reaches a config that defines root = true.

Custom Loader

A custom loader can be provided to read files from another source rather than the file system.

For an example, you might load files directly from a git repository.

tree_sha, filename = "348b1ea52f897f313d62c56c2ba785a41f654861", "lib/foo.rb"

config = EditorConfig.load(filename) do |config_path|
  if blob_sha = `git ls-tree #{tree_sha} #{config_path}`.split(" ")[2]
    `git cat-file blob #{blob_sha}`
  end
end

Parse

A low-level API for parsing an individual .editorconfig file.

A [config, root] tuple is returned. The root bit is set if a top-level root = true is seen. The config value is a two dimensional hash mapping section names to property names and values.

data = File.read(".editorconfig")
config, root = EditorConfig.parse(data)

# root: if top-most root = true flag is set
true

# config: hash of sections and properties
{
  "*" => {
    "end_of_line" => "lf",
    "insert_final_newline" => "true"
  },
  "*.{js,py}" => {
    "charset" => "utf-8"
  }
}

Testing

Cmake is required to run the test suite. On OSX, just brew install cmake.

Then run the tests with:

$ rake test