stair_car 0.0.8 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/.travis.yml +7 -0
  2. data/README.md +2 -0
  3. data/stair_car.gemspec +2 -2
  4. metadata +3 -2
data/.travis.yml ADDED
@@ -0,0 +1,7 @@
1
+ language: ruby
2
+ rvm:
3
+ - jruby-19mode
4
+ - jruby-head
5
+
6
+ # uncomment this line if your project needs to run something other than `rake`:
7
+ script: bundle exec rspec spec
data/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ [![Build Status](https://travis-ci.org/ryanstout/stair_car.png?branch=master)](https://travis-ci.org/ryanstout/stair_car)
2
+
1
3
  # StairCar
2
4
 
3
5
  StairCar is a matlab or numpy like matrix library gem for jruby. It provides several matrix classes that wrap different Java based matrix libraries in a simple ruby interface. It overloads ruby operators to provide a matlab like functionality.
data/stair_car.gemspec CHANGED
@@ -4,10 +4,10 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |gem|
6
6
  gem.name = "stair_car"
7
- gem.version = "0.0.8"
7
+ gem.version = "0.1.0"
8
8
  gem.authors = ["Ryan Stout"]
9
9
  gem.email = ["ryanstout@gmail.com"]
10
- gem.description = "StairCar is a fully featured matrix for jruby (think matlab or numpy)"
10
+ gem.description = "StairCar is a fully featured matrix library for jruby (think matlab or numpy)"
11
11
  gem.summary = "StairCar makes it easy to do large scale matrix operations in jruby"
12
12
  gem.homepage = ""
13
13
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stair_car
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.1.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -29,7 +29,7 @@ dependencies:
29
29
  none: false
30
30
  prerelease: false
31
31
  type: :development
32
- description: StairCar is a fully featured matrix for jruby (think matlab or numpy)
32
+ description: StairCar is a fully featured matrix library for jruby (think matlab or numpy)
33
33
  email:
34
34
  - ryanstout@gmail.com
35
35
  executables: []
@@ -37,6 +37,7 @@ extensions: []
37
37
  extra_rdoc_files: []
38
38
  files:
39
39
  - .gitignore
40
+ - .travis.yml
40
41
  - Gemfile
41
42
  - Guardfile
42
43
  - LICENSE.txt