Skip to content

Commit 1b05f3e

Browse files
added support for bundler and gemspec
1 parent 9396b44 commit 1b05f3e

File tree

4 files changed

+60
-0
lines changed

4 files changed

+60
-0
lines changed

Gemfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source 'https://rubygems.org'
2+
3+
# Specify your gem's dependencies in rinruby.gemspec
4+
gemspec

Gemfile.lock

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
PATH
2+
remote: .
3+
specs:
4+
rinruby (2.0.3)
5+
6+
GEM
7+
remote: https://rubygems.org/
8+
specs:
9+
diff-lcs (1.2.3)
10+
hoe (3.5.3)
11+
rake (>= 0.8, < 11.0)
12+
rake (10.0.4)
13+
rspec (2.13.0)
14+
rspec-core (~> 2.13.0)
15+
rspec-expectations (~> 2.13.0)
16+
rspec-mocks (~> 2.13.0)
17+
rspec-core (2.13.1)
18+
rspec-expectations (2.13.0)
19+
diff-lcs (>= 1.1.3, < 2.0)
20+
rspec-mocks (2.13.1)
21+
22+
PLATFORMS
23+
ruby
24+
25+
DEPENDENCIES
26+
hoe
27+
rake
28+
rinruby!
29+
rspec

lib/version.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module Rinruby
2+
VERSION = "2.0.3"
3+
end

rinruby.gemspec

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# coding: utf-8
2+
lib = File.expand_path('../lib', __FILE__)
3+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4+
require 'version'
5+
6+
Gem::Specification.new do |spec|
7+
spec.name = "rinruby"
8+
spec.version = Rinruby::VERSION
9+
spec.authors = ["David Dahl", "Scott Crawford", "Claudio Bustos"]
10+
11+
spec.summary = %q{RinRuby is a Ruby library that integrates the R interpreter in Ruby}
12+
spec.description = %q{RinRuby is a Ruby library that integrates the R interpreter in Ruby, making R's statistical routines and graphics available within Ruby. The library consists of a single Ruby script that is simple to install and does not require any special compilation or installation of R. Since the library is 100% pure Ruby, it works on a variety of operating systems, Ruby implementations, and versions of R. RinRuby's methods are simple, making for readable code. The {website [rinruby.ddahl.org]}[http://rinruby.ddahl.org] describes RinRuby usage, provides comprehensive documentation, gives several examples, and discusses RinRuby's implementation.}
13+
spec.homepage = "http://rinruby.ddahl.org"
14+
spec.license = "Copyright 2005-2008 David B. Dahl"
15+
16+
spec.files = `git ls-files`.split($/)
17+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19+
spec.require_paths = ["lib"]
20+
21+
spec.add_development_dependency "rake"
22+
spec.add_development_dependency "rspec"
23+
spec.add_development_dependency "hoe"
24+
end

0 commit comments

Comments
 (0)