Skip to content

Commit 4e2d74c

Browse files
committed
Initial commit with devise template from https://github.com/lewagon/rails-templates
0 parents  commit 4e2d74c

File tree

129 files changed

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

129 files changed

+8868
-0
lines changed

.babelrc

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"presets": [
3+
["env", {
4+
"modules": false,
5+
"targets": {
6+
"browsers": "> 1%",
7+
"uglify": true
8+
},
9+
"useBuiltIns": true
10+
}]
11+
],
12+
13+
"plugins": [
14+
"syntax-dynamic-import",
15+
"transform-object-rest-spread",
16+
["transform-class-properties", { "spec": true }]
17+
]
18+
}

.gitignore

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.bundle
2+
log/*.log
3+
tmp/**/*
4+
tmp/*
5+
!log/.keep
6+
!tmp/.keep
7+
*.swp
8+
.DS_Store
9+
public/assets
10+
public/packs
11+
public/packs-test
12+
node_modules
13+
.byebug_history
14+
15+
# Ignore application configuration
16+
/config/application.yml

.postcssrc.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
plugins:
2+
postcss-import: {}
3+
postcss-cssnext: {}

.ruby-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.4.3

Gemfile

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
source 'https://rubygems.org'
2+
ruby '2.4.3'
3+
4+
gem 'devise'
5+
gem 'figaro'
6+
gem 'jbuilder', '~> 2.0'
7+
gem 'pg', '~> 0.21'
8+
gem 'puma'
9+
gem 'rails', '5.1.5'
10+
gem 'redis'
11+
12+
gem 'autoprefixer-rails'
13+
gem 'bootstrap-sass'
14+
gem 'font-awesome-sass'
15+
gem 'sass-rails'
16+
gem 'simple_form'
17+
gem 'uglifier'
18+
gem 'webpacker'
19+
20+
group :development do
21+
gem 'web-console', '>= 3.3.0'
22+
end
23+
24+
group :development, :test do
25+
gem 'pry-byebug'
26+
gem 'pry-rails'
27+
gem 'listen', '~> 3.0.5'
28+
gem 'spring'
29+
gem 'spring-watcher-listen', '~> 2.0.0'
30+
end

Gemfile.lock

+214
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,214 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actioncable (5.1.5)
5+
actionpack (= 5.1.5)
6+
nio4r (~> 2.0)
7+
websocket-driver (~> 0.6.1)
8+
actionmailer (5.1.5)
9+
actionpack (= 5.1.5)
10+
actionview (= 5.1.5)
11+
activejob (= 5.1.5)
12+
mail (~> 2.5, >= 2.5.4)
13+
rails-dom-testing (~> 2.0)
14+
actionpack (5.1.5)
15+
actionview (= 5.1.5)
16+
activesupport (= 5.1.5)
17+
rack (~> 2.0)
18+
rack-test (>= 0.6.3)
19+
rails-dom-testing (~> 2.0)
20+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
21+
actionview (5.1.5)
22+
activesupport (= 5.1.5)
23+
builder (~> 3.1)
24+
erubi (~> 1.4)
25+
rails-dom-testing (~> 2.0)
26+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
27+
activejob (5.1.5)
28+
activesupport (= 5.1.5)
29+
globalid (>= 0.3.6)
30+
activemodel (5.1.5)
31+
activesupport (= 5.1.5)
32+
activerecord (5.1.5)
33+
activemodel (= 5.1.5)
34+
activesupport (= 5.1.5)
35+
arel (~> 8.0)
36+
activesupport (5.1.5)
37+
concurrent-ruby (~> 1.0, >= 1.0.2)
38+
i18n (~> 0.7)
39+
minitest (~> 5.1)
40+
tzinfo (~> 1.1)
41+
arel (8.0.0)
42+
autoprefixer-rails (8.0.0)
43+
execjs
44+
bcrypt (3.1.11)
45+
bindex (0.5.0)
46+
bootstrap-sass (3.3.7)
47+
autoprefixer-rails (>= 5.2.1)
48+
sass (>= 3.3.4)
49+
builder (3.2.3)
50+
byebug (10.0.0)
51+
coderay (1.1.2)
52+
concurrent-ruby (1.0.5)
53+
crass (1.0.3)
54+
devise (4.4.1)
55+
bcrypt (~> 3.0)
56+
orm_adapter (~> 0.1)
57+
railties (>= 4.1.0, < 5.2)
58+
responders
59+
warden (~> 1.2.3)
60+
erubi (1.7.0)
61+
execjs (2.7.0)
62+
ffi (1.9.23)
63+
figaro (1.1.1)
64+
thor (~> 0.14)
65+
font-awesome-sass (5.0.6.2)
66+
sass (>= 3.2)
67+
globalid (0.4.1)
68+
activesupport (>= 4.2.0)
69+
i18n (0.9.5)
70+
concurrent-ruby (~> 1.0)
71+
jbuilder (2.7.0)
72+
activesupport (>= 4.2.0)
73+
multi_json (>= 1.2)
74+
listen (3.0.8)
75+
rb-fsevent (~> 0.9, >= 0.9.4)
76+
rb-inotify (~> 0.9, >= 0.9.7)
77+
loofah (2.2.0)
78+
crass (~> 1.0.2)
79+
nokogiri (>= 1.5.9)
80+
mail (2.7.0)
81+
mini_mime (>= 0.1.1)
82+
method_source (0.9.0)
83+
mini_mime (1.0.0)
84+
mini_portile2 (2.3.0)
85+
minitest (5.11.3)
86+
multi_json (1.13.1)
87+
nio4r (2.2.0)
88+
nokogiri (1.8.2)
89+
mini_portile2 (~> 2.3.0)
90+
orm_adapter (0.5.0)
91+
pg (0.21.0)
92+
pry (0.11.3)
93+
coderay (~> 1.1.0)
94+
method_source (~> 0.9.0)
95+
pry-byebug (3.6.0)
96+
byebug (~> 10.0)
97+
pry (~> 0.10)
98+
pry-rails (0.3.6)
99+
pry (>= 0.10.4)
100+
puma (3.11.2)
101+
rack (2.0.4)
102+
rack-proxy (0.6.3)
103+
rack
104+
rack-test (0.8.2)
105+
rack (>= 1.0, < 3)
106+
rails (5.1.5)
107+
actioncable (= 5.1.5)
108+
actionmailer (= 5.1.5)
109+
actionpack (= 5.1.5)
110+
actionview (= 5.1.5)
111+
activejob (= 5.1.5)
112+
activemodel (= 5.1.5)
113+
activerecord (= 5.1.5)
114+
activesupport (= 5.1.5)
115+
bundler (>= 1.3.0)
116+
railties (= 5.1.5)
117+
sprockets-rails (>= 2.0.0)
118+
rails-dom-testing (2.0.3)
119+
activesupport (>= 4.2.0)
120+
nokogiri (>= 1.6)
121+
rails-html-sanitizer (1.0.3)
122+
loofah (~> 2.0)
123+
railties (5.1.5)
124+
actionpack (= 5.1.5)
125+
activesupport (= 5.1.5)
126+
method_source
127+
rake (>= 0.8.7)
128+
thor (>= 0.18.1, < 2.0)
129+
rake (12.3.0)
130+
rb-fsevent (0.10.2)
131+
rb-inotify (0.9.10)
132+
ffi (>= 0.5.0, < 2)
133+
redis (4.0.1)
134+
responders (2.4.0)
135+
actionpack (>= 4.2.0, < 5.3)
136+
railties (>= 4.2.0, < 5.3)
137+
sass (3.5.5)
138+
sass-listen (~> 4.0.0)
139+
sass-listen (4.0.0)
140+
rb-fsevent (~> 0.9, >= 0.9.4)
141+
rb-inotify (~> 0.9, >= 0.9.7)
142+
sass-rails (5.0.7)
143+
railties (>= 4.0.0, < 6)
144+
sass (~> 3.1)
145+
sprockets (>= 2.8, < 4.0)
146+
sprockets-rails (>= 2.0, < 4.0)
147+
tilt (>= 1.1, < 3)
148+
simple_form (3.5.1)
149+
actionpack (> 4, < 5.2)
150+
activemodel (> 4, < 5.2)
151+
spring (2.0.2)
152+
activesupport (>= 4.2)
153+
spring-watcher-listen (2.0.1)
154+
listen (>= 2.7, < 4.0)
155+
spring (>= 1.2, < 3.0)
156+
sprockets (3.7.1)
157+
concurrent-ruby (~> 1.0)
158+
rack (> 1, < 3)
159+
sprockets-rails (3.2.1)
160+
actionpack (>= 4.0)
161+
activesupport (>= 4.0)
162+
sprockets (>= 3.0.0)
163+
thor (0.20.0)
164+
thread_safe (0.3.6)
165+
tilt (2.0.8)
166+
tzinfo (1.2.5)
167+
thread_safe (~> 0.1)
168+
uglifier (4.1.6)
169+
execjs (>= 0.3.0, < 3)
170+
warden (1.2.7)
171+
rack (>= 1.0)
172+
web-console (3.5.1)
173+
actionview (>= 5.0)
174+
activemodel (>= 5.0)
175+
bindex (>= 0.4.0)
176+
railties (>= 5.0)
177+
webpacker (3.2.2)
178+
activesupport (>= 4.2)
179+
rack-proxy (>= 0.6.1)
180+
railties (>= 4.2)
181+
websocket-driver (0.6.5)
182+
websocket-extensions (>= 0.1.0)
183+
websocket-extensions (0.1.3)
184+
185+
PLATFORMS
186+
ruby
187+
188+
DEPENDENCIES
189+
autoprefixer-rails
190+
bootstrap-sass
191+
devise
192+
figaro
193+
font-awesome-sass
194+
jbuilder (~> 2.0)
195+
listen (~> 3.0.5)
196+
pg (~> 0.21)
197+
pry-byebug
198+
pry-rails
199+
puma
200+
rails (= 5.1.5)
201+
redis
202+
sass-rails
203+
simple_form
204+
spring
205+
spring-watcher-listen (~> 2.0.0)
206+
uglifier
207+
web-console (>= 3.3.0)
208+
webpacker
209+
210+
RUBY VERSION
211+
ruby 2.4.3p205
212+
213+
BUNDLED WITH
214+
1.16.1

Procfile

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
web: bundle exec puma -C config/puma.rb

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Rails app generated with [lewagon/rails-templates](https://github.com/lewagon/rails-templates), created by the [Le Wagon coding bootcamp](https://www.lewagon.com) team.

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

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/logo.png

54.8 KB
Loading

app/assets/javascripts/application.js

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
//= require rails-ujs
2+
//= require_tree .

app/assets/javascripts/cable.js

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// Action Cable provides the framework to deal with WebSockets in Rails.
2+
// You can generate new channels where WebSocket features live using the `rails generate channel` command.
3+
//
4+
//= require action_cable
5+
//= require_self
6+
//= require_tree ./channels
7+
8+
(function() {
9+
this.App || (this.App = {});
10+
11+
App.cable = ActionCable.createConsumer();
12+
13+
}).call(this);

app/assets/javascripts/channels/.keep

Whitespace-only changes.

0 commit comments

Comments
 (0)