Skip to content

Commit df59593

Browse files
authored
Cleanup (#14)
* Remove .travis.yml * Remove dead Travis CI badge * Remove '# coding: utf-8' * Bump version to 0.4.0 * Add .ruby-version * Add Gemfile.lock * Remove coveralls * Add simplecov gem * Configure simplecov * Remove development dependency: bundler * Remove guard-rspec * Remove guard
1 parent 0e06c94 commit df59593

File tree

9 files changed

+108
-32
lines changed

9 files changed

+108
-32
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
.bundle
44
.config
55
.yardoc
6-
Gemfile.lock
76
InstalledFiles
87
_yardoc
98
coverage

.ruby-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.1.7

.travis.yml

Lines changed: 0 additions & 9 deletions
This file was deleted.

Gemfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
source 'https://rubygems.org'
2+
23
gemspec
4+
5+
gem "simplecov", require: false

Gemfile.lock

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
PATH
2+
remote: .
3+
specs:
4+
errbit_github_plugin (0.4.0)
5+
errbit_plugin
6+
octokit
7+
8+
GEM
9+
remote: https://rubygems.org/
10+
specs:
11+
activesupport (7.2.2.1)
12+
base64
13+
benchmark (>= 0.3)
14+
bigdecimal
15+
concurrent-ruby (~> 1.0, >= 1.3.1)
16+
connection_pool (>= 2.2.5)
17+
drb
18+
i18n (>= 1.6, < 2)
19+
logger (>= 1.4.2)
20+
minitest (>= 5.1)
21+
securerandom (>= 0.3)
22+
tzinfo (~> 2.0, >= 2.0.5)
23+
addressable (2.8.7)
24+
public_suffix (>= 2.0.2, < 7.0)
25+
base64 (0.2.0)
26+
benchmark (0.4.0)
27+
bigdecimal (3.1.9)
28+
concurrent-ruby (1.3.5)
29+
connection_pool (2.5.0)
30+
diff-lcs (1.6.1)
31+
docile (1.4.1)
32+
drb (2.2.1)
33+
errbit_plugin (0.6.0)
34+
faraday (2.13.0)
35+
faraday-net_http (>= 2.0, < 3.5)
36+
json
37+
logger
38+
faraday-net_http (3.4.0)
39+
net-http (>= 0.5.0)
40+
i18n (1.14.7)
41+
concurrent-ruby (~> 1.0)
42+
json (2.10.2)
43+
logger (1.7.0)
44+
minitest (5.25.5)
45+
net-http (0.6.0)
46+
uri
47+
octokit (9.2.0)
48+
faraday (>= 1, < 3)
49+
sawyer (~> 0.9)
50+
public_suffix (6.0.1)
51+
rake (13.2.1)
52+
rspec (3.13.0)
53+
rspec-core (~> 3.13.0)
54+
rspec-expectations (~> 3.13.0)
55+
rspec-mocks (~> 3.13.0)
56+
rspec-core (3.13.3)
57+
rspec-support (~> 3.13.0)
58+
rspec-expectations (3.13.3)
59+
diff-lcs (>= 1.2.0, < 2.0)
60+
rspec-support (~> 3.13.0)
61+
rspec-mocks (3.13.2)
62+
diff-lcs (>= 1.2.0, < 2.0)
63+
rspec-support (~> 3.13.0)
64+
rspec-support (3.13.2)
65+
sawyer (0.9.2)
66+
addressable (>= 2.3.5)
67+
faraday (>= 0.17.3, < 3)
68+
securerandom (0.4.1)
69+
simplecov (0.22.0)
70+
docile (~> 1.1)
71+
simplecov-html (~> 0.11)
72+
simplecov_json_formatter (~> 0.1)
73+
simplecov-html (0.13.1)
74+
simplecov_json_formatter (0.1.4)
75+
tzinfo (2.0.6)
76+
concurrent-ruby (~> 1.0)
77+
uri (1.0.3)
78+
79+
PLATFORMS
80+
aarch64-linux-gnu
81+
aarch64-linux-musl
82+
arm-linux-gnu
83+
arm-linux-musl
84+
arm64-darwin
85+
ruby
86+
x86-linux-gnu
87+
x86-linux-musl
88+
x86_64-darwin
89+
x86_64-linux-gnu
90+
x86_64-linux-musl
91+
92+
DEPENDENCIES
93+
activesupport
94+
errbit_github_plugin!
95+
rake
96+
rspec
97+
simplecov
98+
99+
BUNDLED WITH
100+
2.6.7

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
# Errbit Github Plugin [![TravisCI][travis-img-url]][travis-ci-url]
2-
3-
[travis-img-url]: https://travis-ci.org/errbit/errbit_github_plugin.svg?branch=master
4-
[travis-ci-url]: http://travis-ci.org/errbit/errbit_github_plugin
1+
# Errbit Github Plugin
52

63
This plugin provides GitHub issue tracker integration for Errbit and it is the
74
only plugin included by default in Errbit.

errbit_github_plugin.gemspec

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# coding: utf-8
21
lib = File.expand_path('../lib', __FILE__)
32
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
43
require 'errbit_github_plugin/version'
@@ -23,10 +22,6 @@ Gem::Specification.new do |spec|
2322
spec.add_dependency 'octokit'
2423

2524
spec.add_development_dependency 'rspec'
26-
spec.add_development_dependency 'guard'
27-
spec.add_development_dependency 'guard-rspec'
28-
spec.add_development_dependency 'coveralls'
29-
spec.add_development_dependency 'bundler'
3025
spec.add_development_dependency 'rake'
3126
spec.add_development_dependency 'activesupport'
3227
end
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module ErrbitGithubPlugin
2-
VERSION = '0.3.0'
2+
VERSION = '0.4.0'
33
end

spec/spec_helper.rb

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,6 @@
1-
if ENV['COVERAGE']
2-
require 'simplecov'
3-
if ENV['CI']
4-
require 'coveralls'
5-
Coveralls.wear!
6-
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
7-
SimpleCov::Formatter::HTMLFormatter,
8-
Coveralls::SimpleCov::Formatter
9-
]
10-
end
1+
require 'simplecov'
112

12-
SimpleCov.start
13-
end
3+
SimpleCov.start
144

155
require 'errbit_plugin'
166
require 'errbit_github_plugin'

0 commit comments

Comments
 (0)