Skip to content

Commit 1dd32aa

Browse files
committed
initial commit
0 parents  commit 1dd32aa

Some content is hidden

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

65 files changed

+1717
-0
lines changed

.rspec

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

.rvmrc

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
#!/usr/bin/env bash
2+
3+
# This is an RVM Project .rvmrc file, used to automatically load the ruby
4+
# development environment upon cd'ing into the directory
5+
6+
# First we specify our desired <ruby>[@<gemset>], the @gemset name is optional,
7+
# Only full ruby name is supported here, for short names use:
8+
# echo "rvm use 1.9.3" > .rvmrc
9+
environment_id="ruby-1.9.3@ember-rails-devise"
10+
11+
# Uncomment the following lines if you want to verify rvm version per project
12+
# rvmrc_rvm_version="1.14.2 (latest)" # 1.10.1 seams as a safe start
13+
# eval "$(echo ${rvm_version}.${rvmrc_rvm_version} | awk -F. '{print "[[ "$1*65536+$2*256+$3" -ge "$4*65536+$5*256+$6" ]]"}' )" || {
14+
# echo "This .rvmrc file requires at least RVM ${rvmrc_rvm_version}, aborting loading."
15+
# return 1
16+
# }
17+
18+
# First we attempt to load the desired environment directly from the environment
19+
# file. This is very fast and efficient compared to running through the entire
20+
# CLI and selector. If you want feedback on which environment was used then
21+
# insert the word 'use' after --create as this triggers verbose mode.
22+
if [[ -d "${rvm_path:-$HOME/.rvm}/environments"
23+
&& -s "${rvm_path:-$HOME/.rvm}/environments/$environment_id" ]]
24+
then
25+
\. "${rvm_path:-$HOME/.rvm}/environments/$environment_id"
26+
[[ -s "${rvm_path:-$HOME/.rvm}/hooks/after_use" ]] &&
27+
\. "${rvm_path:-$HOME/.rvm}/hooks/after_use" || true
28+
else
29+
# If the environment file has not yet been created, use the RVM CLI to select.
30+
rvm --create "$environment_id" || {
31+
echo "Failed to create RVM environment '${environment_id}'."
32+
return 1
33+
}
34+
fi
35+
36+
# If you use bundler, this might be useful to you:
37+
# if [[ -s Gemfile ]] && {
38+
# ! builtin command -v bundle >/dev/null ||
39+
# builtin command -v bundle | GREP_OPTIONS= \grep $rvm_path/bin/bundle >/dev/null
40+
# }
41+
# then
42+
# printf "%b" "The rubygem 'bundler' is not installed. Installing it now.\n"
43+
# gem install bundler
44+
# fi
45+
# if [[ -s Gemfile ]] && builtin command -v bundle >/dev/null
46+
# then
47+
# bundle install | GREP_OPTIONS= \grep -vE '^Using|Your bundle is complete'
48+
# fi

Gemfile

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
source 'https://rubygems.org'
2+
gem 'rails', '3.2.11'
3+
gem 'sqlite3'
4+
group :assets do
5+
gem 'sass-rails', '~> 3.2.3'
6+
gem 'coffee-rails', '~> 3.2.1'
7+
gem 'uglifier', '>= 1.0.3'
8+
end
9+
gem 'jquery-rails'
10+
gem "thin", ">= 1.5.0", :group => [:development, :test]
11+
gem "haml", ">= 3.1.7"
12+
gem "haml-rails", ">= 0.3.5", :group => :development
13+
gem "hpricot", ">= 0.8.6", :group => :development
14+
gem "ruby_parser", ">= 3.1.1", :group => :development
15+
gem "rspec-rails", ">= 2.12.2", :group => [:development, :test]
16+
gem "capybara", ">= 2.0.2", :group => :test
17+
gem "database_cleaner", ">= 0.9.1", :group => :test
18+
gem "email_spec", ">= 1.4.0", :group => :test
19+
gem "factory_girl_rails", ">= 4.2.0", :group => [:development, :test]
20+
gem "bootstrap-sass", ">= 2.2.2.0"
21+
gem "devise", ">= 2.2.3"
22+
gem "cancan", ">= 1.6.8"
23+
gem "rolify", ">= 3.2.0"
24+
gem "active_model_serializers"
25+
gem "ember-rails"
26+
gem "quiet_assets", ">= 1.0.1", :group => :development
27+
gem "figaro", ">= 0.5.3"
28+
gem "better_errors", ">= 0.3.2", :group => :development
29+
gem "binding_of_caller", ">= 0.6.8", :group => :development

Gemfile.lock

