Complete the code to specify a gem version exactly 2.1.0.
gem 'rails', '[1]'
Using '= 2.1.0' means the gem version must be exactly 2.1.0.
Complete the code to allow any version greater than or equal to 1.5 but less than 2.0.
gem 'nokogiri', '[1]'
The constraint '>= 1.5, < 2.0' means versions from 1.5 up to but not including 2.0 are allowed.
Fix the error in the version constraint to allow versions starting from 3.0 up to but not including 4.0.
gem 'puma', '[1]'
The correct syntax to allow versions from 3.0 up to but not including 4.0 is '>= 3.0, < 4.0'.
Fill both blanks to specify a gem version that is at least 2.2 but less than 3.0.
gem 'devise', '[1]', '[2]'
Using '>= 2.2' and '< 3.0' together means versions from 2.2 up to but not including 3.0 are allowed.
Fill all three blanks to specify a gem version that is at least 1.8, less than 2.0, and not equal to 1.9.1.
gem 'sidekiq', '[1]', '[2]', '[3]'
Using '>= 1.8', '< 2.0', and '!= 1.9.1' means versions from 1.8 up to but not including 2.0 are allowed except version 1.9.1.