This repository was archived by the owner on Aug 29, 2024. It is now read-only.
  
  
  
  
    
    
    
      
    
  
  
    
File tree Expand file tree Collapse file tree 5 files changed +73
-1
lines changed Expand file tree Collapse file tree 5 files changed +73
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Async V1 
2+ 
3+ on : [push, pull_request] 
4+ 
5+ jobs :
6+   test :
7+     runs-on : ${{matrix.os}}-latest 
8+     
9+     strategy :
10+       matrix :
11+         os :
12+           - ubuntu 
13+         
14+         ruby :
15+           - head 
16+     
17+     env :
18+       BUNDLE_GEMFILE : gems/async-head.rb 
19+     
20+     steps :
21+     - uses : actions/checkout@v2 
22+     - uses : ruby/setup-ruby@v1 
23+       with :
24+         ruby-version : ${{matrix.ruby}} 
25+         bundler-cache : true 
26+     
27+     - name : Run tests 
28+       timeout-minutes : 5 
29+       run : bundle exec rspec 
Original file line number Diff line number Diff line change 1+ name : Async V1 
2+ 
3+ on : [push, pull_request] 
4+ 
5+ jobs :
6+   test :
7+     runs-on : ${{matrix.os}}-latest 
8+     
9+     strategy :
10+       matrix :
11+         os :
12+           - ubuntu 
13+         
14+         ruby :
15+           - 2.7 
16+     
17+     env :
18+       BUNDLE_GEMFILE : gems/async-v1.rb 
19+     
20+     steps :
21+     - uses : actions/checkout@v2 
22+     - uses : ruby/setup-ruby@v1 
23+       with :
24+         ruby-version : ${{matrix.ruby}} 
25+         bundler-cache : true 
26+     
27+     - name : Run tests 
28+       timeout-minutes : 5 
29+       run : bundle exec rspec 
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
1515
1616	spec . required_ruby_version  =  ">= 2.5" 
1717
18- 	spec . add_dependency  "async" ,   "~> 1.14" 
18+ 	spec . add_dependency  "async" 
1919
2020	spec . add_development_dependency  "async-container" ,  "~> 0.15" 
2121	spec . add_development_dependency  "async-rspec" ,  "~> 1.10" 
Original file line number Diff line number Diff line change 1+ # frozen_string_literal: true 
2+ 
3+ source  'https://rubygems.org' 
4+ 
5+ gemspec  path : "../" 
6+ 
7+ gem  'async' ,  git : "https://github.com/socketry/async" 
Original file line number Diff line number Diff line change 1+ # frozen_string_literal: true 
2+ 
3+ source  'https://rubygems.org' 
4+ 
5+ gemspec  path : "../" 
6+ 
7+ gem  'async' ,  '~> 1.0' 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments