feature/share-libs
rb 10 lines 241 Bytes
Raw
1 class ApiConstraints
2 def initialize(options)
3 @version = options[:version]
4 @default = options[:default]
5 end
6
7 def matches?(req)
8 @default || req.headers['Accept'].include?("application/vnd.marketplace.v#{@version}")
9 end
10 end