Skip to content

Commit 33ff13a

Browse files
committed
house app
1 parent ee2458a commit 33ff13a

File tree

19,675 files changed

+2780384
-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.

19,675 files changed

+2780384
-0
lines changed

.DS_Store

4 KB
Binary file not shown.

house-master/.byebug_history

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
c
2+
user

house-master/.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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+
!/log/.keep
17+
/tmp

house-master/.rspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--require spec_helper

house-master/Gemfile

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
source 'https://rubygems.org'
2+
3+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
4+
gem 'rails', '~> 4.2.10'
5+
6+
# #1
7+
group :production do
8+
gem 'pg'
9+
gem 'rails_12factor'
10+
end
11+
12+
# #2
13+
group :development do
14+
gem 'sqlite3'
15+
end
16+
17+
# Use SCSS for stylesheets
18+
gem 'sass-rails', '~> 5.0'
19+
# Use Uglifier as compressor for JavaScript assets
20+
gem 'uglifier', '>= 1.3.0'
21+
# Use CoffeeScript for .coffee assets and views
22+
gem 'coffee-rails', '~> 4.1.0'
23+
# Use jquery as the JavaScript library
24+
gem 'jquery-rails'
25+
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
26+
# gem 'turbolinks'
27+
# bootstrap is a css framework. Provides layouts,forms etc
28+
gem 'bootstrap-sass'
29+
# devise for sign in & sign out
30+
gem 'devise'
31+
#font-awesome
32+
gem 'font-awesome-sass'
33+
#faker seed gem
34+
gem 'faker'
35+
#omniauth for facebook
36+
gem 'omniauth-facebook'
37+
gem 'omniauth'
38+
#sendgrid to deal with confirmations
39+
gem 'sendgrid-ruby'
40+
gem 'bootstrap', '~> 4.0.0.alpha6'
41+
gem 'byebug'
42+
gem 'activeadmin'
43+
44+
group :development, :test do
45+
gem 'pry-rails'
46+
gem 'awesome_print'
47+
gem 'rspec-rails', '~> 3.0'
48+
gem 'factory_bot_rails'
49+
end

house-master/Gemfile.lock

