Skip to content

Commit 2b6be90

Browse files
Tim MainaTim Maina
Tim Maina
authored and
Tim Maina
committed
Feature complete
0 parents  commit 2b6be90

File tree

244 files changed

+4418
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

244 files changed

+4418
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

.gitignore

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile '~/.gitignore_global'
6+
7+
# Ignore bundler config.
8+
/.bundle
9+
10+
# Ignore the default SQLite database.
11+
/db/*.sqlite3
12+
/db/*.sqlite3-journal
13+
14+
# Ignore all logfiles and tempfiles.
15+
/log/*
16+
/tmp/*
17+
!/log/.keep
18+
!/tmp/.keep
19+
20+
# Ignore Byebug command history file.
21+
.byebug_history

Gemfile

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
source 'https://rubygems.org'
2+
3+
4+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
5+
gem 'rails', '~> 5.0.0', '>= 5.0.0.1'
6+
# Use sqlite3 as the database for Active Record
7+
gem 'sqlite3'
8+
# Use Puma as the app server
9+
gem 'puma', '~> 3.0'
10+
# Use SCSS for stylesheets
11+
gem 'sass-rails', '~> 5.0'
12+
gem 'bootstrap-sass', '~> 3.3.6'
13+
# Use Uglifier as compressor for JavaScript assets
14+
gem 'uglifier', '>= 1.3.0'
15+
# Use CoffeeScript for .coffee assets and views
16+
gem 'coffee-rails', '~> 4.2'
17+
gem 'coffee-script-source', '1.8.0'
18+
# See https://github.com/rails/execjs#readme for more supported runtimes
19+
# gem 'therubyracer', platforms: :ruby
20+
21+
# Use jquery as the JavaScript library
22+
gem 'jquery-rails'
23+
gem 'jquery-ui-rails'
24+
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
25+
gem 'turbolinks', '~> 5'
26+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
27+
gem 'jbuilder', '~> 2.5'
28+
# Use Redis adapter to run Action Cable in production
29+
# gem 'redis', '~> 3.0'
30+
# Use ActiveModel has_secure_password
31+
# gem 'bcrypt', '~> 3.1.7'
32+
33+
gem "devise", :github => 'plataformatec/devise', :branch => 'master'
34+
35+
gem 'toastr-rails'
36+
37+
gem 'sendgrid-rails', '~> 2.0', '>= 2.0.5'
38+
39+
gem 'omniauth'
40+
gem 'omniauth-facebook'
41+
42+
gem 'omniauth-google-oauth2'
43+
44+
gem "paperclip", git: "git://github.com/thoughtbot/paperclip.git"
45+
46+
gem 'geocoder'
47+
gem 'hirb'
48+
gem 'rails-footnotes'
49+
gem 'ransack'
50+
51+
# Use Capistrano for deployment
52+
# gem 'capistrano-rails', group: :development
53+
54+
group :development, :test do
55+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
56+
gem 'byebug', platform: :mri
57+
end
58+
59+
group :development do
60+
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
61+
gem 'web-console'
62+
end
63+
64+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
65+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

Gemfile.lock

+262
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,262 @@
1+
GIT
2+
remote: git://github.com/plataformatec/devise.git
3+
revision: a47928090a4e8c37b904885ef082ee919ea576bf
4+
branch: master
5+
specs:
6+
devise (4.2.0)
7+
bcrypt (~> 3.0)
8+
orm_adapter (~> 0.1)
9+
railties (>= 4.1.0, < 5.1)
10+
responders
11+
warden (~> 1.2.3)
12+
13+
GIT
14+
remote: git://github.com/thoughtbot/paperclip.git
15+
revision: 7c81e7813e75950d111885b44d33c08358e5e46c
16+
specs:
17+
paperclip (5.1.0)
18+
activemodel (>= 4.2.0)
19+
activesupport (>= 4.2.0)
20+
cocaine (~> 0.5.5)
21+
mime-types
22+
mimemagic (~> 0.3.0)
23+
24+
GEM
25+
remote: https://rubygems.org/
26+
specs:
27+
actioncable (5.0.2)
28+
actionpack (= 5.0.2)
29+
nio4r (>= 1.2, < 3.0)
30+
websocket-driver (~> 0.6.1)
31+
actionmailer (5.0.2)
32+
actionpack (= 5.0.2)
33+
actionview (= 5.0.2)
34+
activejob (= 5.0.2)
35+
mail (~> 2.5, >= 2.5.4)
36+
rails-dom-testing (~> 2.0)
37+
actionpack (5.0.2)
38+
actionview (= 5.0.2)
39+
activesupport (= 5.0.2)
40+
rack (~> 2.0)
41+
rack-test (~> 0.6.3)
42+
rails-dom-testing (~> 2.0)
43+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
44+
actionview (5.0.2)
45+
activesupport (= 5.0.2)
46+
builder (~> 3.1)
47+
erubis (~> 2.7.0)
48+
rails-dom-testing (~> 2.0)
49+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
50+
activejob (5.0.2)
51+
activesupport (= 5.0.2)
52+
globalid (>= 0.3.6)
53+
activemodel (5.0.2)
54+
activesupport (= 5.0.2)
55+
activerecord (5.0.2)
56+
activemodel (= 5.0.2)
57+
activesupport (= 5.0.2)
58+
arel (~> 7.0)
59+
activesupport (5.0.2)
60+
concurrent-ruby (~> 1.0, >= 1.0.2)
61+
i18n (~> 0.7)
62+
minitest (~> 5.1)
63+
tzinfo (~> 1.1)
64+
arel (7.1.4)
65+
autoprefixer-rails (6.7.6)
66+
execjs
67+
bcrypt (3.1.11)
68+
bcrypt (3.1.11-x86-mingw32)
69+
bootstrap-sass (3.3.7)
70+
autoprefixer-rails (>= 5.2.1)
71+
sass (>= 3.3.4)
72+
builder (3.2.3)
73+
byebug (9.0.6)
74+
climate_control (0.1.0)
75+
cocaine (0.5.8)
76+
climate_control (>= 0.0.3, < 1.0)
77+
coffee-rails (4.2.1)
78+
coffee-script (>= 2.2.0)
79+
railties (>= 4.0.0, < 5.2.x)
80+
coffee-script (2.4.1)
81+
coffee-script-source
82+
execjs
83+
coffee-script-source (1.8.0)
84+
concurrent-ruby (1.0.5)
85+
debug_inspector (0.0.2)
86+
erubis (2.7.0)
87+
execjs (2.7.0)
88+
faraday (0.10.1)
89+
multipart-post (>= 1.2, < 3)
90+
geocoder (1.4.3)
91+
globalid (0.3.7)
92+
activesupport (>= 4.1.0)
93+
hashie (3.5.5)
94+
hirb (0.7.3)
95+
i18n (0.8.1)
96+
jbuilder (2.6.3)
97+
activesupport (>= 3.0.0, < 5.2)
98+
multi_json (~> 1.2)
99+
jquery-rails (4.2.2)
100+
rails-dom-testing (>= 1, < 3)
101+
railties (>= 4.2.0)
102+
thor (>= 0.14, < 2.0)
103+
jquery-ui-rails (6.0.1)
104+
railties (>= 3.2.16)
105+
jwt (1.5.6)
106+
loofah (2.0.3)
107+
nokogiri (>= 1.5.9)
108+
mail (2.6.4)
109+
mime-types (>= 1.16, < 4)
110+
method_source (0.8.2)
111+
mime-types (3.1)
112+
mime-types-data (~> 3.2015)
113+
mime-types-data (3.2016.0521)
114+
mimemagic (0.3.2)
115+
mini_portile2 (2.1.0)
116+
minitest (5.10.1)
117+
multi_json (1.12.1)
118+
multi_xml (0.6.0)
119+
multipart-post (2.0.0)
120+
nio4r (2.0.0)
121+
nokogiri (1.7.0.1)
122+
mini_portile2 (~> 2.1.0)
123+
nokogiri (1.7.0.1-x86-mingw32)
124+
mini_portile2 (~> 2.1.0)
125+
oauth2 (1.3.0)
126+
faraday (>= 0.8, < 0.11)
127+
jwt (~> 1.0)
128+
multi_json (~> 1.3)
129+
multi_xml (~> 0.5)
130+
rack (>= 1.2, < 3)
131+
omniauth (1.6.1)
132+
hashie (>= 3.4.6, < 3.6.0)
133+
rack (>= 1.6.2, < 3)
134+
omniauth-facebook (4.0.0)
135+
omniauth-oauth2 (~> 1.2)
136+
omniauth-google-oauth2 (0.4.1)
137+
jwt (~> 1.5.2)
138+
multi_json (~> 1.3)
139+
omniauth (>= 1.1.1)
140+
omniauth-oauth2 (>= 1.3.1)
141+
omniauth-oauth2 (1.4.0)
142+
oauth2 (~> 1.0)
143+
omniauth (~> 1.2)
144+
orm_adapter (0.5.0)
145+
polyamorous (1.3.1)
146+
activerecord (>= 3.0)
147+
puma (3.7.1)
148+
rack (2.0.1)
149+
rack-test (0.6.3)
150+
rack (>= 1.0)
151+
rails (5.0.2)
152+
actioncable (= 5.0.2)
153+
actionmailer (= 5.0.2)
154+
actionpack (= 5.0.2)
155+
actionview (= 5.0.2)
156+
activejob (= 5.0.2)
157+
activemodel (= 5.0.2)
158+
activerecord (= 5.0.2)
159+
activesupport (= 5.0.2)
160+
bundler (>= 1.3.0, < 2.0)
161+
railties (= 5.0.2)
162+
sprockets-rails (>= 2.0.0)
163+
rails-dom-testing (2.0.2)
164+
activesupport (>= 4.2.0, < 6.0)
165+
nokogiri (~> 1.6)
166+
rails-footnotes (4.1.8)
167+
rails (>= 3.2)
168+
rails-html-sanitizer (1.0.3)
169+
loofah (~> 2.0)
170+
railties (5.0.2)
171+
actionpack (= 5.0.2)
172+
activesupport (= 5.0.2)
173+
method_source
174+
rake (>= 0.8.7)
175+
thor (>= 0.18.1, < 2.0)
176+
rake (12.0.0)
177+
ransack (1.8.2)
178+
actionpack (>= 3.0)
179+
activerecord (>= 3.0)
180+
activesupport (>= 3.0)
181+
i18n
182+
polyamorous (~> 1.3)
183+
responders (2.3.0)
184+
railties (>= 4.2.0, < 5.1)
185+
sass (3.4.23)
186+
sass-rails (5.0.6)
187+
railties (>= 4.0.0, < 6)
188+
sass (~> 3.1)
189+
sprockets (>= 2.8, < 4.0)
190+
sprockets-rails (>= 2.0, < 4.0)
191+
tilt (>= 1.1, < 3)
192+
sendgrid-rails (2.0.5)
193+
actionmailer (>= 3.0.0)
194+
activesupport (>= 2.1.0)
195+
sprockets (3.7.1)
196+
concurrent-ruby (~> 1.0)
197+
rack (> 1, < 3)
198+
sprockets-rails (3.2.0)
199+
actionpack (>= 4.0)
200+
activesupport (>= 4.0)
201+
sprockets (>= 3.0.0)
202+
sqlite3 (1.3.13)
203+
sqlite3 (1.3.13-x86-mingw32)
204+
thor (0.19.4)
205+
thread_safe (0.3.6)
206+
tilt (2.0.6)
207+
toastr-rails (1.0.3)
208+
railties (>= 3.1.0)
209+
turbolinks (5.0.1)
210+
turbolinks-source (~> 5)
211+
turbolinks-source (5.0.0)
212+
tzinfo (1.2.2)
213+
thread_safe (~> 0.1)
214+
tzinfo-data (1.2017.1)
215+
tzinfo (>= 1.0.0)
216+
uglifier (3.1.2)
217+
execjs (>= 0.3.0, < 3)
218+
warden (1.2.7)
219+
rack (>= 1.0)
220+
web-console (3.4.0)
221+
actionview (>= 5.0)
222+
activemodel (>= 5.0)
223+
debug_inspector
224+
railties (>= 5.0)
225+
websocket-driver (0.6.5)
226+
websocket-extensions (>= 0.1.0)
227+
websocket-extensions (0.1.2)
228+
229+
PLATFORMS
230+
ruby
231+
x86-mingw32
232+
233+
DEPENDENCIES
234+
bootstrap-sass (~> 3.3.6)
235+
byebug
236+
coffee-rails (~> 4.2)
237+
coffee-script-source (= 1.8.0)
238+
devise!
239+
geocoder
240+
hirb
241+
jbuilder (~> 2.5)
242+
jquery-rails
243+
jquery-ui-rails
244+
omniauth
245+
omniauth-facebook
246+
omniauth-google-oauth2
247+
paperclip!
248+
puma (~> 3.0)
249+
rails (~> 5.0.0, >= 5.0.0.1)
250+
rails-footnotes
251+
ransack
252+
sass-rails (~> 5.0)
253+
sendgrid-rails (~> 2.0, >= 2.0.5)
254+
sqlite3
255+
toastr-rails
256+
turbolinks (~> 5)
257+
tzinfo-data
258+
uglifier (>= 1.3.0)
259+
web-console
260+
261+
BUNDLED WITH
262+
1.14.3

README.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# README
2+
3+
This README would normally document whatever steps are necessary to get the
4+
application up and running.
5+
6+
Things you may want to cover:
7+
8+
* Ruby version
9+
10+
* System dependencies
11+
12+
* Configuration
13+
14+
* Database creation
15+
16+
* Database initialization
17+
18+
* How to run the test suite
19+
20+
* Services (job queues, cache servers, search engines, etc.)
21+
22+
* Deployment instructions
23+
24+
* ...

Rakefile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Add your own tasks in files placed in lib/tasks ending in .rake,
2+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3+
4+
require_relative 'config/application'
5+
6+
Rails.application.load_tasks

a

Whitespace-only changes.

app/.DS_Store

6 KB
Binary file not shown.

app/assets/.DS_Store

6 KB
Binary file not shown.

app/assets/config/manifest.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
//= link_tree ../images
2+
//= link_directory ../javascripts .js
3+
//= link_directory ../stylesheets .css

app/assets/images/.keep

Whitespace-only changes.

app/assets/images/hollywood.jpg

42.3 KB
Loading

app/assets/images/las-vegas.jpeg

136 KB
Loading

app/assets/images/london.jpg

173 KB
Loading
82.8 KB
Loading
74.5 KB
Loading
81.3 KB
Loading
52.4 KB
Loading
108 KB
Loading
70.7 KB
Loading

app/assets/images/san-fran.jpg

116 KB
Loading

0 commit comments

Comments
 (0)