Skip to content

Commit

Permalink
Update docs, license, gemspec...
Browse files Browse the repository at this point in the history
  • Loading branch information
shiroyasha committed Mar 18, 2017
1 parent e0ba9a3 commit b610a5a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 36 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2017 Predrag Rakic
Copyright (c) 2017 Rendered Text

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
33 changes: 8 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,42 +2,25 @@

[![Gem Version](https://badge.fury.io/rb/semaphore_test_boosters.svg)](https://badge.fury.io/rb/semaphore_test_boosters)

Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/test_boosters`. To experiment with that code, run `bin/console` for an interactive prompt.

TODO: Delete this and the text above, and describe your gem
Auto Parallelization — runs test files in multiple threads.

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'test_boosters'
```

And then execute:

$ bundle

Or install it yourself as:

$ gem install test_boosters
``` bash
gem install test_boosters
````

## Usage

TODO: Write usage instructions here

## Development

After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).

## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/test_boosters.
Bug reports and pull requests are welcome on GitHub at
https://github.com/renderedtext/test_boosters.


## License

The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).

The gem is available as open source under the terms of the
[MIT License](http://opensource.org/licenses/MIT).
12 changes: 2 additions & 10 deletions test_boosters.gemspec
Original file line number Diff line number Diff line change
@@ -1,27 +1,19 @@
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "test_boosters/version"

Gem::Specification.new do |spec|
spec.name = "semaphore_test_boosters"
spec.version = TestBoosters::VERSION
spec.authors = ["MAINTAINER Rendered Text"]
spec.authors = ["Developers at Rendered Text"]
spec.email = ["[email protected]"]

spec.summary = %q{Semaphore job parallelization.}
spec.description = %q{Gem for auto-parallelizing builds across Semaphore jobs.}
spec.homepage = "https://github.com/renderedtext/test-boosters"
spec.license = "MIT"

# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
# to allow pushing to a single host or delete this section to allow pushing to any host.
if spec.respond_to?(:metadata)
spec.metadata['allowed_push_host'] = "https://rubygems.org"
else
raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
end

spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
Expand Down

0 comments on commit b610a5a

Please sign in to comment.