diff --git a/.gitignore b/.gitignore index 87620ac..a78f28d 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,18 @@ .ipynb_checkpoints/ +*.gem +*.rbc +.bundle +.config +.yardoc +Gemfile.lock +InstalledFiles +_yardoc +coverage +doc/ +lib/bundler/man +pkg +rdoc +spec/reports +test/tmp +test/version_tmp +tmp diff --git a/Gemfile b/Gemfile index 44d75be..a766cd5 100644 --- a/Gemfile +++ b/Gemfile @@ -1,8 +1,4 @@ -source :rubygems +source 'https://rubygems.org' -gem 'ffi-rzmq' -gem 'uuid' -gem 'json' -gem 'term-ansicolor' -gem 'trollop' -gem 'bond' +# Specify your gem's dependencies in iruby.gemspec +gemspec diff --git a/Gemfile.lock b/Gemfile.lock deleted file mode 100644 index 9dc1532..0000000 --- a/Gemfile.lock +++ /dev/null @@ -1,28 +0,0 @@ -GEM - remote: http://rubygems.org/ - specs: - bond (0.4.3) - ffi (1.9.0) - ffi-rzmq (1.0.1) - ffi - json (1.6.6) - macaddr (1.5.0) - systemu (>= 2.4.0) - systemu (2.5.0) - term-ansicolor (1.2.2) - tins (~> 0.8) - tins (0.8.2) - trollop (2.0) - uuid (2.3.5) - macaddr (~> 1.0) - -PLATFORMS - ruby - -DEPENDENCIES - bond - ffi-rzmq - json - term-ansicolor - trollop - uuid diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..5e5cd12 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,22 @@ +Copyright (c) 2013 Damián Silvani + +MIT License + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..2995527 --- /dev/null +++ b/Rakefile @@ -0,0 +1 @@ +require "bundler/gem_tasks" diff --git a/iruby.gemspec b/iruby.gemspec new file mode 100644 index 0000000..349c68c --- /dev/null +++ b/iruby.gemspec @@ -0,0 +1,30 @@ +# coding: utf-8 +lib = File.expand_path('../lib', __FILE__) +$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) +require 'iruby/version' + +Gem::Specification.new do |spec| + spec.name = "iruby" + spec.version = Iruby::VERSION + spec.authors = ["Damián Silvani"] + spec.email = ["munshkr@gmail.com"] + spec.description = %q{IPython Notebook for Ruby} + spec.summary = %q{Create an IPython Notebook profile for using Ruby as kernel} + spec.homepage = "" + spec.license = "MIT" + + spec.files = `git ls-files`.split($/) + spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } + spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) + spec.require_paths = ["lib"] + + spec.add_development_dependency "bundler", "~> 1.3" + spec.add_development_dependency "rake" + + spec.add_runtime_dependency "bond" + spec.add_runtime_dependency "ffi-rzmq" + spec.add_runtime_dependency "json" + spec.add_runtime_dependency "term-ansicolor" + spec.add_runtime_dependency "trollop" + spec.add_runtime_dependency "uuid" +end diff --git a/lib/iruby.rb b/lib/iruby.rb new file mode 100644 index 0000000..305ddb6 --- /dev/null +++ b/lib/iruby.rb @@ -0,0 +1,5 @@ +require "iruby/version" + +module Iruby + # Your code goes here... +end diff --git a/lib/iruby/version.rb b/lib/iruby/version.rb new file mode 100644 index 0000000..23d8340 --- /dev/null +++ b/lib/iruby/version.rb @@ -0,0 +1,3 @@ +module Iruby + VERSION = "0.0.1" +end