Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
kddnewton committed Sep 12, 2022
0 parents commit d605312
Show file tree
Hide file tree
Showing 22 changed files with 2,698 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
@@ -0,0 +1,24 @@
name: Ruby

on:
push:
branches:
- main

pull_request:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: head
bundler-cache: true

- name: Run the default task
run: bundle exec rake
12 changes: 12 additions & 0 deletions .gitignore
@@ -0,0 +1,12 @@
/.bundle/
/.vscode/
/.yardoc
/_yardoc/
/coverage/
/doc/
/pkg/
/spec/reports/
/tmp/

/lib/yarp/yarp.*
test.rb
3 changes: 3 additions & 0 deletions .gitmodules
@@ -0,0 +1,3 @@
[submodule "vendor/spec"]
path = vendor/spec
url = git@github.com:ruby/spec.git
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,5 @@
## [Unreleased]

## [0.1.0] - 2022-08-08

- Initial release
5 changes: 5 additions & 0 deletions Gemfile
@@ -0,0 +1,5 @@
# frozen_string_literal: true

source "https://rubygems.org"

gemspec
30 changes: 30 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,30 @@
PATH
remote: .
specs:
yarp (0.1.0)

GEM
remote: https://rubygems.org/
specs:
minitest (5.16.2)
power_assert (2.0.1)
rake (13.0.6)
rake-compiler (1.2.0)
rake
test-unit (3.5.3)
power_assert

PLATFORMS
arm64-darwin-21
x86_64-linux

DEPENDENCIES
bundler (~> 2)
minitest (~> 5)
rake (~> 13)
rake-compiler (~> 1)
test-unit (~> 3)
yarp!

BUNDLED WITH
2.3.6

0 comments on commit d605312

Please sign in to comment.