Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Install Ruby

on: [push, pull_request]

jobs:

test:

runs-on: ubuntu-latest

steps:

- uses: actions/checkout@v2

- uses: ruby/setup-ruby@v1

with:

ruby-version: 2.6 # Not needed with a .ruby-version file

bundler-cache: true # runs 'bundle install' and caches installed gems automatically

- run: bundle exec rake
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
gem 'neutron-ruby-electron', '~> 0.1.2'
5 changes: 5 additions & 0 deletions electron-build.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
get_package(ELECTRON)
if(ELECTRON_FOUND)
print("Successfully built electron")
else
print("Sorry, electron has failed to build")