-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrails-application-templates.html
193 lines (191 loc) · 12.3 KB
/
rails-application-templates.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Rails Application Template Projects</title>
<link rel="stylesheet" href="/css/screen.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="/css/gollum.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="/css/syntax.css" type="text/css" charset="utf-8" />
<script src="http://code.jquery.com/jquery-1.6.min.js" type="text/javascript"></script>
<script src="/javascript/jquery.text_selection-1.0.0.min.js" type="text/javascript"></script>
<script src="/javascript/jquery.previewable_comment_form.js" type="text/javascript"></script>
<script src="/javascript/jquery.tabs.js" type="text/javascript"></script>
<script src="/javascript/gollum.js" type="text/javascript"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-5109366-14']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="main">
<div class="site">
<div id="guides">
<div class="guide">
<div class="main">
<div class="actions">
<a href="http://railsapps.github.com/"><img src="http://railsapps.github.com/images/rails-36x36.jpg" title="Home" alt="Home"></a>
<a href="http://railsapps.github.com/">Rails Apps</a>
<a href="https://github.com/RailsApps">GitHub Repository</a>
</div><!-- class="actions" -->
<h1>Rails Application Template Projects</h1>
<div class="content wikistyle gollum textile">
<h1>Rails Application Template Projects</h1>
<p>Rails application templates are Ruby scripts used with the <code>"rails new app_name -m"</code> command to generate a Rails web application. They are often used to generate “starter apps” that can be the basis of many development projects.</p>
<p>Many developers have developed Rails application templates. This is a list of notable projects.</p>
<p>Also see an annotated list of <a class="internal present" href="/rails-examples-tutorials.html">Rails Examples, Tutorials, and Starter Apps</a>.</p>
<h2>Application template-generating website</h2>
<p>Visit this website to select “recipes” and generate an application template and a starter app.</p>
<table>
<tr><th>Author </th>
<th>Site </th>
<th>Comments </th>
</tr>
<tr><td> Michael Bleigh </td>
<td> <a href="http://railswizard.org/">RailsWizard</a> </td>
<td> numerous options </td>
</tr>
</table><h2>Application template-generating gems</h2>
<p>Install these gems to generate an application template and a starter app.</p>
<p>Some have a collection of “recipes”. Fork the gem and edit the recipes for a custom app template.</p>
<table>
<tr><th>Author </th>
<th>Gem </th>
<th>Comments </th>
</tr>
<tr><td> Daniel Kehoe </td>
<td> <a href="https://github.com/RailsApps/rails_apps_composer">Rails Apps Composer</a> </td>
<td> A fork of the <a href="https://github.com/intridea/rails_wizard">RailsWizard</a> gem; many recipes</td>
</tr>
<tr><td> Michael Bleigh </td>
<td> <a href="https://github.com/intridea/rails_wizard">RailsWizard</a> </td>
<td> Built for the <a href="http://railswizard.org/">RailsWizard</a> website; many recipes </td>
</tr>
<tr><td> Kevin Faustino </td>
<td> <a href="https://github.com/kfaustino/rails-templater">Rails Templater</a> </td>
<td> Mongoid or ActiveRecord </td>
</tr>
<tr><td> Kristian Mandrup </td>
<td> <a href="https://github.com/kristianmandrup/cream">Cream</a> </td>
<td> Devise, CanCan, roles, many ORMs </td>
</tr>
<tr><td> Quick Left </td>
<td> <a href="https://github.com/quickleft/prologue">Prologue</a> </td>
<td> Devise, CanCan, ActiveRecord only, many recipes </td>
</tr>
<tr><td> Thoughtbot </td>
<td> <a href="https://github.com/thoughtbot/suspenders">Suspenders</a> </td>
<td> ActiveRecord only, no recipes </td>
</tr>
</table><h2>Rails application template projects</h2>
<p>Use these scripts with the <code>"rails new app_name -m"</code> command to generate an application.</p>
<p>You can find a collection of application templates that were created with the <a href="https://github.com/RailsApps/rails_apps_composer">Rails Apps Composer</a> gem here. All were updated for Rails 3.1 in June 2011.</p>
<ul><li><a href="https://github.com/RailsApps/rails3-application-templates">Rails Application Templates</a> from the <a href="https://github.com/RailsApps/rails_apps_composer">Rails Apps Composer</a></li>
</ul><blockquote>
<p>Devise or OmniAuth, ActiveRecord or Mongoid. Options for RSpec, Cucumber, Factory Girl, jQuery, Haml. Uses subtemplates for easy customizing.</p>
</blockquote>
<p>These projects were updated in 2011 and use Devise for authentication:</p>
<ul><li><a href="https://github.com/greendog99/greendog-rails-template">greendog99/greendog-rails-template</a></li>
</ul><blockquote>
<p>Devise, RSpec, Factory Girl, jQuery, Haml, Sass, Compass, Git, rvm, HTML5 Boilerplate, plus a layout. Uses subtemplates for easy customizing.</p>
</blockquote>
<ul><li><a href="https://github.com/dcrec1/rails3_template">dcrec1/rails3_template</a></li>
</ul><blockquote>
<p>Devise (with Cucumber steps), Cucumber, RSpec, Factory Girl, Haml, Compass, jQuery, Git, Formtastic, a layout, and much more. Uses subtemplates for easy customizing.</p>
</blockquote>
<ul><li><a href="https://github.com/aentos/rails3-templates">aentos/rails3-templates</a></li>
</ul><blockquote>
<p>Devise or Authlogic or OmniAuth, Cucumber, Capybara, RSpec, Factory Girl, Shoulda, jQuery, Haml, Compass, 960 grid or Blueprint, Capistrano or Heroku or Inploy, Git, plus a layout. Uses subtemplates for easy customizing.</p>
</blockquote>
<ul><li><a href="https://github.com/rubyx/rails3_template">rubyx/rails3_template</a></li>
</ul><blockquote>
<p>PostgreSQL, Devise, Cucumber with Selenium and Capybara, RSpec with Machinist and Faker, JQuery, Simple Form, Haml, <span class="caps">SASS</span>, Git, rvm, Google analytics (optional), Hoptoad for issue tracking (optional), TellThemWhen for downtime notifications (optional). With a description of the recipe in the <span class="caps">README</span>.</p>
</blockquote>
<p>These projects were updated in 2010 and use Devise:</p>
<ul><li><a href="https://github.com/kenton/rails3-templates">kenton/rails3-templates</a></li>
</ul><blockquote>
<p>Devise, RSpec, Cucumber with Capybara, Factory Girl, jQuery, Simple Form, Git, rvm. Uses subtemplates for easy customizing.</p>
</blockquote>
<ul><li><a href="https://github.com/graemenelson/rails3-template">graemenelson/rails3-template</a></li>
</ul><blockquote>
<p>Devise, Cucumber, Shoulda with Factory Girl and Mocha, Haml, Sass, Formtastic, jQuery, Git, rvm.</p>
</blockquote>
<p>This project was updated in 2010 and uses Mongoid:</p>
<ul><li><a href="https://github.com/madebydna/rails-templater">madebydna/rails-templater</a></li>
</ul><blockquote>
<p>Mongoid or ActiveRecord, RSpec, FactoryGirl, Cucumber (with Mongoid steps), jQuery, Haml, Sass, Compass. Uses subtemplates for easy customizing.</p>
</blockquote>
<p>These projects were updated in 2011 and do not use Devise or Mongoid:</p>
<ul><li><a href="https://github.com/perfectline/template-bucket">perfectline/template-bucket</a></li>
</ul><blockquote>
<p>Cucumber, RSpec, jQuery, Haml or Jammit, Capistrano, Git, rvm, plus a layout. Uses subtemplates for easy customizing.</p>
</blockquote>
<ul><li><a href="https://github.com/leshill/rails3-app">leshill/rails3-app</a></li>
</ul><blockquote>
<p>Cucumber, RSpec, Factory Girl or Fabrication, Haml, jQuery, Git, rvm.</p>
</blockquote>
<ul><li><a href="https://github.com/shawn/shawns-rails3-template/">shawn/shawns-rails3-template</a></li>
</ul><blockquote>
<p>Haml, Sass, Git, plus a layout.</p>
</blockquote>
<p>These Rails 2.3 projects were once popular but haven’t been updated since 2009 or 2010:</p>
<ul><li><a href="https://github.com/jm/rails-templates">jm/rails-templates</a></li>
<li><a href="https://github.com/ffmike/BigOldRailsTemplate">ffmike/BigOldRailsTemplate</a></li>
</ul><h2>Ruby Toolbox Ranking</h2>
<p>For a ranking of some older application templates by popularity, see:<br /><a href="http://ruby-toolbox.com/categories/rails_app_templates.html">The Ruby Toolbox: Rails App Templates</a></p>
</div><!-- class="content" -->
<div class="comments">
<div class="content wikistyle gollum">
<h2>Comments</h2>
</div>
<p>Is this helpful? Please "like" below. Question or suggestion? Please add a comment below. Got a correction or addition? You can edit this page <a href="https://github.com/railsapps/railsapps.github.com/wiki/_pages">on the wiki</a> or create a <a href="https://github.com/RailsApps/railsapps.github.com/issues">GitHub issue</a> to alert me.</p>
<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'railsapps'; // required: replace example with your forum shortname
// The following are highly recommended additional parameters.
// var disqus_identifier = 'rails-application-templates.html';
// var disqus_url = 'http://railsapps.github.com/rails-application-templates.html';
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
</div><!-- class="comments" -->
<br />
<br />
<div class="credits">
<div class="content wikistyle gollum">
<h2>Credits</h2>
</div>
<p>Daniel Kehoe (<a href="http://danielkehoe.com/">http://danielkehoe.com/</a>) initiated the project and wrote some examples and tutorials.</p>
<p>Your contributions are welcome!</p>
</div><!-- class="credits" -->
<div class="admin">
<small>Corrections? Additions? You can edit this page <a href="https://github.com/railsapps/railsapps.github.com/wiki/_pages">on the wiki</a>.</small>
<div style="float: right;">
<small>Last edited by <b>Daniel Kehoe</b>, 2011-09-01 12:24:10</small>
</div>
</div><!-- class="admin" -->
</div><!-- class="main" -->
</div><!-- class="guide" -->
</div><!-- id="guides" -->
</div><!-- class="site" -->
</div><!-- id="main" -->
<!-- MixPanel analytics -->
<script type='text/javascript'> var mp_protocol = (('https:' == document.location.protocol) ? 'https://' : 'http://'); document.write(unescape('%3Cscript src="' + mp_protocol + 'api.mixpanel.com/site_media/js/api/mixpanel.js" type="text/javascript"%3E%3C/script%3E')); </script> <script type='text/javascript'> try { var mpmetrics = new MixpanelLib('b1cf97418f8c5b129847e8a52edbae68'); } catch(err) { null_fn = function () {}; var mpmetrics = { track: null_fn, track_funnel: null_fn, register: null_fn, register_once: null_fn, register_funnel: null_fn }; } </script>
<!-- Clicky analytics -->
<script src="//static.getclicky.com/js" type="text/javascript"></script>
<script type="text/javascript">try{ clicky.init(66423523); }catch(e){}</script>
<noscript><p><img alt="Clicky" width="1" height="1" src="//in.getclicky.com/66423523ns.gif" /></p></noscript>
</body>
</html>