Skip to content

Commit

Permalink
rename ruby_parser gem to typedruby_parser
Browse files Browse the repository at this point in the history
  • Loading branch information
haileys committed Jun 2, 2018
1 parent 9c7f58b commit 1cca1a5
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -12,13 +12,13 @@ itertools = "0.6"
lazy_static = "0.2"
ref_slice = "1.1"
regex = "0.2"
ruby_parser = { path = "parser" }
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
termcolor = "0.3"
toml = "0.4"
typed-arena = "1.2.0"
typedruby_parser = { path = "parser" }
vec_map = "0.8"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion parser/Cargo.toml
@@ -1,5 +1,5 @@
[package]
name = "ruby_parser"
name = "typedruby_parser"
version = "0.1.0"
authors = ["Hailey Somerville <hailey@hailey.lol>"]
build = "build.rs"
Expand Down
4 changes: 2 additions & 2 deletions src/ast.rs
@@ -1,6 +1,6 @@
extern crate ruby_parser;
extern crate typedruby_parser;

pub use self::ruby_parser::{parse, Ast, SourceFile, Id, Node, Loc, Diagnostic, Level};
pub use self::typedruby_parser::{parse, Ast, SourceFile, Id, Node, Loc, Diagnostic, Level};

use std::rc::Rc;

Expand Down

0 comments on commit 1cca1a5

Please sign in to comment.