Skip to content

Commit

Permalink
Releasing gem
Browse files Browse the repository at this point in the history
* README.rdoc: updated usage instructions
* VERSION: deleted
* jaribio_formatter.gemspec: updated
  • Loading branch information
Brian Jones committed May 10, 2012
1 parent 00eedbc commit ed68a74
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
15 changes: 10 additions & 5 deletions jaribio_formatter/README.rdoc
Expand Up @@ -7,16 +7,21 @@ This gem contains:
== RSpec Configuration

RSpec.configure do |config|
# the url to the installation of jaribio
# Can add the formatter here or on command line of rspec
config.add_formatter 'Jaribio::RSpecFormatter',
File.join(File.dirname(__FILE__), 'jaribio.txt')

# Configure the url to the installation of jaribio
config.jaribio_url = 'https://localhost/jaribio'

# a jaribio api key, obtained from a user's profile page
# Configure a jaribio api key, obtained from a user's profile page
config.jaribio_api_key = 'asdf1234'

# optional, by default all open plans are updated
config.jaribio_plans = ['plan 1', 'plan 2', 'plan 3']
# Optional, by default all open plans are updated
# Configure only specific plans to be updated.
config.jaribio_plans = [1, 2, 3]

# optional, by default this is false and the formatter will not create
# Optional, by default this is false and the formatter will not create
# missing test cases
config.jaribio_auto_create = true
end
Expand Down
1 change: 0 additions & 1 deletion jaribio_formatter/VERSION

This file was deleted.

2 changes: 1 addition & 1 deletion jaribio_formatter/jaribio_formatter.gemspec
Expand Up @@ -11,7 +11,7 @@ Gem::Specification.new do |s|
s.homepage = "https://github.com/bithckr/Jaribio/tree/master/jaribio_formatter"
s.license = "MIT"
s.summary = %Q{Jaribio test framework formatters}
s.description = %Q{Provide the necessary code to record execution results in Jaribio while running tests in RSpec, Test::Unit, or Cucumber}
s.description = %Q{Provide the necessary code to record execution results in Jaribio while running tests in RSpec}
s.files = Dir.glob("{lib,spec}/**/*") + %w(README.rdoc Rakefile jaribio_formatter.gemspec)
s.test_files = Dir.glob("{spec}/**/*")
s.require_paths = ["lib"]
Expand Down

0 comments on commit ed68a74

Please sign in to comment.