Skip to content

Commit 8836d3e

Browse files
committed
Initial Commit - Rails skeleton
0 parents  commit 8836d3e

Some content is hidden

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

69 files changed

+1446
-0
lines changed

.env.example

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Add account credentials and API keys here.
2+
# This file should be listed in .gitignore to keep your settings secret!
3+
# Each entry sets a local environment variable.
4+
# For example, setting:
5+
# GMAIL_USERNAME=Your_Gmail_Username
6+
# makes 'Your_Gmail_Username' available as ENV["GMAIL_USERNAME"]
7+
8+
MANDRILL_USERNAME=Your_Username
9+
MANDRILL_APIKEY=Your_API_Key

.gitignore

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# bundler state
2+
/.bundle
3+
/vendor/bundle/
4+
/vendor/ruby/
5+
6+
# minimal Rails specific artifacts
7+
db/*.sqlite3
8+
/db/*.sqlite3-journal
9+
/log/*
10+
/tmp/*
11+
12+
# various artifacts
13+
**.war
14+
*.rbc
15+
*.sassc
16+
.rspec
17+
.redcar/
18+
.sass-cache
19+
/config/config.yml
20+
/config/database.yml
21+
/coverage.data
22+
/coverage/
23+
/db/*.javadb/
24+
/db/*.sqlite3
25+
/doc/api/
26+
/doc/app/
27+
/doc/features.html
28+
/doc/specs.html
29+
/public/cache
30+
/public/stylesheets/compiled
31+
/public/system/*
32+
/spec/tmp/*
33+
/cache
34+
/capybara*
35+
/capybara-*.html
36+
/gems
37+
/specifications
38+
rerun.txt
39+
pickle-email-*.html
40+
.zeus.sock
41+
42+
# If you find yourself ignoring temporary files generated by your text editor
43+
# or operating system, you probably want to add a global ignore instead:
44+
# git config --global core.excludesfile ~/.gitignore_global
45+
#
46+
# Here are some files you may want to ignore globally:
47+
48+
# scm revert files
49+
**.orig
50+
51+
# Mac finder artifacts
52+
.DS_Store
53+
54+
# Netbeans project directory
55+
/nbproject/
56+
57+
# RubyMine project files
58+
.idea
59+
60+
# Textmate project files
61+
/*.tmproj
62+
63+
# vim artifacts
64+
**.swp
65+
66+
# Environment files that may contain sensitive data
67+
.env
68+
.powenv

Gemfile

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
source 'https://rubygems.org'
2+
ruby '2.1.0'
3+
4+
gem 'rails', '4.1.0.rc2'
5+
gem 'sass-rails', '~> 4.0.2'
6+
gem 'uglifier', '>= 1.3.0'
7+
gem 'coffee-rails', '~> 4.0.0'
8+
gem 'jquery-rails'
9+
gem 'turbolinks'
10+
gem 'jbuilder', '~> 2.0'
11+
gem 'sdoc', '~> 0.4.0', group: :doc
12+
13+
gem 'pg'
14+
gem 'bcrypt-ruby'
15+
gem 'puma'
16+
17+
gem 'simple_form'
18+
gem 'slim-rails'
19+
gem 'bourbon'
20+
gem 'neat'
21+
gem 'font-awesome-rails'
22+
23+
group :development do
24+
gem 'spring'
25+
gem 'quiet_assets'
26+
gem 'rails_layout'
27+
gem 'rb-fchange', :require=>false
28+
gem 'rb-fsevent', :require=>false
29+
gem 'rb-inotify', :require=>false
30+
end
31+
32+
group :development, :test do
33+
gem 'spring-commands-rspec'
34+
gem 'guard-bundler'
35+
gem 'guard-rails'
36+
gem 'guard-rspec'
37+
gem 'factory_girl_rails'
38+
gem 'rspec-rails'
39+
gem 'dotenv'
40+
end
41+
42+
group :test do
43+
gem 'capybara'
44+
gem 'database_cleaner', '1.0.1'
45+
gem 'email_spec'
46+
# gem 'shoulda-matchers' # not ready for 4.1
47+
end

Gemfile.lock

+261
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,261 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actionmailer (4.1.0.rc2)
5+
actionpack (= 4.1.0.rc2)
6+
actionview (= 4.1.0.rc2)
7+
mail (~> 2.5.4)
8+
actionpack (4.1.0.rc2)
9+
actionview (= 4.1.0.rc2)
10+
activesupport (= 4.1.0.rc2)
11+
rack (~> 1.5.2)
12+
rack-test (~> 0.6.2)
13+
actionview (4.1.0.rc2)
14+
activesupport (= 4.1.0.rc2)
15+
builder (~> 3.1)
16+
erubis (~> 2.7.0)
17+
activemodel (4.1.0.rc2)
18+
activesupport (= 4.1.0.rc2)
19+
builder (~> 3.1)
20+
activerecord (4.1.0.rc2)
21+
activemodel (= 4.1.0.rc2)
22+
activesupport (= 4.1.0.rc2)
23+
arel (~> 5.0.0)
24+
activesupport (4.1.0.rc2)
25+
i18n (~> 0.6, >= 0.6.9)
26+
json (~> 1.7, >= 1.7.7)
27+
minitest (~> 5.1)
28+
thread_safe (~> 0.1)
29+
tzinfo (~> 1.1)
30+
addressable (2.3.6)
31+
arel (5.0.0)
32+
atomic (1.1.16)
33+
bcrypt (3.1.7)
34+
bcrypt-ruby (3.1.5)
35+
bcrypt (>= 3.1.3)
36+
bourbon (3.1.8)
37+
sass (>= 3.2.0)
38+
thor
39+
builder (3.2.2)
40+
capybara (2.2.1)
41+
mime-types (>= 1.16)
42+
nokogiri (>= 1.3.3)
43+
rack (>= 1.0.0)
44+
rack-test (>= 0.5.4)
45+
xpath (~> 2.0)
46+
celluloid (0.15.2)
47+
timers (~> 1.1.0)
48+
celluloid-io (0.15.0)
49+
celluloid (>= 0.15.0)
50+
nio4r (>= 0.5.0)
51+
coderay (1.1.0)
52+
coffee-rails (4.0.1)
53+
coffee-script (>= 2.2.0)
54+
railties (>= 4.0.0, < 5.0)
55+
coffee-script (2.2.0)
56+
coffee-script-source
57+
execjs
58+
coffee-script-source (1.7.0)
59+
database_cleaner (1.0.1)
60+
diff-lcs (1.2.5)
61+
dotenv (0.10.0)
62+
email_spec (1.5.0)
63+
launchy (~> 2.1)
64+
mail (~> 2.2)
65+
erubis (2.7.0)
66+
execjs (2.0.2)
67+
factory_girl (4.4.0)
68+
activesupport (>= 3.0.0)
69+
factory_girl_rails (4.4.1)
70+
factory_girl (~> 4.4.0)
71+
railties (>= 3.0.0)
72+
ffi (1.9.3)
73+
font-awesome-rails (4.0.3.1)
74+
railties (>= 3.2, < 5.0)
75+
formatador (0.2.4)
76+
guard (2.6.0)
77+
formatador (>= 0.2.4)
78+
listen (~> 2.7)
79+
lumberjack (~> 1.0)
80+
pry (>= 0.9.12)
81+
thor (>= 0.18.1)
82+
guard-bundler (2.0.0)
83+
bundler (~> 1.0)
84+
guard (~> 2.2)
85+
guard-rails (0.5.0)
86+
guard (>= 2.0.0)
87+
guard-rspec (4.2.8)
88+
guard (~> 2.1)
89+
rspec (>= 2.14, < 4.0)
90+
hike (1.2.3)
91+
i18n (0.6.9)
92+
jbuilder (2.0.5)
93+
activesupport (>= 3.0.0)
94+
multi_json (>= 1.2.0)
95+
jquery-rails (3.1.0)
96+
railties (>= 3.0, < 5.0)
97+
thor (>= 0.14, < 2.0)
98+
json (1.8.1)
99+
launchy (2.4.2)
100+
addressable (~> 2.3)
101+
listen (2.7.1)
102+
celluloid (>= 0.15.2)
103+
celluloid-io (>= 0.15.0)
104+
rb-fsevent (>= 0.9.3)
105+
rb-inotify (>= 0.9)
106+
lumberjack (1.0.5)
107+
mail (2.5.4)
108+
mime-types (~> 1.16)
109+
treetop (~> 1.4.8)
110+
method_source (0.8.2)
111+
mime-types (1.25.1)
112+
mini_portile (0.5.3)
113+
minitest (5.3.1)
114+
multi_json (1.9.2)
115+
neat (1.5.0)
116+
bourbon (>= 2.1)
117+
sass (>= 3.2)
118+
nio4r (1.0.0)
119+
nokogiri (1.6.1)
120+
mini_portile (~> 0.5.0)
121+
pg (0.17.1)
122+
polyglot (0.3.4)
123+
pry (0.9.12.6)
124+
coderay (~> 1.0)
125+
method_source (~> 0.8)
126+
slop (~> 3.4)
127+
puma (2.8.1)
128+
rack (>= 1.1, < 2.0)
129+
quiet_assets (1.0.2)
130+
railties (>= 3.1, < 5.0)
131+
rack (1.5.2)
132+
rack-test (0.6.2)
133+
rack (>= 1.0)
134+
rails (4.1.0.rc2)
135+
actionmailer (= 4.1.0.rc2)
136+
actionpack (= 4.1.0.rc2)
137+
actionview (= 4.1.0.rc2)
138+
activemodel (= 4.1.0.rc2)
139+
activerecord (= 4.1.0.rc2)
140+
activesupport (= 4.1.0.rc2)
141+
bundler (>= 1.3.0, < 2.0)
142+
railties (= 4.1.0.rc2)
143+
sprockets-rails (~> 2.0.0)
144+
rails_layout (1.0.13)
145+
railties (4.1.0.rc2)
146+
actionpack (= 4.1.0.rc2)
147+
activesupport (= 4.1.0.rc2)
148+
rake (>= 0.8.7)
149+
thor (>= 0.18.1, < 2.0)
150+
rake (10.2.2)
151+
rb-fchange (0.0.6)
152+
ffi
153+
rb-fsevent (0.9.4)
154+
rb-inotify (0.9.3)
155+
ffi (>= 0.5.0)
156+
rdoc (4.1.1)
157+
json (~> 1.4)
158+
rspec (2.14.1)
159+
rspec-core (~> 2.14.0)
160+
rspec-expectations (~> 2.14.0)
161+
rspec-mocks (~> 2.14.0)
162+
rspec-core (2.14.8)
163+
rspec-expectations (2.14.5)
164+
diff-lcs (>= 1.1.3, < 2.0)
165+
rspec-mocks (2.14.6)
166+
rspec-rails (2.14.2)
167+
actionpack (>= 3.0)
168+
activemodel (>= 3.0)
169+
activesupport (>= 3.0)
170+
railties (>= 3.0)
171+
rspec-core (~> 2.14.0)
172+
rspec-expectations (~> 2.14.0)
173+
rspec-mocks (~> 2.14.0)
174+
sass (3.2.18)
175+
sass-rails (4.0.2)
176+
railties (>= 4.0.0, < 5.0)
177+
sass (~> 3.2.0)
178+
sprockets (~> 2.8, <= 2.11.0)
179+
sprockets-rails (~> 2.0.0)
180+
sdoc (0.4.0)
181+
json (~> 1.8)
182+
rdoc (~> 4.0, < 5.0)
183+
simple_form (3.0.1)
184+
actionpack (>= 4.0.0, < 4.1)
185+
activemodel (>= 4.0.0, < 4.1)
186+
slim (2.0.2)
187+
temple (~> 0.6.6)
188+
tilt (>= 1.3.3, < 2.1)
189+
slim-rails (2.1.3)
190+
actionpack (>= 3.0, < 4.1)
191+
activesupport (>= 3.0, < 4.1)
192+
railties (>= 3.0, < 4.1)
193+
slim (~> 2.0)
194+
slop (3.5.0)
195+
spring (1.1.2)
196+
spring-commands-rspec (1.0.1)
197+
spring (>= 0.9.1)
198+
sprockets (2.11.0)
199+
hike (~> 1.2)
200+
multi_json (~> 1.0)
201+
rack (~> 1.0)
202+
tilt (~> 1.1, != 1.3.0)
203+
sprockets-rails (2.0.1)
204+
actionpack (>= 3.0)
205+
activesupport (>= 3.0)
206+
sprockets (~> 2.8)
207+
temple (0.6.7)
208+
thor (0.19.1)
209+
thread_safe (0.3.1)
210+
atomic (>= 1.1.7, < 2)
211+
tilt (1.4.1)
212+
timers (1.1.0)
213+
treetop (1.4.15)
214+
polyglot
215+
polyglot (>= 0.3.1)
216+
turbolinks (2.2.1)
217+
coffee-rails
218+
tzinfo (1.1.0)
219+
thread_safe (~> 0.1)
220+
uglifier (2.5.0)
221+
execjs (>= 0.3.0)
222+
json (>= 1.8.0)
223+
xpath (2.0.0)
224+
nokogiri (~> 1.3)
225+
226+
PLATFORMS
227+
ruby
228+
229+
DEPENDENCIES
230+
bcrypt-ruby
231+
bourbon
232+
capybara
233+
coffee-rails (~> 4.0.0)
234+
database_cleaner (= 1.0.1)
235+
dotenv
236+
email_spec
237+
factory_girl_rails
238+
font-awesome-rails
239+
guard-bundler
240+
guard-rails
241+
guard-rspec
242+
jbuilder (~> 2.0)
243+
jquery-rails
244+
neat
245+
pg
246+
puma
247+
quiet_assets
248+
rails (= 4.1.0.rc2)
249+
rails_layout
250+
rb-fchange
251+
rb-fsevent
252+
rb-inotify
253+
rspec-rails
254+
sass-rails (~> 4.0.2)
255+
sdoc (~> 0.4.0)
256+
simple_form
257+
slim-rails
258+
spring
259+
spring-commands-rspec
260+
turbolinks
261+
uglifier (>= 1.3.0)

0 commit comments

Comments
 (0)