top-travel-destinations-cli-gem 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +44 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/bin/top-travel-destinations +5 -0
- data/config/environment.rb +8 -0
- data/lib/top_travel_destinations/cli.rb +92 -0
- data/lib/top_travel_destinations/region.rb +32 -0
- data/lib/top_travel_destinations/scraper.rb +33 -0
- data/lib/top_travel_destinations/version.rb +3 -0
- data/top_travel_destinations.gemspec +37 -0
- metadata +130 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 5036bbbcbaf0a47d15138a37cb69273ae54db8f9
|
4
|
+
data.tar.gz: dafe335ea4e7e6642ff14cfa926a96b8891d5b26
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 8f9a939f583ee148ec3d9b5690a8484fc6bf775b2ea114fd209a3d329498dc1b5a38389c322c8206e429689a59830e1187c3dbb3e58c84bcb61a4c9434e04580
|
7
|
+
data.tar.gz: 488631ce9bf33e88bb4e8e56e98f687ca84a2d1b9933d49c150d1275f9efb56f4a4956bc7885a15e55359e4d10bfb83120fab57c936c9fe4e55c5803d43b0060
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, and in the interest of
|
4
|
+
fostering an open and welcoming community, we pledge to respect all people who
|
5
|
+
contribute through reporting issues, posting feature requests, updating
|
6
|
+
documentation, submitting pull requests or patches, and other activities.
|
7
|
+
|
8
|
+
We are committed to making participation in this project a harassment-free
|
9
|
+
experience for everyone, regardless of level of experience, gender, gender
|
10
|
+
identity and expression, sexual orientation, disability, personal appearance,
|
11
|
+
body size, race, ethnicity, age, religion, or nationality.
|
12
|
+
|
13
|
+
Examples of unacceptable behavior by participants include:
|
14
|
+
|
15
|
+
* The use of sexualized language or imagery
|
16
|
+
* Personal attacks
|
17
|
+
* Trolling or insulting/derogatory comments
|
18
|
+
* Public or private harassment
|
19
|
+
* Publishing other's private information, such as physical or electronic
|
20
|
+
addresses, without explicit permission
|
21
|
+
* Other unethical or unprofessional conduct
|
22
|
+
|
23
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
24
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
25
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
26
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
27
|
+
threatening, offensive, or harmful.
|
28
|
+
|
29
|
+
By adopting this Code of Conduct, project maintainers commit themselves to
|
30
|
+
fairly and consistently applying these principles to every aspect of managing
|
31
|
+
this project. Project maintainers who do not follow or enforce the Code of
|
32
|
+
Conduct may be permanently removed from the project team.
|
33
|
+
|
34
|
+
This code of conduct applies both within project spaces and in public spaces
|
35
|
+
when an individual is representing the project or its community.
|
36
|
+
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
38
|
+
reported by contacting a project maintainer at antonio.g.david@gmail.com. All
|
39
|
+
complaints will be reviewed and investigated and will result in a response that
|
40
|
+
is deemed necessary and appropriate to the circumstances. Maintainers are
|
41
|
+
obligated to maintain confidentiality with regard to the reporter of an
|
42
|
+
incident.
|
43
|
+
|
44
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
45
|
+
version 1.3.0, available at
|
46
|
+
[http://contributor-covenant.org/version/1/3/0/][version]
|
47
|
+
|
48
|
+
[homepage]: http://contributor-covenant.org
|
49
|
+
[version]: http://contributor-covenant.org/version/1/3/0/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 Antonio David
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
# TopTravelDestinations
|
2
|
+
|
3
|
+
Welcome to the Top Travel Destinations CLI gem! This gem was inspired by a love for traveling the world and learning about new cultures and experiences. The gem uses information from the TripAdvisor Travelers' Choice Destinations website (http://www.tripadvisor.com/TravelersChoice-Destinations) to provide you with easy-access to two levels of information: (1) the regions of the world; and (2) the top destinations of that region, as provided by TripAdvisor. The world is your oyster. Safe travels and thank you for using the Top Travel Destinations CLI gem.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'top-travel-destinations-cli-gem'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install top-travel-destinations-cli-gem
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
The Top Travel Destinations CLI gem has simple instructions:
|
24
|
+
1) At the "Here are the Regions of the World" prompt, enter an alphanumeric number (i.e., 1-9) to select a region.
|
25
|
+
2) The gem will automatically generate the Top Travel Destinations for that region.
|
26
|
+
3) After viewing Top Destinations for one region, either enter:
|
27
|
+
(a)'list' to return to the list of regions;
|
28
|
+
(b) 'exit' to leave the gem.
|
29
|
+
|
30
|
+
## Development
|
31
|
+
|
32
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
33
|
+
|
34
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
35
|
+
|
36
|
+
## Contributing
|
37
|
+
|
38
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/top_travel_destinations. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
39
|
+
|
40
|
+
|
41
|
+
## License
|
42
|
+
|
43
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
44
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "top_travel_destinations"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
@@ -0,0 +1,8 @@
|
|
1
|
+
require 'pry'
|
2
|
+
require 'nokogiri'
|
3
|
+
require 'open-uri'
|
4
|
+
|
5
|
+
require_relative "../lib/top_travel_destinations/version"
|
6
|
+
require_relative '../lib/top_travel_destinations/cli'
|
7
|
+
require_relative '../lib/top_travel_destinations/scraper'
|
8
|
+
require_relative '../lib/top_travel_destinations/region'
|
@@ -0,0 +1,92 @@
|
|
1
|
+
class TopTravelDestinations::CLI
|
2
|
+
BASE_URL = "http://www.tripadvisor.com/TravelersChoice-Destinations"
|
3
|
+
|
4
|
+
def call
|
5
|
+
welcome_screen
|
6
|
+
make_regions
|
7
|
+
add_destinations_to_regions
|
8
|
+
list_regions
|
9
|
+
select_region
|
10
|
+
end
|
11
|
+
|
12
|
+
def welcome_screen
|
13
|
+
puts "\n"
|
14
|
+
puts "Welcome to Top Travel Destinations"
|
15
|
+
puts "\n"
|
16
|
+
puts " .-'';'-."
|
17
|
+
puts " ,' <_,-.`."
|
18
|
+
puts " /) ,--,_>\\_\\ "
|
19
|
+
puts " |' ( \\_ |"
|
20
|
+
puts " |_ `-. / |"
|
21
|
+
puts " \\`-. ; _(`/"
|
22
|
+
puts " `.( \\/ ,'"
|
23
|
+
puts " `-....-'"
|
24
|
+
end
|
25
|
+
|
26
|
+
def make_regions
|
27
|
+
region_array = TopTravelDestinations::Scraper.scrape_regions_array(BASE_URL)
|
28
|
+
TopTravelDestinations::Region.create_from_array(region_array)
|
29
|
+
end
|
30
|
+
|
31
|
+
def add_destinations_to_regions
|
32
|
+
TopTravelDestinations::Region.all.each do |region|
|
33
|
+
destinations_array = TopTravelDestinations::Scraper.scrape_destinations_array(region.region_url)
|
34
|
+
region.create_attribute_from_array(destinations_array)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
def list_regions
|
39
|
+
puts "\n"
|
40
|
+
puts "Here are the Regions of the World:"
|
41
|
+
TopTravelDestinations::Region.all.each_with_index do |region, index|
|
42
|
+
puts "#{index+1}. #{region.name}"
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
def select_region
|
47
|
+
input = nil
|
48
|
+
while input != "exit"
|
49
|
+
puts "\n"
|
50
|
+
puts "Enter the number of the region for which you would like the Top Travel Destinations."
|
51
|
+
puts "Enter 'list' to see the regions again, or type 'exit'."
|
52
|
+
input = gets.strip.downcase
|
53
|
+
if (1..TopTravelDestinations::Region.all.count).to_a.include?(input.to_i)
|
54
|
+
index_value = input.to_i-1
|
55
|
+
show_top_destinations(index_value)
|
56
|
+
elsif input == "list"
|
57
|
+
list_regions
|
58
|
+
elsif input == "exit"
|
59
|
+
goodbye
|
60
|
+
else
|
61
|
+
puts "\n"
|
62
|
+
puts "Please input a valid command."
|
63
|
+
end #end case
|
64
|
+
end #end while loop
|
65
|
+
end #end method
|
66
|
+
|
67
|
+
def show_top_destinations(index_value)
|
68
|
+
puts "\n"
|
69
|
+
puts "The Top Destinations For the #{TopTravelDestinations::Region.all[index_value].name} region are:"
|
70
|
+
counter = 1
|
71
|
+
TopTravelDestinations::Region.all[index_value].destinations.each do |destination|
|
72
|
+
puts "#{counter}. #{destination}"
|
73
|
+
counter +=1
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
def goodbye
|
78
|
+
puts "\n"
|
79
|
+
puts " The World is your oyster."
|
80
|
+
puts " Thanks for using Top Travel Destinations!"
|
81
|
+
puts <<-DOC
|
82
|
+
_________________________ _____
|
83
|
+
| \\ \\ * \\__ _____
|
84
|
+
| Safe \\__________\\ \\/_______\\___\\_____________
|
85
|
+
| Travels! / < /_/ ..................... `-.
|
86
|
+
|_________________________/ `-----------,----,--------------'
|
87
|
+
_/____/
|
88
|
+
|
89
|
+
DOC
|
90
|
+
end
|
91
|
+
|
92
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
class TopTravelDestinations::Region
|
2
|
+
|
3
|
+
attr_accessor :name, :region_url, :destinations
|
4
|
+
|
5
|
+
@@all = []
|
6
|
+
|
7
|
+
def initialize(region_hash)
|
8
|
+
self.create_attributes_from_hash(region_hash)
|
9
|
+
self.class.all << self
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.create_from_array(region_array)
|
13
|
+
region_array.each do |region_hash|
|
14
|
+
TopTravelDestinations::Region.new(region_hash)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
def create_attributes_from_hash(region_hash)
|
19
|
+
region_hash.each do |key, value|
|
20
|
+
self.send(("#{key}="), value)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
def create_attribute_from_array(destinations_array)
|
25
|
+
self.destinations = destinations_array
|
26
|
+
end
|
27
|
+
|
28
|
+
def self.all
|
29
|
+
@@all
|
30
|
+
end
|
31
|
+
|
32
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
class TopTravelDestinations::Scraper
|
2
|
+
|
3
|
+
def self.scrape_regions_array(index_url)
|
4
|
+
html = open(index_url)
|
5
|
+
doc = Nokogiri::HTML(html)
|
6
|
+
|
7
|
+
region_array = []
|
8
|
+
|
9
|
+
doc.search("#tcRegions .tocContainer a").each do |regionnode|
|
10
|
+
name = regionnode.text
|
11
|
+
sub_url = regionnode.attribute("href").value
|
12
|
+
region_array << {
|
13
|
+
:name => name,
|
14
|
+
:region_url => "http://www.tripadvisor.com#{sub_url}"
|
15
|
+
}
|
16
|
+
end #end iterator
|
17
|
+
region_array
|
18
|
+
end #end method
|
19
|
+
|
20
|
+
def self.scrape_destinations_array(profile_url)
|
21
|
+
html = open(profile_url)
|
22
|
+
doc = Nokogiri::HTML(html)
|
23
|
+
|
24
|
+
destinations_array = []
|
25
|
+
|
26
|
+
doc.search("div.winnerName div.mainName a").each do |destination|
|
27
|
+
name = destination.text
|
28
|
+
destinations_array << name
|
29
|
+
end#end iterator
|
30
|
+
destinations_array
|
31
|
+
end
|
32
|
+
|
33
|
+
end #end Class
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'top_travel_destinations/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "top-travel-destinations-cli-gem"
|
8
|
+
spec.version = TopTravelDestinations::VERSION
|
9
|
+
spec.authors = ["Antonio David"]
|
10
|
+
spec.email = ["antonio.david.us@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Top travel destinations by region of the world.}
|
13
|
+
spec.description = %q{Top travel destinations by region of the world, according to TripAdvisor.}
|
14
|
+
spec.homepage = "https://github.com/agdavid/top-travel-destinations-cli-gem"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
|
18
|
+
# delete this section to allow pushing this gem to any host.
|
19
|
+
#if spec.respond_to?(:metadata)
|
20
|
+
#spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
|
21
|
+
#else
|
22
|
+
#raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
|
23
|
+
#end
|
24
|
+
|
25
|
+
|
26
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
27
|
+
#spec.bindir = "exe"
|
28
|
+
spec.executables = ["top-travel-destinations"]
|
29
|
+
#spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
30
|
+
spec.require_paths = ["lib", "lib/top_travel_destinations"]
|
31
|
+
|
32
|
+
spec.add_development_dependency "bundler", "~> 1.11"
|
33
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
34
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
35
|
+
spec.add_development_dependency "nokogiri", "~> 0"
|
36
|
+
spec.add_development_dependency "pry", "~> 0"
|
37
|
+
end
|
metadata
ADDED
@@ -0,0 +1,130 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: top-travel-destinations-cli-gem
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Antonio David
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-03-14 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.11'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.11'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: nokogiri
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: pry
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
description: Top travel destinations by region of the world, according to TripAdvisor.
|
84
|
+
email:
|
85
|
+
- antonio.david.us@gmail.com
|
86
|
+
executables:
|
87
|
+
- top-travel-destinations
|
88
|
+
extensions: []
|
89
|
+
extra_rdoc_files: []
|
90
|
+
files:
|
91
|
+
- CODE_OF_CONDUCT.md
|
92
|
+
- Gemfile
|
93
|
+
- LICENSE.txt
|
94
|
+
- README.md
|
95
|
+
- Rakefile
|
96
|
+
- bin/console
|
97
|
+
- bin/setup
|
98
|
+
- bin/top-travel-destinations
|
99
|
+
- config/environment.rb
|
100
|
+
- lib/top_travel_destinations/cli.rb
|
101
|
+
- lib/top_travel_destinations/region.rb
|
102
|
+
- lib/top_travel_destinations/scraper.rb
|
103
|
+
- lib/top_travel_destinations/version.rb
|
104
|
+
- top_travel_destinations.gemspec
|
105
|
+
homepage: https://github.com/agdavid/top-travel-destinations-cli-gem
|
106
|
+
licenses:
|
107
|
+
- MIT
|
108
|
+
metadata: {}
|
109
|
+
post_install_message:
|
110
|
+
rdoc_options: []
|
111
|
+
require_paths:
|
112
|
+
- lib
|
113
|
+
- lib/top_travel_destinations
|
114
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
115
|
+
requirements:
|
116
|
+
- - ">="
|
117
|
+
- !ruby/object:Gem::Version
|
118
|
+
version: '0'
|
119
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
120
|
+
requirements:
|
121
|
+
- - ">="
|
122
|
+
- !ruby/object:Gem::Version
|
123
|
+
version: '0'
|
124
|
+
requirements: []
|
125
|
+
rubyforge_project:
|
126
|
+
rubygems_version: 2.4.8
|
127
|
+
signing_key:
|
128
|
+
specification_version: 4
|
129
|
+
summary: Top travel destinations by region of the world.
|
130
|
+
test_files: []
|