remove some ruby stuff that's not needed

This commit is contained in:
John Bintz 2011-12-31 09:45:40 -05:00
parent 24dd0ed49d
commit 489da3041d
4 changed files with 16 additions and 46 deletions

View File

@ -1,29 +1,22 @@
# Jasmine::Headless::Webkit::Reporters Reporters for use with `jasmine-headless-webkit`. Just wraps up the original reporter in a way that JHW can use them!
TODO: Write a gem description Reporters included:
## Installation From [jasmine-reporters](https://github.com/larrymyers/jasmine-reporters):
Add this line to your application's Gemfile: * JUnit
* Teamcity
Use them like so:
`jasmine-headless-webkit -f Console -f JUnit:junit.xml -f Teamcity:teamcity.txt`
Make sure `jasmine-headless-webkit` can find the reporters:
``` ruby
# Gemfile
gem 'jasmine-headless-webkit'
gem 'jasmine-headless-webkit-reporters' gem 'jasmine-headless-webkit-reporters'
```
And then execute:
$ bundle
Or install it yourself as:
$ gem install jasmine-headless-webkit-reporters
## Usage
TODO: Write usage instructions here
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

View File

@ -1,17 +1,14 @@
# -*- encoding: utf-8 -*- # -*- encoding: utf-8 -*-
require File.expand_path('../lib/jasmine-headless-webkit-reporters/version', __FILE__)
Gem::Specification.new do |gem| Gem::Specification.new do |gem|
gem.authors = ["John Bintz"] gem.authors = ["John Bintz"]
gem.email = ["john@coswellproductions.com"] gem.email = ["john@coswellproductions.com"]
gem.description = %q{TODO: Write a gem description} gem.description = %q{Reporters for jasmine-headless-webkit, wrapping up other existing reporters}
gem.summary = %q{TODO: Write a gem summary} gem.summary = %q{Reporters for jasmine-headless-webkit, wrapping up other existing reporters}
gem.homepage = "" gem.homepage = ""
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n") gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "jasmine-headless-webkit-reporters" gem.name = "jasmine-headless-webkit-reporters"
gem.require_paths = ["lib"] gem.version = '0.0.1'
gem.version = Jasmine::Headless::Webkit::Reporters::VERSION
end end

View File

@ -1,11 +0,0 @@
require "jasmine-headless-webkit-reporters/version"
module Jasmine
module Headless
module Webkit
module Reporters
# Your code goes here...
end
end
end
end

View File

@ -1,9 +0,0 @@
module Jasmine
module Headless
module Webkit
module Reporters
VERSION = "0.0.1"
end
end
end
end