Lines changed: 297 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,297 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actionmailer (4.2.10)
5+
actionpack (= 4.2.10)
6+
actionview (= 4.2.10)
7+
activejob (= 4.2.10)
8+
mail (~> 2.5, >= 2.5.4)
9+
rails-dom-testing (~> 1.0, >= 1.0.5)
10+
actionpack (4.2.10)
11+
actionview (= 4.2.10)
12+
activesupport (= 4.2.10)
13+
rack (~> 1.6)
14+
rack-test (~> 0.6.2)
15+
rails-dom-testing (~> 1.0, >= 1.0.5)
16+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
17+
actionview (4.2.10)
18+
activesupport (= 4.2.10)
19+
builder (~> 3.1)
20+
erubis (~> 2.7.0)
21+
rails-dom-testing (~> 1.0, >= 1.0.5)
22+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
23+
activeadmin (1.3.1)
24+
arbre (>= 1.1.1)
25+
coffee-rails
26+
formtastic (~> 3.1)
27+
formtastic_i18n
28+
inherited_resources (>= 1.9.0)
29+
jquery-rails (>= 4.2.0)
30+
kaminari (>= 0.15)
31+
railties (>= 4.2, < 5.3)
32+
ransack (>= 1.8.7)
33+
sass (~> 3.1)
34+
sprockets (< 4.1)
35+
activejob (4.2.10)
36+
activesupport (= 4.2.10)
37+
globalid (>= 0.3.0)
38+
activemodel (4.2.10)
39+
activesupport (= 4.2.10)
40+
builder (~> 3.1)
41+
activerecord (4.2.10)
42+
activemodel (= 4.2.10)
43+
activesupport (= 4.2.10)
44+
arel (~> 6.0)
45+
activesupport (4.2.10)
46+
i18n (~> 0.7)
47+
minitest (~> 5.1)
48+
thread_safe (~> 0.3, >= 0.3.4)
49+
tzinfo (~> 1.1)
50+
arbre (1.1.1)
51+
activesupport (>= 3.0.0)
52+
arel (6.0.4)
53+
autoprefixer-rails (9.1.4)
54+
execjs
55+
awesome_print (1.8.0)
56+
bcrypt (3.1.12)
57+
bootstrap (4.0.0)
58+
autoprefixer-rails (>= 6.0.3)
59+
popper_js (>= 1.12.9, < 2)
60+
sass (>= 3.5.2)
61+
bootstrap-sass (3.3.7)
62+
autoprefixer-rails (>= 5.2.1)
63+
sass (>= 3.3.4)
64+
builder (3.2.3)
65+
byebug (10.0.2)
66+
coderay (1.1.2)
67+
coffee-rails (4.1.1)
68+
coffee-script (>= 2.2.0)
69+
railties (>= 4.0.0, < 5.1.x)
70+
coffee-script (2.4.1)
71+
coffee-script-source
72+
execjs
73+
coffee-script-source (1.12.2)
74+
concurrent-ruby (1.0.5)
75+
crass (1.0.4)
76+
devise (4.5.0)
77+
bcrypt (~> 3.0)
78+
orm_adapter (~> 0.1)
79+
railties (>= 4.1.0, < 6.0)
80+
responders
81+
warden (~> 1.2.3)
82+
diff-lcs (1.3)
83+
erubis (2.7.0)
84+
execjs (2.7.0)
85+
factory_bot (4.11.0)
86+
activesupport (>= 3.0.0)
87+
factory_bot_rails (4.11.0)
88+
factory_bot (~> 4.11.0)
89+
railties (>= 3.0.0)
90+
faker (1.9.1)
91+
i18n (>= 0.7)
92+
faraday (0.12.2)
93+
multipart-post (>= 1.2, < 3)
94+
ffi (1.9.25)
95+
font-awesome-sass (5.3.1)
96+
sassc (>= 1.11)
97+
formtastic (3.1.5)
98+
actionpack (>= 3.2.13)
99+
formtastic_i18n (0.6.0)
100+
globalid (0.4.1)
101+
activesupport (>= 4.2.0)
102+
has_scope (0.7.2)
103+
actionpack (>= 4.1)
104+
activesupport (>= 4.1)
105+
hashie (3.5.7)
106+
i18n (0.9.5)
107+
concurrent-ruby (~> 1.0)
108+
inherited_resources (1.9.0)
109+
actionpack (>= 4.2, < 5.3)
110+
has_scope (~> 0.6)
111+
railties (>= 4.2, < 5.3)
112+
responders
113+
jquery-rails (4.3.3)
114+
rails-dom-testing (>= 1, < 3)
115+
railties (>= 4.2.0)
116+
thor (>= 0.14, < 2.0)
117+
jwt (1.5.6)
118+
kaminari (1.1.1)
119+
activesupport (>= 4.1.0)
120+
kaminari-actionview (= 1.1.1)
121+
kaminari-activerecord (= 1.1.1)
122+
kaminari-core (= 1.1.1)
123+
kaminari-actionview (1.1.1)
124+
actionview
125+
kaminari-core (= 1.1.1)
126+
kaminari-activerecord (1.1.1)
127+
activerecord
128+
kaminari-core (= 1.1.1)
129+
kaminari-core (1.1.1)
130+
loofah (2.2.2)
131+
crass (~> 1.0.2)
132+
nokogiri (>= 1.5.9)
133+
mail (2.7.0)
134+
mini_mime (>= 0.1.1)
135+
method_source (0.9.0)
136+
mini_mime (1.0.1)
137+
mini_portile2 (2.3.0)
138+
minitest (5.11.3)
139+
multi_json (1.13.1)
140+
multi_xml (0.6.0)
141+
multipart-post (2.0.0)
142+
nokogiri (1.8.4)
143+
mini_portile2 (~> 2.3.0)
144+
oauth2 (1.4.0)
145+
faraday (>= 0.8, < 0.13)
146+
jwt (~> 1.0)
147+
multi_json (~> 1.3)
148+
multi_xml (~> 0.5)
149+
rack (>= 1.2, < 3)
150+
omniauth (1.8.1)
151+
hashie (>= 3.4.6, < 3.6.0)
152+
rack (>= 1.6.2, < 3)
153+
omniauth-facebook (5.0.0)
154+
omniauth-oauth2 (~> 1.2)
155+
omniauth-oauth2 (1.5.0)
156+
oauth2 (~> 1.1)
157+
omniauth (~> 1.2)
158+
orm_adapter (0.5.0)
159+
pg (1.1.2)
160+
popper_js (1.14.3)
161+
pry (0.11.3)
162+
coderay (~> 1.1.0)
163+
method_source (~> 0.9.0)
164+
pry-rails (0.3.6)
165+
pry (>= 0.10.4)
166+
rack (1.6.10)
167+
rack-protection (1.5.5)
168+
rack
169+
rack-test (0.6.3)
170+
rack (>= 1.0)
171+
rails (4.2.10)
172+
actionmailer (= 4.2.10)
173+
actionpack (= 4.2.10)
174+
actionview (= 4.2.10)
175+
activejob (= 4.2.10)
176+
activemodel (= 4.2.10)
177+
activerecord (= 4.2.10)
178+
activesupport (= 4.2.10)
179+
bundler (>= 1.3.0, < 2.0)
180+
railties (= 4.2.10)
181+
sprockets-rails
182+
rails-deprecated_sanitizer (1.0.3)
183+
activesupport (>= 4.2.0.alpha)
184+
rails-dom-testing (1.0.9)
185+
activesupport (>= 4.2.0, < 5.0)
186+
nokogiri (~> 1.6)
187+
rails-deprecated_sanitizer (>= 1.0.1)
188+
rails-html-sanitizer (1.0.4)
189+
loofah (~> 2.2, >= 2.2.2)
190+
rails_12factor (0.0.3)
191+
rails_serve_static_assets
192+
rails_stdout_logging
193+
rails_serve_static_assets (0.0.5)
194+
rails_stdout_logging (0.0.5)
195+
railties (4.2.10)
196+
actionpack (= 4.2.10)
197+
activesupport (= 4.2.10)
198+
rake (>= 0.8.7)
199+
thor (>= 0.18.1, < 2.0)
200+
rake (12.3.1)
201+
ransack (1.8.9)
202+
actionpack (>= 3.0, <= 5.1.1)
203+
activerecord (>= 3.0, <= 5.1.1)
204+
activesupport (>= 3.0, <= 5.1.1)
205+
i18n
206+
rb-fsevent (0.10.3)
207+
rb-inotify (0.9.10)
208+
ffi (>= 0.5.0, < 2)
209+
responders (2.4.0)
210+
actionpack (>= 4.2.0, < 5.3)
211+
railties (>= 4.2.0, < 5.3)
212+
rspec-core (3.8.0)
213+
rspec-support (~> 3.8.0)
214+
rspec-expectations (3.8.1)
215+
diff-lcs (>= 1.2.0, < 2.0)
216+
rspec-support (~> 3.8.0)
217+
rspec-mocks (3.8.0)
218+
diff-lcs (>= 1.2.0, < 2.0)
219+
rspec-support (~> 3.8.0)
220+
rspec-rails (3.8.0)
221+
actionpack (>= 3.0)
222+
activesupport (>= 3.0)
223+
railties (>= 3.0)
224+
rspec-core (~> 3.8.0)
225+
rspec-expectations (~> 3.8.0)
226+
rspec-mocks (~> 3.8.0)
227+
rspec-support (~> 3.8.0)
228+
rspec-support (3.8.0)
229+
ruby_http_client (3.3.0)
230+
sass (3.5.7)
231+
sass-listen (~> 4.0.0)
232+
sass-listen (4.0.0)
233+
rb-fsevent (~> 0.9, >= 0.9.4)
234+
rb-inotify (~> 0.9, >= 0.9.7)
235+
sass-rails (5.0.7)
236+
railties (>= 4.0.0, < 6)
237+
sass (~> 3.1)
238+
sprockets (>= 2.8, < 4.0)
239+
sprockets-rails (>= 2.0, < 4.0)
240+
tilt (>= 1.1, < 3)
241+
sassc (1.12.1)
242+
ffi (~> 1.9.6)
243+
sass (>= 3.3.0)
244+
sendgrid-ruby (5.2.0)
245+
ruby_http_client (~> 3.2)
246+
sinatra (>= 1.4.7, < 3)
247+
sinatra (1.4.8)
248+
rack (~> 1.5)
249+
rack-protection (~> 1.4)
250+
tilt (>= 1.3, < 3)
251+
sprockets (3.7.2)
252+
concurrent-ruby (~> 1.0)
253+
rack (> 1, < 3)
254+
sprockets-rails (3.2.1)
255+
actionpack (>= 4.0)
256+
activesupport (>= 4.0)
257+
sprockets (>= 3.0.0)
258+
sqlite3 (1.3.13)
259+
thor (0.20.0)
260+
thread_safe (0.3.6)
261+
tilt (2.0.8)
262+
tzinfo (1.2.5)
263+
thread_safe (~> 0.1)
264+
uglifier (4.1.18)
265+
execjs (>= 0.3.0, < 3)
266+
warden (1.2.7)
267+
rack (>= 1.0)
268+
269+
PLATFORMS
270+
ruby
271+
272+
DEPENDENCIES
273+
activeadmin
274+
awesome_print
275+
bootstrap (~> 4.0.0.alpha6)
276+
bootstrap-sass
277+
byebug
278+
coffee-rails (~> 4.1.0)
279+
devise
280+
factory_bot_rails
281+
faker
282+
font-awesome-sass
283+
jquery-rails
284+
omniauth
285+
omniauth-facebook
286+
pg
287+
pry-rails
288+
rails (~> 4.2.10)
289+
rails_12factor
290+
rspec-rails (~> 3.0)
291+
sass-rails (~> 5.0)
292+
sendgrid-ruby
293+
sqlite3
294+
uglifier (>= 1.3.0)
295+
296+
BUNDLED WITH
297+
1.16.2

0 commit comments

Comments
 (0)