Skip to content

Commit 10e74ed

Browse files
author
Alessandro Gnoli
committed
Cleanup
1 parent f5bf68b commit 10e74ed

File tree

5 files changed

+15
-9
lines changed

5 files changed

+15
-9
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
language: ruby
22
rvm:
3-
- 2.1.1
3+
- 2.5.1
44
notifications:
55
email: false

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ gem 'mongo','~> 2.0.0'
66

77
group :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'
@@ -16,4 +15,5 @@ end
1615

1716
group :test do
1817
gem 'rake'
18+
gem 'minitest', '~> 5.11', '>= 5'
1919
end

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,19 @@
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
88
Take 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
1111
Check 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+

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ require 'rake/testtask'
2929
Rake::TestTask.new(:test) do |test|
3030
test.libs << 'lib' << 'test'
3131
test.pattern = 'test/**/test_*.rb'
32-
test.verbose = true
32+
test.warning = false
3333
end
3434

3535
desc "Code coverage detail"

test/helper.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,5 @@ def clean_filters
2929
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
3030
require 'nutella_lib'
3131

32-
class MiniTest::Test
33-
end
3432

3533
MiniTest.autorun

0 commit comments

Comments
 (0)