class Egis::S3LocationParser
@!visibility private
Constants
- S3_URL_PATTERN
Public Instance Methods
parse_url(url)
click to toggle source
# File lib/egis/s3_location_parser.rb, line 8 def parse_url(url) matched_data = S3_URL_PATTERN.match(url) [matched_data['bucket'], matched_data['key']] end