wdw_sources 0.1.2
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/MIT-LICENSE +20 -0
- data/README.md +42 -0
- data/Rakefile +18 -0
- data/app/assets/config/wdw_sources_manifest.js +1 -0
- data/app/assets/stylesheets/wdw_sources/application.css +15 -0
- data/app/assets/stylesheets/wdw_sources/touringplans_attractions.css +4 -0
- data/app/assets/stylesheets/wdw_sources/touringplans_dining_venues.css +4 -0
- data/app/assets/stylesheets/wdw_sources/touringplans_hotels.css +4 -0
- data/app/controllers/wdw_sources/application_controller.rb +4 -0
- data/app/controllers/wdw_sources/touringplans_attractions_controller.rb +6 -0
- data/app/controllers/wdw_sources/touringplans_dining_venues_controller.rb +6 -0
- data/app/controllers/wdw_sources/touringplans_hotels_controller.rb +6 -0
- data/app/helpers/wdw_sources/application_helper.rb +4 -0
- data/app/helpers/wdw_sources/touringplans_attractions_helper.rb +4 -0
- data/app/helpers/wdw_sources/touringplans_dining_venues_helper.rb +4 -0
- data/app/helpers/wdw_sources/touringplans_hotels_helper.rb +4 -0
- data/app/jobs/wdw_sources/application_job.rb +4 -0
- data/app/mailers/wdw_sources/application_mailer.rb +6 -0
- data/app/models/wdw_sources/application_record.rb +5 -0
- data/app/models/wdw_sources/touringplans_attraction.rb +4 -0
- data/app/models/wdw_sources/touringplans_dining_venue.rb +4 -0
- data/app/models/wdw_sources/touringplans_hotel.rb +4 -0
- data/app/models/wdw_sources/touringplans_update.rb +48 -0
- data/app/views/layouts/wdw_sources/application.html.erb +21 -0
- data/config/routes.rb +5 -0
- data/db/migrate/20211024225255_create_wdw_sources_touringplans_dining_venues.rb +74 -0
- data/db/migrate/20211024225412_create_wdw_sources_touringplans_attractions.rb +82 -0
- data/db/migrate/20211024225455_create_wdw_sources_touringplans_hotels.rb +36 -0
- data/lib/generators/wdw_sources/install_generator.rb +11 -0
- data/lib/tasks/wdw_sources_tasks.rake +4 -0
- data/lib/wdw_sources/engine.rb +11 -0
- data/lib/wdw_sources/version.rb +3 -0
- data/lib/wdw_sources.rb +6 -0
- metadata +147 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 4b83ba735f378c1487719a66aba53c356c905915b7652d966962f95366126b62
|
4
|
+
data.tar.gz: f7f086037e65d264a2b404876c3110917223054676ca7ab753650d4fb9601961
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: b2f7407463fc0d56d41c8581f667ec976c3fd09107bafd6f4e35e13e52d98a1dfa26e393dfe61c2b3a77e993854e49224e036661495d60dd881a937a2dc6f6cd
|
7
|
+
data.tar.gz: 434f8bec1133b93d9153b9acd36fa20bb599013a877b061cfed401f98bf62e6c79d6fc60a662b3dc7381d87e8082d63b96675402ce12a8de37a753891a1d6877
|
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2021 captproton
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
# WdwSources
|
2
|
+
Collect live data about Walt Disney World's attractions (rides), dining, and hotels (accommodations).
|
3
|
+
|
4
|
+
## Usage
|
5
|
+
Add this Rails engine to your app to create helpful insights about vacationing in Walt Disney World.
|
6
|
+
|
7
|
+
To update data from touringplans.com, inside your rails console run:
|
8
|
+
```bash
|
9
|
+
$ WdwSources::TouringplansUpdate.sync_all("attractions")
|
10
|
+
$ WdwSources::TouringplansUpdate.sync_all("dining")
|
11
|
+
$ WdwSources::TouringplansUpdate.sync_all("hotels")
|
12
|
+
|
13
|
+
```
|
14
|
+
|
15
|
+
|
16
|
+
## Installation
|
17
|
+
Add this line to your application's Gemfile:
|
18
|
+
|
19
|
+
```ruby
|
20
|
+
gem 'wdw_sources'
|
21
|
+
```
|
22
|
+
|
23
|
+
And then execute:
|
24
|
+
```bash
|
25
|
+
$ bundle
|
26
|
+
```
|
27
|
+
And then execute:
|
28
|
+
```bash
|
29
|
+
$ rails g wdw_sources:install
|
30
|
+
```
|
31
|
+
|
32
|
+
Or install it yourself as:
|
33
|
+
```bash
|
34
|
+
$ gem install wdw_sources
|
35
|
+
```
|
36
|
+
|
37
|
+
|
38
|
+
## Contributing
|
39
|
+
Thanks to touringplans.com for opening an API and making this gem possible.
|
40
|
+
|
41
|
+
## License
|
42
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
require "bundler/setup"
|
2
|
+
|
3
|
+
APP_RAKEFILE = File.expand_path("test/dummy/Rakefile", __dir__)
|
4
|
+
load "rails/tasks/engine.rake"
|
5
|
+
|
6
|
+
load "rails/tasks/statistics.rake"
|
7
|
+
|
8
|
+
require "bundler/gem_tasks"
|
9
|
+
|
10
|
+
require "rake/testtask"
|
11
|
+
|
12
|
+
Rake::TestTask.new(:test) do |t|
|
13
|
+
t.libs << 'test'
|
14
|
+
t.pattern = 'test/**/*_test.rb'
|
15
|
+
t.verbose = false
|
16
|
+
end
|
17
|
+
|
18
|
+
task default: :test
|
@@ -0,0 +1 @@
|
|
1
|
+
//= link_directory ../stylesheets/wdw_sources .css
|
@@ -0,0 +1,15 @@
|
|
1
|
+
/*
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
3
|
+
* listed below.
|
4
|
+
*
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
6
|
+
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
|
7
|
+
*
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
9
|
+
* compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
|
10
|
+
* files in this directory. Styles in this file should be added after the last require_* statement.
|
11
|
+
* It is generally better to create a new file per style scope.
|
12
|
+
*
|
13
|
+
*= require_tree .
|
14
|
+
*= require_self
|
15
|
+
*/
|
@@ -0,0 +1,48 @@
|
|
1
|
+
module WdwSources
|
2
|
+
require 'touringplans'
|
3
|
+
class TouringplansUpdate
|
4
|
+
|
5
|
+
def self.list_all(venue_type)
|
6
|
+
Touringplans.list_all(venue_type)
|
7
|
+
end
|
8
|
+
|
9
|
+
def self.sync_all(interest)
|
10
|
+
|
11
|
+
tp_list = Touringplans.list_all(interest)
|
12
|
+
tp_list.each do |tp_list_item|
|
13
|
+
_cache_tp_place(tp_list_item, interest)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
def self._cache_tp_place(tp_list_item, interest)
|
18
|
+
interest = interest.to_sym
|
19
|
+
|
20
|
+
cache_resources = {attractions: WdwSources::TouringplansAttraction,
|
21
|
+
dining: WdwSources::TouringplansDiningVenue,
|
22
|
+
hotels: WdwSources::TouringplansHotel
|
23
|
+
}
|
24
|
+
|
25
|
+
cache_resource = cache_resources[interest]
|
26
|
+
cache_item = cache_resource.find_or_create_by(permalink: tp_list_item.permalink)
|
27
|
+
|
28
|
+
tp_item_full_record = Touringplans.show(tp_list_item.venue_permalink,interest, tp_list_item.permalink)
|
29
|
+
cache_item.update!(tp_item_full_record.to_h)
|
30
|
+
end
|
31
|
+
|
32
|
+
# def self.cache_all_hotels
|
33
|
+
# interest = "hotels"
|
34
|
+
|
35
|
+
# hotels = Touringplans.list_all(interest)
|
36
|
+
# hotels.each do |hotel|
|
37
|
+
# cached_hotel = Cached::TouringplansHotel.find_or_create_by(permalink: hotel.permalink)
|
38
|
+
# cached_hotel.update!(name: hotel.name, short_name: hotel.sort_name, venue_permalink: hotel.venue_permalink)
|
39
|
+
|
40
|
+
# tp_hotel_full = Touringplans.show(hotel.venue_permalink,interest, hotel.permalink)
|
41
|
+
# cached_hotel.update!(tp_hotel_full.to_h)
|
42
|
+
# end
|
43
|
+
# cached_hotels = Cached::TouringplansHotel.all
|
44
|
+
# end
|
45
|
+
|
46
|
+
|
47
|
+
end
|
48
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>Wdw sources</title>
|
5
|
+
<%= csrf_meta_tags %>
|
6
|
+
<%= csp_meta_tag %>
|
7
|
+
|
8
|
+
<%= stylesheet_link_tag "wdw_sources/application", media: "all" %>
|
9
|
+
</head>
|
10
|
+
<body>
|
11
|
+
<nav>
|
12
|
+
<%= link_to 'Home Page', main_app.root_url %>
|
13
|
+
<%= link_to 'Attractions', touringplans_park_attractions_path %>
|
14
|
+
<%= link_to 'Dining Venues', touringplans_dining_venues_path %>
|
15
|
+
<%= link_to 'Hotels', touringplans_hotels_path %>
|
16
|
+
</nav>
|
17
|
+
<h1>Welcome to WDW Sources</h1>
|
18
|
+
<%= yield %>
|
19
|
+
|
20
|
+
</body>
|
21
|
+
</html>
|
data/config/routes.rb
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
class CreateWdwSourcesTouringplansDiningVenues < ActiveRecord::Migration[6.1]
|
2
|
+
def change
|
3
|
+
create_table :wdw_sources_touringplans_dining_venues do |t|
|
4
|
+
t.string "name"
|
5
|
+
t.string "short_name"
|
6
|
+
t.string "permalink"
|
7
|
+
t.string "venue_permalink"
|
8
|
+
t.integer "land_id"
|
9
|
+
t.string "category_code"
|
10
|
+
t.string "portion_size"
|
11
|
+
t.string "cost_code"
|
12
|
+
t.string "cuisine"
|
13
|
+
t.string "phone_number"
|
14
|
+
t.string "entree_range"
|
15
|
+
t.string "when_to_go"
|
16
|
+
t.string "parking"
|
17
|
+
t.string "bar"
|
18
|
+
t.string "wine_list"
|
19
|
+
t.string "dress"
|
20
|
+
t.string "awards"
|
21
|
+
t.string "lunch_hours"
|
22
|
+
t.string "dinner_hours"
|
23
|
+
t.string "selection"
|
24
|
+
t.string "setting_atmosphere"
|
25
|
+
t.string "other_recommendations"
|
26
|
+
t.string "summary"
|
27
|
+
t.string "house_specialties"
|
28
|
+
t.string "counter_quality_rating"
|
29
|
+
t.string "counter_value_rating"
|
30
|
+
t.string "table_quality_rating"
|
31
|
+
t.string "table_value_rating"
|
32
|
+
t.string "overall_rating"
|
33
|
+
t.string "service_rating"
|
34
|
+
t.string "friendliness_rating"
|
35
|
+
t.string "adult_breakfast_menu_url"
|
36
|
+
t.string "adult_lunch_menu_url"
|
37
|
+
t.string "adult_dinner_menu_url"
|
38
|
+
t.string "child_breakfast_menu_url"
|
39
|
+
t.string "child_lunch_menu_url"
|
40
|
+
t.string "child_dinner_menu_url"
|
41
|
+
t.boolean "requires_credit_card"
|
42
|
+
t.boolean "requires_pre_payment"
|
43
|
+
t.integer "plan_x_coord"
|
44
|
+
t.integer "plan_y_coord"
|
45
|
+
t.integer "old_park_id"
|
46
|
+
t.integer "old_attraction_id"
|
47
|
+
t.string "plan_name"
|
48
|
+
t.datetime "extinct_on"
|
49
|
+
t.datetime "opened_on"
|
50
|
+
t.string "disney_permalink"
|
51
|
+
t.string "code"
|
52
|
+
t.boolean "accepts_reservations"
|
53
|
+
t.boolean "kosher_available"
|
54
|
+
t.integer "dinable_id"
|
55
|
+
t.string "dinable_type"
|
56
|
+
t.string "breakfast_hours"
|
57
|
+
t.integer "operator_id"
|
58
|
+
t.string "operator_url"
|
59
|
+
t.string "operator_type"
|
60
|
+
t.integer "walking_time_proxy_id"
|
61
|
+
t.string "sort_name"
|
62
|
+
t.boolean "mobile_ordering"
|
63
|
+
t.string "extinct_on_uncertain"
|
64
|
+
t.string "opened_on_uncertain"
|
65
|
+
t.string "opened_on_known"
|
66
|
+
t.text "operational_notes"
|
67
|
+
t.string "latitude"
|
68
|
+
t.string "longitude"
|
69
|
+
t.string "summary_at_top"
|
70
|
+
|
71
|
+
t.timestamps
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
@@ -0,0 +1,82 @@
|
|
1
|
+
class CreateWdwSourcesTouringplansAttractions < ActiveRecord::Migration[6.1]
|
2
|
+
def change
|
3
|
+
create_table :wdw_sources_touringplans_attractions do |t|
|
4
|
+
t.string "name"
|
5
|
+
t.string "short_name"
|
6
|
+
t.string "permalink"
|
7
|
+
t.string "venue_permalink"
|
8
|
+
t.boolean "fastpass_booth"
|
9
|
+
t.boolean "open_emh_morning"
|
10
|
+
t.boolean "single_rider"
|
11
|
+
t.string "time_zone"
|
12
|
+
t.boolean "seasonal"
|
13
|
+
t.boolean "open_very_merry"
|
14
|
+
t.boolean "open_not_so_scary"
|
15
|
+
t.string "category_code"
|
16
|
+
t.string "scheduled_code"
|
17
|
+
t.float "duration"
|
18
|
+
t.string "what_it_is"
|
19
|
+
t.string "scope_and_scale_code"
|
20
|
+
t.string "when_to_go"
|
21
|
+
t.float "average_wait_per_hundred"
|
22
|
+
t.string "average_wait_assumes"
|
23
|
+
t.string "loading_speed"
|
24
|
+
t.string "probable_wait_time"
|
25
|
+
t.string "special_needs"
|
26
|
+
t.integer "height_restriction"
|
27
|
+
t.boolean "intense"
|
28
|
+
t.datetime "extinct_on"
|
29
|
+
t.datetime "opened_on"
|
30
|
+
t.boolean "frightening"
|
31
|
+
t.boolean "physical_considerations"
|
32
|
+
t.boolean "handheld_captioning"
|
33
|
+
t.boolean "video_captioning"
|
34
|
+
t.boolean "reflective_captioning"
|
35
|
+
t.boolean "assistive_listening"
|
36
|
+
t.boolean "audio_description"
|
37
|
+
t.string "wheelchair_transfer_code"
|
38
|
+
t.boolean "no_service_animals"
|
39
|
+
t.boolean "sign_language"
|
40
|
+
t.boolean "service_animal_check"
|
41
|
+
t.boolean "not_to_be_missed"
|
42
|
+
t.boolean "rider_swap"
|
43
|
+
t.boolean "park_entrance"
|
44
|
+
t.string "ultimate_code"
|
45
|
+
t.string "ultimate_task"
|
46
|
+
t.boolean "close_at_dusk"
|
47
|
+
t.integer "crowd_calendar_version"
|
48
|
+
t.boolean "match_name"
|
49
|
+
t.boolean "crazy_threshold"
|
50
|
+
t.boolean "fastpass_only"
|
51
|
+
t.boolean "allow_showtimes_after_close"
|
52
|
+
t.boolean "disconnected_fastpass_booth"
|
53
|
+
t.integer "arrive_before"
|
54
|
+
t.integer "arrive_before_fp"
|
55
|
+
t.boolean "allow_time_restriction"
|
56
|
+
t.integer "relative_open_to_sunset"
|
57
|
+
t.integer "relative_close_to_sunset"
|
58
|
+
t.string "closing_round_code"
|
59
|
+
t.integer "walking_time_proxy_id"
|
60
|
+
t.integer "operator_id"
|
61
|
+
t.string "operator_type"
|
62
|
+
t.boolean "hide_app"
|
63
|
+
t.integer "showtime_proxy_id"
|
64
|
+
t.string "sort_name"
|
65
|
+
t.boolean "extinct_on_uncertain"
|
66
|
+
t.boolean "opened_on_uncertain"
|
67
|
+
t.boolean "ignore_scrapes"
|
68
|
+
t.boolean "extra_cost"
|
69
|
+
t.boolean "climate_controlled"
|
70
|
+
t.boolean "wet"
|
71
|
+
t.text "operational_notes"
|
72
|
+
t.string "latitude"
|
73
|
+
t.string "longitude"
|
74
|
+
t.boolean "open_early"
|
75
|
+
t.string "themeparks_entity_id"
|
76
|
+
t.boolean "has_virtual_queue"
|
77
|
+
t.boolean "open_emh_evening"
|
78
|
+
|
79
|
+
t.timestamps
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
class CreateWdwSourcesTouringplansHotels < ActiveRecord::Migration[6.1]
|
2
|
+
def change
|
3
|
+
create_table :wdw_sources_touringplans_hotels do |t|
|
4
|
+
t.string "name"
|
5
|
+
t.string "short_name"
|
6
|
+
t.string "permalink"
|
7
|
+
t.string "category_code"
|
8
|
+
t.string "venue_permalink"
|
9
|
+
t.string "address"
|
10
|
+
t.string "city"
|
11
|
+
t.string "state_code"
|
12
|
+
t.string "zip_code"
|
13
|
+
t.string "phone_number"
|
14
|
+
t.string "url"
|
15
|
+
t.boolean "off_site"
|
16
|
+
t.boolean "water_sports"
|
17
|
+
t.boolean "marina"
|
18
|
+
t.boolean "beach"
|
19
|
+
t.boolean "tennis"
|
20
|
+
t.boolean "biking"
|
21
|
+
t.boolean "suites"
|
22
|
+
t.boolean "concierge_floor"
|
23
|
+
t.boolean "room_service"
|
24
|
+
t.boolean "wired_internet"
|
25
|
+
t.boolean "wireless_internet"
|
26
|
+
t.integer "num_rooms"
|
27
|
+
t.string "theme"
|
28
|
+
t.string "cost_range"
|
29
|
+
t.boolean "shuttle_to_parks"
|
30
|
+
t.string "cost_estimate"
|
31
|
+
t.string "lodging_area_code"
|
32
|
+
|
33
|
+
t.timestamps
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
data/lib/wdw_sources.rb
ADDED
metadata
ADDED
@@ -0,0 +1,147 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: wdw_sources
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- captproton
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-10-25 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rails
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 6.1.4
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 6.1.4.1
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 6.1.4
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 6.1.4.1
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: touringplans
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '0.3'
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: 0.3.1
|
43
|
+
type: :runtime
|
44
|
+
prerelease: false
|
45
|
+
version_requirements: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - "~>"
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '0.3'
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: 0.3.1
|
53
|
+
- !ruby/object:Gem::Dependency
|
54
|
+
name: rspec-rails
|
55
|
+
requirement: !ruby/object:Gem::Requirement
|
56
|
+
requirements:
|
57
|
+
- - ">="
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: '0'
|
60
|
+
type: :development
|
61
|
+
prerelease: false
|
62
|
+
version_requirements: !ruby/object:Gem::Requirement
|
63
|
+
requirements:
|
64
|
+
- - ">="
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: '0'
|
67
|
+
- !ruby/object:Gem::Dependency
|
68
|
+
name: factory_bot_rails
|
69
|
+
requirement: !ruby/object:Gem::Requirement
|
70
|
+
requirements:
|
71
|
+
- - ">="
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: '0'
|
74
|
+
type: :development
|
75
|
+
prerelease: false
|
76
|
+
version_requirements: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
78
|
+
- - ">="
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: '0'
|
81
|
+
description: Connect your app with information sources like Touring Plans.
|
82
|
+
email:
|
83
|
+
- carl@wdwhub.net
|
84
|
+
executables: []
|
85
|
+
extensions: []
|
86
|
+
extra_rdoc_files: []
|
87
|
+
files:
|
88
|
+
- MIT-LICENSE
|
89
|
+
- README.md
|
90
|
+
- Rakefile
|
91
|
+
- app/assets/config/wdw_sources_manifest.js
|
92
|
+
- app/assets/stylesheets/wdw_sources/application.css
|
93
|
+
- app/assets/stylesheets/wdw_sources/touringplans_attractions.css
|
94
|
+
- app/assets/stylesheets/wdw_sources/touringplans_dining_venues.css
|
95
|
+
- app/assets/stylesheets/wdw_sources/touringplans_hotels.css
|
96
|
+
- app/controllers/wdw_sources/application_controller.rb
|
97
|
+
- app/controllers/wdw_sources/touringplans_attractions_controller.rb
|
98
|
+
- app/controllers/wdw_sources/touringplans_dining_venues_controller.rb
|
99
|
+
- app/controllers/wdw_sources/touringplans_hotels_controller.rb
|
100
|
+
- app/helpers/wdw_sources/application_helper.rb
|
101
|
+
- app/helpers/wdw_sources/touringplans_attractions_helper.rb
|
102
|
+
- app/helpers/wdw_sources/touringplans_dining_venues_helper.rb
|
103
|
+
- app/helpers/wdw_sources/touringplans_hotels_helper.rb
|
104
|
+
- app/jobs/wdw_sources/application_job.rb
|
105
|
+
- app/mailers/wdw_sources/application_mailer.rb
|
106
|
+
- app/models/wdw_sources/application_record.rb
|
107
|
+
- app/models/wdw_sources/touringplans_attraction.rb
|
108
|
+
- app/models/wdw_sources/touringplans_dining_venue.rb
|
109
|
+
- app/models/wdw_sources/touringplans_hotel.rb
|
110
|
+
- app/models/wdw_sources/touringplans_update.rb
|
111
|
+
- app/views/layouts/wdw_sources/application.html.erb
|
112
|
+
- config/routes.rb
|
113
|
+
- db/migrate/20211024225255_create_wdw_sources_touringplans_dining_venues.rb
|
114
|
+
- db/migrate/20211024225412_create_wdw_sources_touringplans_attractions.rb
|
115
|
+
- db/migrate/20211024225455_create_wdw_sources_touringplans_hotels.rb
|
116
|
+
- lib/generators/wdw_sources/install_generator.rb
|
117
|
+
- lib/tasks/wdw_sources_tasks.rake
|
118
|
+
- lib/wdw_sources.rb
|
119
|
+
- lib/wdw_sources/engine.rb
|
120
|
+
- lib/wdw_sources/version.rb
|
121
|
+
homepage: https://github.com/wdwhub
|
122
|
+
licenses:
|
123
|
+
- MIT
|
124
|
+
metadata:
|
125
|
+
homepage_uri: https://github.com/wdwhub
|
126
|
+
source_code_uri: https://github.com/wdwhub
|
127
|
+
changelog_uri: https://github.com/wdwhub
|
128
|
+
post_install_message:
|
129
|
+
rdoc_options: []
|
130
|
+
require_paths:
|
131
|
+
- lib
|
132
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
133
|
+
requirements:
|
134
|
+
- - ">="
|
135
|
+
- !ruby/object:Gem::Version
|
136
|
+
version: '0'
|
137
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
138
|
+
requirements:
|
139
|
+
- - ">="
|
140
|
+
- !ruby/object:Gem::Version
|
141
|
+
version: '0'
|
142
|
+
requirements: []
|
143
|
+
rubygems_version: 3.2.15
|
144
|
+
signing_key:
|
145
|
+
specification_version: 4
|
146
|
+
summary: Tap into information sources about Walt Disney World
|
147
|
+
test_files: []
|