mirror of
https://github.com/kaminari/kaminari.git
synced 2022-11-09 13:44:37 -05:00
Merge pull request #467 from wbyoung/coveralls
Added Coveralls support.
This commit is contained in:
commit
70610643aa
5 changed files with 9 additions and 1 deletions
1
.coveralls.yml
Normal file
1
.coveralls.yml
Normal file
|
@ -0,0 +1 @@
|
||||||
|
service_name: travis
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -3,6 +3,7 @@
|
||||||
.idea
|
.idea
|
||||||
Gemfile.lock
|
Gemfile.lock
|
||||||
gemfiles/*.lock
|
gemfiles/*.lock
|
||||||
|
coverage/*
|
||||||
pkg/*
|
pkg/*
|
||||||
|
|
||||||
doc
|
doc
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
= Kaminari {<img src="https://travis-ci.org/amatsuda/kaminari.png"/>}[http://travis-ci.org/amatsuda/kaminari] {<img src="https://codeclimate.com/github/amatsuda/kaminari.png" />}[https://codeclimate.com/github/amatsuda/kaminari]
|
= Kaminari {<img src="https://travis-ci.org/amatsuda/kaminari.png"/>}[http://travis-ci.org/amatsuda/kaminari] {<img src="https://codeclimate.com/github/amatsuda/kaminari.png" />}[https://codeclimate.com/github/amatsuda/kaminari] {<img src="https://coveralls.io/repos/amatsuda/kaminari/badge.png" />}[https://coveralls.io/r/amatsuda/kaminari]
|
||||||
|
|
||||||
A Scope & Engine based, clean, powerful, customizable and sophisticated paginator for modern web app frameworks and ORMs
|
A Scope & Engine based, clean, powerful, customizable and sophisticated paginator for modern web app frameworks and ORMs
|
||||||
|
|
||||||
|
|
|
@ -33,4 +33,5 @@ Gem::Specification.new do |s|
|
||||||
s.add_development_dependency 'capybara', ['>= 1.0']
|
s.add_development_dependency 'capybara', ['>= 1.0']
|
||||||
s.add_development_dependency 'database_cleaner', ['~> 1.2.0']
|
s.add_development_dependency 'database_cleaner', ['~> 1.2.0']
|
||||||
s.add_development_dependency 'rdoc', ['>= 0']
|
s.add_development_dependency 'rdoc', ['>= 0']
|
||||||
|
s.add_development_dependency 'coveralls', ['>= 0']
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
require 'coveralls'
|
||||||
|
|
||||||
|
# Enable Coveralls
|
||||||
|
Coveralls.wear!
|
||||||
|
|
||||||
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
||||||
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue