File tree Expand file tree Collapse file tree 5 files changed +15
-9
lines changed
Expand file tree Collapse file tree 5 files changed +15
-9
lines changed Original file line number Diff line number Diff line change 11language : ruby
22rvm :
3- - 2.1 .1
3+ - 2.5 .1
44notifications :
55 email : false
Original file line number Diff line number Diff line change @@ -6,8 +6,7 @@ gem 'mongo','~> 2.0.0'
66
77group :development do
88 gem 'shoulda' , '~> 3' , '>= 3'
9- gem 'minitest' , '~> 5.4' , '>= 5'
10- gem 'yard' , '~> 0.8' , '>= 0.8.7'
9+ gem 'yard' , '~> 0.9' , '>= 0.9.1'
1110 gem 'rdoc' , '~> 4.0' , '>= 4.0'
1211 gem 'bundler' , '~> 1.0' , '>= 1.0'
1312 gem 'jeweler' , '~> 2.0' , '>= 2.0.1'
1615
1716group :test do
1817 gem 'rake'
18+ gem 'minitest' , '~> 5.11' , '>= 5'
1919end
Original file line number Diff line number Diff line change 22[ ![ Build Status] ( https://travis-ci.org/nutella-framework/nutella_lib.rb.svg )] ( https://travis-ci.org/nutella-framework/nutella_lib.rb )
33
44# nutella_lib.rb
5- nutella library for Ruby. Used mostly to create bots in Ruby.
5+ nutella library for Ruby. Used to create nutella bots in Ruby.
66
7- # Getting started
7+ ## Getting started
88Take a look at [ basic-ruby-bot] ( https://github.com/nutella-framework/basic-ruby-bot ) to see how to use nutella_lib to build a bot.
99
10- # Docs
10+ ## Docs
1111Check out the docs at [ http://www.rubydoc.info/gems/nutella_lib ] ( http://www.rubydoc.info/gems/nutella_lib )
1212
13+ # Contributing
14+ 1 . Clone repo
15+ 1 . Bundle (` bundle install ` )
16+ 1 . Run tests (` rake test ` )
17+ 1 . Make changes
18+ 1 . Run tests (` rake test ` )
19+ 1 . Open a PR
20+
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ require 'rake/testtask'
2929Rake ::TestTask . new ( :test ) do |test |
3030 test . libs << 'lib' << 'test'
3131 test . pattern = 'test/**/test_*.rb'
32- test . verbose = true
32+ test . warning = false
3333end
3434
3535desc "Code coverage detail"
Original file line number Diff line number Diff line change @@ -29,7 +29,5 @@ def clean_filters
2929$LOAD_PATH. unshift ( File . join ( File . dirname ( __FILE__ ) , '..' , 'lib' ) )
3030require 'nutella_lib'
3131
32- class MiniTest ::Test
33- end
3432
3533MiniTest . autorun
You can’t perform that action at this time.
0 commit comments