diff --git a/Makefile b/Makefile index 0dfea68c..c6d12065 100644 --- a/Makefile +++ b/Makefile @@ -68,7 +68,7 @@ lib: $(LIB_TARGETS) lib-test: $(LIB_TARGETS_TEST) lib-imag-ruby-test lib-imag-ruby-test: - @$(MAKE) -C imag-ruby + @$(MAKE) -C libimagruby test: bin-test lib-test diff --git a/imag-ruby/Cargo.toml b/libimagruby/Cargo.toml similarity index 97% rename from imag-ruby/Cargo.toml rename to libimagruby/Cargo.toml index 9144595c..a83842d2 100644 --- a/imag-ruby/Cargo.toml +++ b/libimagruby/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "imag-ruby" +name = "libimagruby" version = "0.1.0" authors = ["Matthias Beyer "] diff --git a/imag-ruby/Makefile b/libimagruby/Makefile similarity index 84% rename from imag-ruby/Makefile rename to libimagruby/Makefile index 805b9a27..f7ed82d6 100644 --- a/imag-ruby/Makefile +++ b/libimagruby/Makefile @@ -6,10 +6,10 @@ RUBY_TEST_TARGETS=$(foreach x,$(subst ,,$(RUBY_TESTS)),$(x)) all: lib lib: - $(MAKE) -C .. imag-ruby + $(MAKE) -C .. libimagruby lib-release: - $(MAKE) -C .. imag-ruby-release + $(MAKE) -C .. libimagruby-release test: lib $(RUBY_TEST_TARGETS) diff --git a/imag-ruby/README.md b/libimagruby/README.md similarity index 100% rename from imag-ruby/README.md rename to libimagruby/README.md diff --git a/imag-ruby/src/lib.rs b/libimagruby/src/lib.rs similarity index 100% rename from imag-ruby/src/lib.rs rename to libimagruby/src/lib.rs diff --git a/imag-ruby/src/store.rs b/libimagruby/src/store.rs similarity index 100% rename from imag-ruby/src/store.rs rename to libimagruby/src/store.rs diff --git a/imag-ruby/test/test_store_id_load.rb b/libimagruby/test/test_store_id_load.rb similarity index 100% rename from imag-ruby/test/test_store_id_load.rb rename to libimagruby/test/test_store_id_load.rb