├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── bench └── rubyspeed_bench.rb ├── fixtures ├── example_add.c ├── example_branch.c ├── example_dot.c └── example_loop.c ├── lib ├── .gitignore ├── inline.rb ├── rubyspeed.rb └── rubyspeed │ └── c.rb └── test ├── rubyspeed └── c_test.rb └── rubyspeed_test.rb /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrafix/rubyspeed/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrafix/rubyspeed/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrafix/rubyspeed/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrafix/rubyspeed/HEAD/Rakefile -------------------------------------------------------------------------------- /bench/rubyspeed_bench.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrafix/rubyspeed/HEAD/bench/rubyspeed_bench.rb -------------------------------------------------------------------------------- /fixtures/example_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrafix/rubyspeed/HEAD/fixtures/example_add.c -------------------------------------------------------------------------------- /fixtures/example_branch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrafix/rubyspeed/HEAD/fixtures/example_branch.c -------------------------------------------------------------------------------- /fixtures/example_dot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrafix/rubyspeed/HEAD/fixtures/example_dot.c -------------------------------------------------------------------------------- /fixtures/example_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrafix/rubyspeed/HEAD/fixtures/example_loop.c -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | *.log 4 | tmp/ 5 | 6 | .ruby-version 7 | .bundle 8 | vendor 9 | coverage 10 | -------------------------------------------------------------------------------- /lib/inline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrafix/rubyspeed/HEAD/lib/inline.rb -------------------------------------------------------------------------------- /lib/rubyspeed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrafix/rubyspeed/HEAD/lib/rubyspeed.rb -------------------------------------------------------------------------------- /lib/rubyspeed/c.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrafix/rubyspeed/HEAD/lib/rubyspeed/c.rb -------------------------------------------------------------------------------- /test/rubyspeed/c_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrafix/rubyspeed/HEAD/test/rubyspeed/c_test.rb -------------------------------------------------------------------------------- /test/rubyspeed_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrafix/rubyspeed/HEAD/test/rubyspeed_test.rb --------------------------------------------------------------------------------