fix rename

This commit is contained in:
Torsten Ruger 2014-07-01 19:12:32 +03:00
parent f74999af57
commit ee5615ec03
5 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
source "http://rubygems.org" source "http://rubygems.org"
gem "parslet" , :git => 'https://github.com/NigelThorne/parslet.git' gem "parslet" , :git => 'https://github.com/NigelThorne/parslet.git'
gem "crystal-reader" , "0.1.0" , :require => "parser" , :git => "https://github.com/ruby-in-ruby/crystal-reader.git" gem "crystal-reader" , "0.1.0" , :require => "parser" , :git => "https://github.com/crystal-vm/crystal-reader.git"
group :development do group :development do
gem "minitest" gem "minitest"

View File

@ -6,7 +6,7 @@ GIT
blankslate (~> 2.0) blankslate (~> 2.0)
GIT GIT
remote: https://github.com/ruby-in-ruby/crystal-reader.git remote: https://github.com/crystal-vm/crystal-reader.git
revision: bc8697c733113b19863df632b546c7eab2b429c0 revision: bc8697c733113b19863df632b546c7eab2b429c0
specs: specs:
crystal-reader (0.1.0) crystal-reader (0.1.0)

View File

@ -8,7 +8,7 @@ Gem::Specification.new do |s|
s.email = 'torsten@villataika.fi' s.email = 'torsten@villataika.fi'
s.extra_rdoc_files = ['README.markdown'] s.extra_rdoc_files = ['README.markdown']
s.files = %w(README.markdown LICENSE.txt Rakefile) + Dir.glob("lib/**/*") s.files = %w(README.markdown LICENSE.txt Rakefile) + Dir.glob("lib/**/*")
s.homepage = 'https://github.com/ruby-in-ruby/crystal' s.homepage = 'https://github.com/crystal-vm/crystal'
s.license = 'MIT' s.license = 'MIT'
s.require_paths = ['lib'] s.require_paths = ['lib']
s.summary = 'Hey crystal, what do you want to be when you grow up: I like pink and red, i wanna be a ruby' s.summary = 'Hey crystal, what do you want to be when you grow up: I like pink and red, i wanna be a ruby'

View File

@ -8,7 +8,7 @@ function.
A normal ruby function is one that is parsed and transformed to code. But not all functionality can be written in ruby, A normal ruby function is one that is parsed and transformed to code. But not all functionality can be written in ruby,
one of those chicken and egg things. C uses Assembler in this situation, we use Kernel function. one of those chicken and egg things. C uses Assembler in this situation, we use Kernel function.
Slightly more here : http://ruby-in-ruby.github.io/2014/06/10/more-clarity.html Slightly more here : http://crystal-vm.github.io/2014/06/10/more-clarity.html
The Kernal module is scattered into several files, but that is just so the file doesn't get too long. The Kernal module is scattered into several files, but that is just so the file doesn't get too long.

View File

@ -4,4 +4,4 @@ Here we have a placeholder for things i am currently developing.
Basically Parfait is the smallest amount of code needed to make a ruby-like OO system work. Basically Parfait is the smallest amount of code needed to make a ruby-like OO system work.
A work in progress that started from here : http://ruby-in-ruby.github.io/2014/06/10/more-clarity.html A work in progress that started from here : http://crystal-vm.github.io/2014/06/10/more-clarity.html