-
| 
         I have just created a gem with bundler. I chose these options   | 
  
Beta Was this translation helpful? Give feedback.
      
      
          Answered by
          
            simi
          
      
      
        Jul 22, 2022 
      
    
    Replies: 1 comment
-
| 
         That's correct. Your runtime dependencies (as mentioned in the comment) should be in gemspec. But for dev dependencies (tools useful for development) it is common to keep them in   | 
  
Beta Was this translation helpful? Give feedback.
                  
                    0 replies
                  
                
            
      Answer selected by
        chiaraani
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
        
    
That's correct. Your runtime dependencies (as mentioned in the comment) should be in gemspec. But for dev dependencies (tools useful for development) it is common to keep them in
Gemfile. Alternatively you can specify them in gemspec usingadd_development_dependency.