Skip to content

Commit

Permalink
Merge pull request #2 from chrisbarber86/add_travis
Browse files Browse the repository at this point in the history
Add Travis CI
  • Loading branch information
chrisbarber86 committed Jun 15, 2015
2 parents 891195f + e2d32f9 commit afbc228
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
language: ruby
rvm:
- 2.2.2
- 2.1.6
- 2.0.0
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Logput

[![Build Status](https://travis-ci.org/chrisbarber86/logput.svg?branch=add_travis)](https://travis-ci.org/chrisbarber86/logput)

Rack middleware to sit in a rails app to put put the current environments log to a webpage. eg /logput

To be used in test and development environments to see logs without needing direct access to the box.
Expand Down
11 changes: 10 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
#!/usr/bin/env rake
require "bundler/gem_tasks"
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)

task :default => :fudge

# Test using Fudge
task :fudge do
exec 'fudge build 2> /dev/null'
end
1 change: 1 addition & 0 deletions logput.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ Gem::Specification.new do |gem|
gem.add_development_dependency 'flay'
gem.add_development_dependency 'flog'
gem.add_development_dependency 'yard'
gem.add_development_dependency 'rake'
end

0 comments on commit afbc228

Please sign in to comment.