diff --git a/HISTORY.md b/HISTORY.md index 2b4f2a2..5860d37 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,18 @@ +# v0.1.2 (26 May 2018) + +## Bug fixes + +* Fixed bug that prevented proper loading of files from CLI. + +## Features + +* Added `no_gil` block support. +* Allow creating instance variables. +* Multiple file Rubex programs using `rubex_require`. +* Support multiple arguments in `[]` operator. +* New rake tasks for various options like debug, just compiling, compile + install etc. +* More CLI options for debug and force. + # v0.1.1 * Bugs fixes and internal code refactoring. Not much in terms of user-facing features. diff --git a/spec/fixtures/api/consumer.rubex b/spec/fixtures/api/consumer.rubex new file mode 100644 index 0000000..e69de29 diff --git a/spec/fixtures/api/implementation.rubex b/spec/fixtures/api/implementation.rubex new file mode 100644 index 0000000..e69de29 diff --git a/spec/fixtures/api/implementation.rubexd b/spec/fixtures/api/implementation.rubexd new file mode 100644 index 0000000..e69de29 diff --git a/spec/string_literals_spec.rb b/spec/string_literals_spec.rb index 18157a4..e0f2bf6 100644 --- a/spec/string_literals_spec.rb +++ b/spec/string_literals_spec.rb @@ -14,13 +14,13 @@ end end - context ".compile", hell: true do + context ".compile" do it "compiles to C." do t, c, e = Rubex::Compiler.compile(@path + '.rubex', test: true) end end - context "Black Box testing", hell: true do + context "Black Box testing" do it "compiles and checks for valid output" do setup_and_teardown_compiled_files(test_case) do |dir| require_relative "#{dir}/#{test_case}.#{os_extension}"