+223
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,223 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actionmailer (3.2.11)
5+
actionpack (= 3.2.11)
6+
mail (~> 2.4.4)
7+
actionpack (3.2.11)
8+
activemodel (= 3.2.11)
9+
activesupport (= 3.2.11)
10+
builder (~> 3.0.0)
11+
erubis (~> 2.7.0)
12+
journey (~> 1.0.4)
13+
rack (~> 1.4.0)
14+
rack-cache (~> 1.2)
15+
rack-test (~> 0.6.1)
16+
sprockets (~> 2.2.1)
17+
active_model_serializers (0.6.0)
18+
activemodel (>= 3.0)
19+
activemodel (3.2.11)
20+
activesupport (= 3.2.11)
21+
builder (~> 3.0.0)
22+
activerecord (3.2.11)
23+
activemodel (= 3.2.11)
24+
activesupport (= 3.2.11)
25+
arel (~> 3.0.2)
26+
tzinfo (~> 0.3.29)
27+
activeresource (3.2.11)
28+
activemodel (= 3.2.11)
29+
activesupport (= 3.2.11)
30+
activesupport (3.2.11)
31+
i18n (~> 0.6)
32+
multi_json (~> 1.0)
33+
addressable (2.3.2)
34+
arel (3.0.2)
35+
barber (0.2.0)
36+
execjs
37+
bcrypt-ruby (3.0.1)
38+
better_errors (0.3.2)
39+
coderay (>= 1.0.0)
40+
erubis (>= 2.7.0)
41+
binding_of_caller (0.6.8)
42+
bootstrap-sass (2.2.2.0)
43+
sass (~> 3.2)
44+
builder (3.0.4)
45+
cancan (1.6.8)
46+
capybara (2.0.2)
47+
mime-types (>= 1.16)
48+
nokogiri (>= 1.3.3)
49+
rack (>= 1.0.0)
50+
rack-test (>= 0.5.4)
51+
selenium-webdriver (~> 2.0)
52+
xpath (~> 1.0.0)
53+
childprocess (0.3.7)
54+
ffi (~> 1.0, >= 1.0.6)
55+
coderay (1.0.8)
56+
coffee-rails (3.2.2)
57+
coffee-script (>= 2.2.0)
58+
railties (~> 3.2.0)
59+
coffee-script (2.2.0)
60+
coffee-script-source
61+
execjs
62+
coffee-script-source (1.4.0)
63+
daemons (1.1.9)
64+
database_cleaner (0.9.1)
65+
devise (2.2.3)
66+
bcrypt-ruby (~> 3.0)
67+
orm_adapter (~> 0.1)
68+
railties (~> 3.1)
69+
warden (~> 1.2.1)
70+
diff-lcs (1.1.3)
71+
email_spec (1.4.0)
72+
launchy (~> 2.1)
73+
mail (~> 2.2)
74+
ember-rails (0.9.2)
75+
active_model_serializers
76+
barber
77+
execjs (>= 1.2)
78+
railties (>= 3.1)
79+
erubis (2.7.0)
80+
eventmachine (1.0.0)
81+
execjs (1.4.0)
82+
multi_json (~> 1.0)
83+
factory_girl (4.2.0)
84+
activesupport (>= 3.0.0)
85+
factory_girl_rails (4.2.0)
86+
factory_girl (~> 4.2.0)
87+
railties (>= 3.0.0)
88+
ffi (1.3.1)
89+
figaro (0.5.3)
90+
rails (~> 3.0)
91+
haml (3.1.7)
92+
haml-rails (0.3.5)
93+
actionpack (>= 3.1, < 4.1)
94+
activesupport (>= 3.1, < 4.1)
95+
haml (~> 3.1)
96+
railties (>= 3.1, < 4.1)
97+
hike (1.2.1)
98+
hpricot (0.8.6)
99+
i18n (0.6.1)
100+
journey (1.0.4)
101+
jquery-rails (2.2.0)
102+
railties (>= 3.0, < 5.0)
103+
thor (>= 0.14, < 2.0)
104+
json (1.7.6)
105+
launchy (2.1.2)
106+
addressable (~> 2.3)
107+
mail (2.4.4)
108+
i18n (>= 0.4.0)
109+
mime-types (~> 1.16)
110+
treetop (~> 1.4.8)
111+
mime-types (1.19)
112+
multi_json (1.5.0)
113+
nokogiri (1.5.6)
114+
orm_adapter (0.4.0)
115+
polyglot (0.3.3)
116+
quiet_assets (1.0.1)
117+
railties (~> 3.1)
118+
rack (1.4.4)
119+
rack-cache (1.2)
120+
rack (>= 0.4)
121+
rack-ssl (1.3.3)
122+
rack
123+
rack-test (0.6.2)
124+
rack (>= 1.0)
125+
rails (3.2.11)
126+
actionmailer (= 3.2.11)
127+
actionpack (= 3.2.11)
128+
activerecord (= 3.2.11)
129+
activeresource (= 3.2.11)
130+
activesupport (= 3.2.11)
131+
bundler (~> 1.0)
132+
railties (= 3.2.11)
133+
railties (3.2.11)
134+
actionpack (= 3.2.11)
135+
activesupport (= 3.2.11)
136+
rack-ssl (~> 1.3.2)
137+
rake (>= 0.8.7)
138+
rdoc (~> 3.4)
139+
thor (>= 0.14.6, < 2.0)
140+
rake (10.0.3)
141+
rdoc (3.12)
142+
json (~> 1.4)
143+
rolify (3.2.0)
144+
rspec-core (2.12.2)
145+
rspec-expectations (2.12.1)
146+
diff-lcs (~> 1.1.3)
147+
rspec-mocks (2.12.2)
148+
rspec-rails (2.12.2)
149+
actionpack (>= 3.0)
150+
activesupport (>= 3.0)
151+
railties (>= 3.0)
152+
rspec-core (~> 2.12.0)
153+
rspec-expectations (~> 2.12.0)
154+
rspec-mocks (~> 2.12.0)
155+
ruby_parser (3.1.1)
156+
sexp_processor (~> 4.1)
157+
rubyzip (0.9.9)
158+
sass (3.2.5)
159+
sass-rails (3.2.6)
160+
railties (~> 3.2.0)
161+
sass (>= 3.1.10)
162+
tilt (~> 1.3)
163+
selenium-webdriver (2.29.0)
164+
childprocess (>= 0.2.5)
165+
multi_json (~> 1.0)
166+
rubyzip
167+
websocket (~> 1.0.4)
168+
sexp_processor (4.1.4)
169+
sprockets (2.2.2)
170+
hike (~> 1.2)
171+
multi_json (~> 1.0)
172+
rack (~> 1.0)
173+
tilt (~> 1.1, != 1.3.0)
174+
sqlite3 (1.3.7)
175+
thin (1.5.0)
176+
daemons (>= 1.0.9)
177+
eventmachine (>= 0.12.6)
178+
rack (>= 1.0.0)
179+
thor (0.17.0)
180+
tilt (1.3.3)
181+
treetop (1.4.12)
182+
polyglot
183+
polyglot (>= 0.3.1)
184+
tzinfo (0.3.35)
185+
uglifier (1.3.0)
186+
execjs (>= 0.3.0)
187+
multi_json (~> 1.0, >= 1.0.2)
188+
warden (1.2.1)
189+
rack (>= 1.0)
190+
websocket (1.0.7)
191+
xpath (1.0.0)
192+
nokogiri (~> 1.3)
193+
194+
PLATFORMS
195+
ruby
196+
197+
DEPENDENCIES
198+
active_model_serializers
199+
better_errors (>= 0.3.2)
200+
binding_of_caller (>= 0.6.8)
201+
bootstrap-sass (>= 2.2.2.0)
202+
cancan (>= 1.6.8)
203+
capybara (>= 2.0.2)
204+
coffee-rails (~> 3.2.1)
205+
database_cleaner (>= 0.9.1)
206+
devise (>= 2.2.3)
207+
email_spec (>= 1.4.0)
208+
ember-rails
209+
factory_girl_rails (>= 4.2.0)
210+
figaro (>= 0.5.3)
211+
haml (>= 3.1.7)
212+
haml-rails (>= 0.3.5)
213+
hpricot (>= 0.8.6)
214+
jquery-rails
215+
quiet_assets (>= 1.0.1)
216+
rails (= 3.2.11)
217+
rolify (>= 3.2.0)
218+
rspec-rails (>= 2.12.2)
219+
ruby_parser (>= 3.1.1)
220+
sass-rails (~> 3.2.3)
221+
sqlite3
222+
thin (>= 1.5.0)
223+
uglifier (>= 1.0.3)

README

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Ember Rails Devise
2+
========================
3+
4+
This application was generated with the rails_apps_composer gem:
5+
https://github.com/RailsApps/rails_apps_composer
6+
provided by the RailsApps Project:
7+
http://railsapps.github.com/
8+
9+
________________________
10+
11+
Recipes:
12+
["controllers", "email", "extras", "frontend", "gems", "models", "readme", "routes", "setup", "testing", "views"]
13+
14+
Preferences:
15+
{:dev_webserver=>"thin", :prod_webserver=>nil, :database=>"sqlite", :templates=>"haml", :unit_test=>"rspec", :integration=>"rspec-capybara", :fixtures=>"factory_girl", :frontend=>"bootstrap", :bootstrap=>"sass", :form_builder=>"none", :email=>"none", :authentication=>"devise", :devise_modules=>"default", :authorization=>"cancan", :quiet_assets=>true, :local_env_file=>true, :better_errors=>true, :ban_spiders=>true, :rvmrc=>true, :github=>false, :starter_app=>"none"}
16+
17+
________________________
18+
19+
License

0 commit comments

Comments
 (0)