diff --git a/.gitignore b/.gitignore index eff47873..0241d198 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,7 @@ doc # bundler .bundle +*.gem # jeweler generated pkg diff --git a/lib/kernel/README.md b/lib/kernel/README.md index fe9cb6e0..cf154c21 100644 --- a/lib/kernel/README.md +++ b/lib/kernel/README.md @@ -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, one of those chicken and egg things. C uses Assembler in this situation, we use Kernel function. -Slightly more here : http://salama-vm.github.io/2014/06/10/more-clarity.html +Slightly more here : http://salama.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. diff --git a/lib/parfait/README.md b/lib/parfait/README.md index cf11902d..2a2f3350 100644 --- a/lib/parfait/README.md +++ b/lib/parfait/README.md @@ -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. -A work in progress that started from here : http://salama-vm.github.io/2014/06/10/more-clarity.html +A work in progress that started from here : http://salama.github.io/2014/06/10/more-clarity.html diff --git a/salama.gemspec b/salama.gemspec index e725c4c4..ff451e1e 100644 --- a/salama.gemspec +++ b/salama.gemspec @@ -8,7 +8,7 @@ Gem::Specification.new do |s| s.email = 'torsten@villataika.fi' s.extra_rdoc_files = ['README.md'] s.files = %w(README.md LICENSE.txt Rakefile) + Dir.glob("lib/**/*") - s.homepage = 'https://github.com/salama-vm/salama' + s.homepage = 'https://github.com/salama/salama' s.license = 'MIT' s.require_paths = ['lib'] s.summary = 'Salama is a native object vm without any c, one day possibly a ruby vm'