Skip to content

Commit c83d08f

Browse files
author
lfborjas
committed
Initial commit:
Using bootstrap, simple_form and devise, ran: * `rails g bootstrap:install` * `rails g simple_form:install --bootstrap` * Edited config/initializers/simple_form to: `config.form_class = 'simple_form form-horizontal'` * `rails g devise:install` * `rails g devise user`
0 parents  commit c83d08f

File tree

83 files changed

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

83 files changed

+2100
-0
lines changed

.gitignore

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# See http://help.github.com/ignore-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+
13+
# Ignore all logfiles and tempfiles.
14+
/log/*.log
15+
/tmp

Gemfile

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'rails', '3.2.2'
4+
5+
# Bundle edge Rails instead:
6+
# gem 'rails', :git => 'git://github.com/rails/rails.git'
7+
8+
gem 'pg'
9+
gem 'simple_form'
10+
gem 'devise'
11+
12+
13+
# Gems used only for assets and not required
14+
# in production environments by default.
15+
group :assets do
16+
gem 'sass-rails', '~> 3.2.3'
17+
gem 'coffee-rails', '~> 3.2.1'
18+
gem 'twitter-bootstrap-rails'
19+
20+
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
21+
# gem 'therubyracer'
22+
23+
gem 'uglifier', '>= 1.0.3'
24+
end
25+
26+
gem 'jquery-rails'
27+
gem 'factory_girl_rails', group: :test
28+
# To use ActiveModel has_secure_password
29+
# gem 'bcrypt-ruby', '~> 3.0.0'
30+
31+
# To use Jbuilder templates for JSON
32+
# gem 'jbuilder'
33+
34+
# Use unicorn as the app server
35+
# gem 'unicorn'
36+
37+
# Deploy with Capistrano
38+
# gem 'capistrano'
39+
40+
# To use debugger
41+
# gem 'ruby-debug19', :require => 'ruby-debug'

Gemfile.lock

+146
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actionmailer (3.2.2)
5+
actionpack (= 3.2.2)
6+
mail (~> 2.4.0)
7+
actionpack (3.2.2)
8+
activemodel (= 3.2.2)
9+
activesupport (= 3.2.2)
10+
builder (~> 3.0.0)
11+
erubis (~> 2.7.0)
12+
journey (~> 1.0.1)
13+
rack (~> 1.4.0)
14+
rack-cache (~> 1.1)
15+
rack-test (~> 0.6.1)
16+
sprockets (~> 2.1.2)
17+
activemodel (3.2.2)
18+
activesupport (= 3.2.2)
19+
builder (~> 3.0.0)
20+
activerecord (3.2.2)
21+
activemodel (= 3.2.2)
22+
activesupport (= 3.2.2)
23+
arel (~> 3.0.2)
24+
tzinfo (~> 0.3.29)
25+
activeresource (3.2.2)
26+
activemodel (= 3.2.2)
27+
activesupport (= 3.2.2)
28+
activesupport (3.2.2)
29+
i18n (~> 0.6)
30+
multi_json (~> 1.0)
31+
arel (3.0.2)
32+
bcrypt-ruby (3.0.1)
33+
builder (3.0.0)
34+
coffee-rails (3.2.2)
35+
coffee-script (>= 2.2.0)
36+
railties (~> 3.2.0)
37+
coffee-script (2.2.0)
38+
coffee-script-source
39+
execjs
40+
coffee-script-source (1.2.0)
41+
commonjs (0.2.5)
42+
devise (2.0.4)
43+
bcrypt-ruby (~> 3.0)
44+
orm_adapter (~> 0.0.3)
45+
railties (~> 3.1)
46+
warden (~> 1.1.1)
47+
erubis (2.7.0)
48+
execjs (1.3.0)
49+
multi_json (~> 1.0)
50+
factory_girl (3.0.0)
51+
activesupport (>= 3.0.0)
52+
factory_girl_rails (3.0.0)
53+
factory_girl (~> 3.0.0)
54+
railties (>= 3.0.0)
55+
hike (1.2.1)
56+
i18n (0.6.0)
57+
journey (1.0.3)
58+
jquery-rails (2.0.1)
59+
railties (>= 3.2.0, < 5.0)
60+
thor (~> 0.14)
61+
json (1.6.5)
62+
less (2.0.11)
63+
commonjs (~> 0.2.0)
64+
therubyracer (~> 0.9.9)
65+
less-rails (2.1.8)
66+
actionpack (>= 3.1)
67+
less (~> 2.0.7)
68+
libv8 (3.3.10.4)
69+
mail (2.4.4)
70+
i18n (>= 0.4.0)
71+
mime-types (~> 1.16)
72+
treetop (~> 1.4.8)
73+
mime-types (1.17.2)
74+
multi_json (1.1.0)
75+
orm_adapter (0.0.6)
76+
pg (0.13.2)
77+
polyglot (0.3.3)
78+
rack (1.4.1)
79+
rack-cache (1.2)
80+
rack (>= 0.4)
81+
rack-ssl (1.3.2)
82+
rack
83+
rack-test (0.6.1)
84+
rack (>= 1.0)
85+
rails (3.2.2)
86+
actionmailer (= 3.2.2)
87+
actionpack (= 3.2.2)
88+
activerecord (= 3.2.2)
89+
activeresource (= 3.2.2)
90+
activesupport (= 3.2.2)
91+
bundler (~> 1.0)
92+
railties (= 3.2.2)
93+
railties (3.2.2)
94+
actionpack (= 3.2.2)
95+
activesupport (= 3.2.2)
96+
rack-ssl (~> 1.3.2)
97+
rake (>= 0.8.7)
98+
rdoc (~> 3.4)
99+
thor (~> 0.14.6)
100+
rake (0.9.2.2)
101+
rdoc (3.12)
102+
json (~> 1.4)
103+
sass (3.1.15)
104+
sass-rails (3.2.4)
105+
railties (~> 3.2.0)
106+
sass (>= 3.1.10)
107+
tilt (~> 1.3)
108+
simple_form (2.0.1)
109+
actionpack (~> 3.0)
110+
activemodel (~> 3.0)
111+
sprockets (2.1.2)
112+
hike (~> 1.2)
113+
rack (~> 1.0)
114+
tilt (~> 1.1, != 1.3.0)
115+
therubyracer (0.9.10)
116+
libv8 (~> 3.3.10)
117+
thor (0.14.6)
118+
tilt (1.3.3)
119+
treetop (1.4.10)
120+
polyglot
121+
polyglot (>= 0.3.1)
122+
twitter-bootstrap-rails (2.0.4)
123+
actionpack (>= 3.1)
124+
less-rails (~> 2.1.8)
125+
railties (>= 3.1)
126+
tzinfo (0.3.32)
127+
uglifier (1.2.3)
128+
execjs (>= 0.3.0)
129+
multi_json (>= 1.0.2)
130+
warden (1.1.1)
131+
rack (>= 1.0)
132+
133+
PLATFORMS
134+
ruby
135+
136+
DEPENDENCIES
137+
coffee-rails (~> 3.2.1)
138+
devise
139+
factory_girl_rails
140+
jquery-rails
141+
pg
142+
rails (= 3.2.2)
143+
sass-rails (~> 3.2.3)
144+
simple_form
145+
twitter-bootstrap-rails
146+
uglifier (>= 1.0.3)

0 commit comments

Comments
 (0)