onlyoffice_bugzilla_helper 0.1.1 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/onlyoffice_bugzilla_helper.rb +31 -30
- data/lib/onlyoffice_bugzilla_helper/bug_data.rb +31 -0
- data/lib/onlyoffice_bugzilla_helper/comments.rb +26 -0
- data/lib/onlyoffice_bugzilla_helper/name.rb +6 -0
- data/lib/onlyoffice_bugzilla_helper/networking.rb +13 -0
- data/lib/onlyoffice_bugzilla_helper/update_bug.rb +19 -0
- data/lib/onlyoffice_bugzilla_helper/version.rb +4 -1
- metadata +122 -28
- data/.codeclimate.yml +0 -27
- data/.gitignore +0 -13
- data/.overcommit.yml +0 -36
- data/.rspec +0 -3
- data/.rubocop.yml +0 -1
- data/.rubocop_todo.yml +0 -13
- data/.travis.yml +0 -14
- data/Changelog.md +0 -9
- data/Gemfile +0 -16
- data/LICENSE.txt +0 -661
- data/README.md +0 -39
- data/Rakefile +0 -6
- data/onlyoffice_bugzilla_helper.gemspec +0 -24
data/README.md
DELETED
@@ -1,39 +0,0 @@
|
|
1
|
-
# OnlyofficeBugzillaHelper
|
2
|
-
|
3
|
-
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/onlyoffice_bugzilla_helper`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
6
|
-
|
7
|
-
## Installation
|
8
|
-
|
9
|
-
Add this line to your application's Gemfile:
|
10
|
-
|
11
|
-
```ruby
|
12
|
-
gem 'onlyoffice_bugzilla_helper'
|
13
|
-
```
|
14
|
-
|
15
|
-
And then execute:
|
16
|
-
|
17
|
-
$ bundle
|
18
|
-
|
19
|
-
Or install it yourself as:
|
20
|
-
|
21
|
-
$ gem install onlyoffice_bugzilla_helper
|
22
|
-
|
23
|
-
## Usage
|
24
|
-
|
25
|
-
TODO: Write usage instructions here
|
26
|
-
|
27
|
-
## Development
|
28
|
-
|
29
|
-
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.
|
30
|
-
|
31
|
-
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).
|
32
|
-
|
33
|
-
## Contributing
|
34
|
-
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/onlyoffice_bugzilla_helper. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
36
|
-
|
37
|
-
## Code of Conduct
|
38
|
-
|
39
|
-
Everyone interacting in the OnlyofficeBugzillaHelper project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/onlyoffice_bugzilla_helper/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
lib = File.expand_path('lib', __dir__)
|
2
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
-
require 'onlyoffice_bugzilla_helper/version'
|
4
|
-
|
5
|
-
Gem::Specification.new do |spec|
|
6
|
-
spec.name = 'onlyoffice_bugzilla_helper'
|
7
|
-
spec.version = OnlyofficeBugzillaHelper::VERSION
|
8
|
-
spec.authors = ['Pavel Lobashov', 'ONLYOFFICE']
|
9
|
-
spec.email = ['shockwavenn@gmail.com']
|
10
|
-
|
11
|
-
spec.summary = 'Helper for bugzilla'
|
12
|
-
spec.description = 'Helper for bugzilla, used in QA'
|
13
|
-
spec.homepage = 'http://rubygems.org/gems/onlyoffice_bugzilla_helper'
|
14
|
-
|
15
|
-
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
16
|
-
f.match(%r{^(test|spec|features)/})
|
17
|
-
end
|
18
|
-
spec.require_paths = ['lib']
|
19
|
-
|
20
|
-
spec.add_development_dependency 'bundler', '~> 1.16'
|
21
|
-
spec.add_development_dependency 'rake', '~> 10.0'
|
22
|
-
spec.add_development_dependency 'rspec', '~> 3.0'
|
23
|
-
spec.license = 'AGPL-3.0'
|
24
|
-
end
|