-
-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
115 additions
and
70 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,35 @@ | ||
name: Rack Head | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test: | ||
runs-on: ${{matrix.os}}-latest | ||
continue-on-error: ${{matrix.experimental}} | ||
|
||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu | ||
|
||
ruby: | ||
- 2.7 | ||
|
||
env: | ||
BUNDLE_GEMFILE: gems/rack-head.rb | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: ioquatix/setup-ruby@master | ||
env: ${{matrix.env}} | ||
with: | ||
ruby-version: ${{matrix.ruby}} | ||
bundler-cache: true | ||
|
||
- name: Installing packages (ubuntu) | ||
if: matrix.os == 'ubuntu' | ||
run: sudo apt-get install apache2-utils | ||
|
||
- name: Run tests | ||
timeout-minutes: 5 | ||
run: bundle exec rspec |
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,35 @@ | ||
name: Rack V1 | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test: | ||
runs-on: ${{matrix.os}}-latest | ||
continue-on-error: ${{matrix.experimental}} | ||
|
||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu | ||
|
||
ruby: | ||
- 2.7 | ||
|
||
env: | ||
BUNDLE_GEMFILE: gems/rack-v1.rb | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: ioquatix/setup-ruby@master | ||
env: ${{matrix.env}} | ||
with: | ||
ruby-version: ${{matrix.ruby}} | ||
bundler-cache: true | ||
|
||
- name: Installing packages (ubuntu) | ||
if: matrix.os == 'ubuntu' | ||
run: sudo apt-get install apache2-utils | ||
|
||
- name: Run tests | ||
timeout-minutes: 5 | ||
run: bundle exec rspec |
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,42 +1,38 @@ | ||
|
||
require_relative 'lib/falcon/version' | ||
require_relative "lib/falcon/version" | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = "falcon" | ||
spec.version = Falcon::VERSION | ||
spec.authors = ["Samuel Williams"] | ||
spec.email = ["[email protected]"] | ||
|
||
spec.summary = "A fast, asynchronous, rack-compatible web server." | ||
spec.authors = ["Samuel Williams"] | ||
spec.license = "MIT" | ||
|
||
spec.homepage = "https://github.com/socketry/falcon" | ||
|
||
spec.required_ruby_version = "~> 2.5" | ||
spec.files = Dir.glob('{bake,bin,lib}/**/*', File::FNM_DOTMATCH, base: __dir__) | ||
|
||
spec.files = Dir['{bake,bin,lib}/**/*', base: __dir__] | ||
spec.require_paths = ['lib'] | ||
spec.executables = ["falcon", "falcon-host"] | ||
|
||
spec.executables = ['falcon', 'falcon-host'] | ||
spec.required_ruby_version = ">= 2.5" | ||
|
||
spec.add_dependency "async", "~> 1.13" | ||
spec.add_dependency "async-io", "~> 1.22" | ||
spec.add_dependency "async-container", "~> 0.16.0" | ||
spec.add_dependency "async-http", "~> 0.52.0" | ||
spec.add_dependency "async-http-cache", "~> 0.2.0" | ||
spec.add_dependency "async-container", "~> 0.16.0" | ||
|
||
spec.add_dependency "async-io", "~> 1.22" | ||
spec.add_dependency "build-environment", "~> 1.13" | ||
spec.add_dependency "bundler" | ||
spec.add_dependency "localhost", "~> 1.1" | ||
spec.add_dependency "process-metrics", "~> 0.2.0" | ||
spec.add_dependency "rack", ">= 1.0" | ||
spec.add_dependency "samovar", "~> 2.1" | ||
|
||
spec.add_dependency 'samovar', "~> 2.1" | ||
spec.add_dependency 'localhost', "~> 1.1" | ||
spec.add_dependency 'build-environment', '~> 1.13' | ||
|
||
spec.add_dependency 'process-metrics', '~> 0.2.0' | ||
|
||
spec.add_development_dependency "async-process", "~> 1.1" | ||
spec.add_development_dependency "async-rspec", "~> 1.7" | ||
spec.add_development_dependency "async-websocket", "~> 0.14.0" | ||
spec.add_development_dependency "async-process", "~> 1.1" | ||
|
||
spec.add_development_dependency "bake" | ||
spec.add_development_dependency "covered" | ||
spec.add_development_dependency "bundler" | ||
spec.add_development_dependency "rspec", "~> 3.6" | ||
end |