omniauth-lever 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 2d4d718de0573a5f224a3a7a5c3f9ccf2d924713880f1e374972edded85dda9a
4
+ data.tar.gz: 2e5fc8e82e13ce71f349ac3a1c4d86c2bf438247d09f1b17fda0a2c946649a92
5
+ SHA512:
6
+ metadata.gz: 6cfb0dfbf1095a16430078024410add50135c16ef873cacfc92617739e16c849d5cc343fa39a8550e18d73fed4e0ad9e7b80ab2c58b1f62b4531add44dcd9686
7
+ data.tar.gz: 1859ea06660186d057cea1ac6734ae6fdea7caf5507e28821463aad837b3803451a0a6ed2f7ad22103fe242cb44cdf90eb626472ddc9d70bee3cd6a2e015c116
@@ -0,0 +1,44 @@
1
+ name: release
2
+ on:
3
+ push:
4
+ branches:
5
+ - master
6
+ jobs:
7
+ release-please:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: GoogleCloudPlatform/release-please-action@v2
11
+ id: release
12
+ with:
13
+ release-type: ruby
14
+ package-name: omniauth-lever
15
+ bump-minor-pre-major: true
16
+ version-file: "lib/omniauth/lever/version.rb"
17
+ # Checkout code if release was created
18
+ - uses: actions/checkout@v2
19
+ # if: ${{ steps.release.outputs.release_created }}
20
+ # Setup ruby if a release was created
21
+ - uses: ruby/setup-ruby@v1
22
+ with:
23
+ ruby-version: 2.7.4
24
+ # if: ${{ steps.release.outputs.release_created }}
25
+ # Bundle install
26
+ - run: bundle install
27
+ if: ${{ steps.release.outputs.release_created }}
28
+ - name: publish gem
29
+ run: |
30
+ pwd
31
+ echo $GITHUB_WORKSPACE
32
+ echo $(ls | tr "\n" " ")
33
+ echo "Done LS"
34
+ ruby --version
35
+ gem --version
36
+ mkdir -p $HOME/.gem
37
+ touch $HOME/.gem/credentials
38
+ chmod 0600 $HOME/.gem/credentials
39
+ printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
40
+ gem build *.gemspec
41
+ gem push *.gem
42
+ env:
43
+ GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
44
+ # if: ${{ steps.release.outputs.release_created }}
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/CHANGELOG.md ADDED
@@ -0,0 +1,8 @@
1
+ # Changelog
2
+
3
+ ## 0.1.0 (2021-09-10)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * Remove travis integration ([eebd883](https://www.github.com/ScreenLoop/omniauth-lever/commit/eebd883220ba34212df397b67a3b5b156391137d))
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in omniauth-lever.gemspec
4
+ gemspec
5
+
6
+ gem "rake", "~> 12.0"
7
+ gem "rspec", "~> 3.0"
data/Gemfile.lock ADDED
@@ -0,0 +1,34 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ omniauth-lever (0.1.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ diff-lcs (1.4.4)
10
+ rake (12.3.3)
11
+ rspec (3.10.0)
12
+ rspec-core (~> 3.10.0)
13
+ rspec-expectations (~> 3.10.0)
14
+ rspec-mocks (~> 3.10.0)
15
+ rspec-core (3.10.1)
16
+ rspec-support (~> 3.10.0)
17
+ rspec-expectations (3.10.1)
18
+ diff-lcs (>= 1.2.0, < 2.0)
19
+ rspec-support (~> 3.10.0)
20
+ rspec-mocks (3.10.2)
21
+ diff-lcs (>= 1.2.0, < 2.0)
22
+ rspec-support (~> 3.10.0)
23
+ rspec-support (3.10.2)
24
+
25
+ PLATFORMS
26
+ ruby
27
+
28
+ DEPENDENCIES
29
+ omniauth-lever!
30
+ rake (~> 12.0)
31
+ rspec (~> 3.0)
32
+
33
+ BUNDLED WITH
34
+ 2.1.4
data/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # OmniAuth::Lever
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/omniauth/lever`. 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 'omniauth-lever'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle install
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install omniauth-lever
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]/omniauth-lever.
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task default: :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "omniauth/lever"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,5 @@
1
+ module OmniAuth
2
+ module Lever
3
+ VERSION = '0.1.0'
4
+ end
5
+ end
@@ -0,0 +1,8 @@
1
+ require 'omniauth/lever/version'
2
+
3
+ module OmniAuth
4
+ module Lever
5
+ class Error < StandardError; end
6
+ # Your code goes here...
7
+ end
8
+ end
@@ -0,0 +1,29 @@
1
+ require_relative 'lib/omniauth/lever/version'
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = "omniauth-lever"
5
+ spec.version = OmniAuth::Lever::VERSION
6
+ spec.authors = ["Alex Santos"]
7
+ spec.email = ["hello@alexcsantos.com"]
8
+
9
+ spec.summary = %q{OmniAuth implementation for Lever}
10
+ spec.homepage = "https://github.com/ScreenLoop/omniauth-lever"
11
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
12
+
13
+ spec.metadata = {
14
+ "bug_tracker_uri" => "#{spec.homepage}/issues",
15
+ "changelog_uri" => "#{spec.homepage}/blob/main/CHANGELOG.md",
16
+ "documentation_uri" => spec.homepage.to_s,
17
+ "homepage_uri" => spec.homepage.to_s,
18
+ "source_code_uri" => spec.homepage.to_s
19
+ }
20
+
21
+ # Specify which files should be added to the gem when it is released.
22
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
24
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25
+ end
26
+ spec.bindir = "exe"
27
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
+ spec.require_paths = ["lib"]
29
+ end
metadata ADDED
@@ -0,0 +1,60 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: omniauth-lever
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Alex Santos
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2021-09-10 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
14
+ email:
15
+ - hello@alexcsantos.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".github/workflows/release.yml"
21
+ - ".gitignore"
22
+ - ".rspec"
23
+ - CHANGELOG.md
24
+ - Gemfile
25
+ - Gemfile.lock
26
+ - README.md
27
+ - Rakefile
28
+ - bin/console
29
+ - bin/setup
30
+ - lib/omniauth/lever.rb
31
+ - lib/omniauth/lever/version.rb
32
+ - omniauth-lever.gemspec
33
+ homepage: https://github.com/ScreenLoop/omniauth-lever
34
+ licenses: []
35
+ metadata:
36
+ bug_tracker_uri: https://github.com/ScreenLoop/omniauth-lever/issues
37
+ changelog_uri: https://github.com/ScreenLoop/omniauth-lever/blob/main/CHANGELOG.md
38
+ documentation_uri: https://github.com/ScreenLoop/omniauth-lever
39
+ homepage_uri: https://github.com/ScreenLoop/omniauth-lever
40
+ source_code_uri: https://github.com/ScreenLoop/omniauth-lever
41
+ post_install_message:
42
+ rdoc_options: []
43
+ require_paths:
44
+ - lib
45
+ required_ruby_version: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: 2.3.0
50
+ required_rubygems_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ requirements: []
56
+ rubygems_version: 3.1.6
57
+ signing_key:
58
+ specification_version: 4
59
+ summary: OmniAuth implementation for Lever
60
+ test_files: []