-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tweaking tests (POSIX still fails after successful compilation) minorities import fixes docs docs update facil.io CSTL to latest developer version + minor fixes and adjustments update lib + fix max-age default value for backwards compatibility `max-age` should be an integer + docs possible fix for CI docs
- Loading branch information
Showing
152 changed files
with
64,993 additions
and
53,979 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# This workflow uses actions that are not certified by GitHub. | ||
# They are provided by a third-party and are governed by | ||
# separate terms of service, privacy policy, and support documentation. | ||
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake | ||
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby | ||
|
||
name: POSIX CI | ||
|
||
on: [push, pull_request] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
test: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
ruby-version: ['3.2', '3.3'] | ||
os: [ubuntu-24.04, macos-14] # , windows-latest | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Ruby # see https://github.com/ruby/setup-ruby#versioning) | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: ${{ matrix.ruby-version }} | ||
- name: Setup ENV | ||
run: | | ||
echo "CI=false" >> "$GITHUB_ENV" | ||
- name: Install Gems | ||
run: bundle install | ||
- name: Compile Iodine | ||
run: | | ||
echo CFLAGS = $CFLAGS | ||
echo cflags = $cflags | ||
echo HOME = $HOME | ||
ruby -e 'puts Gem.default_dir' | ||
bundle exec rake compile -v | ||
# env VERBOSE=1 bundle exec rspec --format documentation | ||
# - name: Run tests | ||
# run: bundle exec rake |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,4 @@ | |
LIMITS.md | ||
CHANGELOG.md | ||
LICENSE.txt | ||
SPEC-WebSocket-Draft.md | ||
SPEC-PubSub-Draft.md | ||
mustache.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,8 @@ | ||
source 'https://rubygems.org' | ||
# frozen_string_literal: true | ||
|
||
group :test do | ||
gem 'pry' | ||
gem 'rspec' | ||
gem 'rack' | ||
gem 'http' | ||
end | ||
source "https://rubygems.org" | ||
|
||
# Specify your gem's dependencies in iodine.gemspec | ||
gemspec | ||
|
||
gem "rake", "~> 13.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.