Skip to content
This repository has been archived by the owner on Jun 29, 2024. It is now read-only.

Commit

Permalink
Merge pull request #1 from koshilife/develop
Browse files Browse the repository at this point in the history
release v0.0.1
  • Loading branch information
koshilife authored Jul 6, 2020
2 parents d195f61 + c8721cd commit 73073d1
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gem-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rspec
bundle exec rake test
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ jobs:
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rspec
bundle exec rake test --trace
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
2 changes: 1 addition & 1 deletion bin/console
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env ruby

require "bundler/setup"
require "omniauth/zoom"
require "omniauth-zoom"

# You can add fixtures and/or initialization code here to make experimenting
# with your gem easier. You can also use a different console, if you like.
Expand Down
2 changes: 2 additions & 0 deletions omniauth-zoom.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.add_runtime_dependency 'omniauth-oauth2', '~> 1.6.0'

spec.add_development_dependency 'bundler', '~> 2.1'
spec.add_development_dependency 'codecov', '~> 0.1.17'
spec.add_development_dependency 'minitest', '~> 5.14.1'
Expand Down
3 changes: 0 additions & 3 deletions test/omniauth/zoom_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,4 @@ def test_that_it_has_a_version_number
refute_nil ::Omniauth::Zoom::VERSION
end

def test_it_does_something_useful
assert false
end
end
8 changes: 6 additions & 2 deletions test/test_helper.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

$LOAD_PATH.unshift File.expand_path("../lib", __dir__)

require 'simplecov'
Expand All @@ -6,5 +7,8 @@
require 'codecov'
SimpleCov.formatter = SimpleCov::Formatter::Codecov
end
require "omniauth/zoom"
require "minitest/autorun"
require 'minitest/autorun'
require 'minitest/reporters'
Minitest::Reporters.use!

require 'omniauth-zoom'

0 comments on commit 73073d1

Please sign in to comment.