noodall 0.0.1 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/noodall +8 -0
- data/lib/noodall/generator.rb +40 -0
- data/lib/noodall/templates/Gemfile +23 -0
- data/lib/noodall/templates/README +256 -0
- data/lib/noodall/templates/Rakefile +7 -0
- data/lib/noodall/templates/app/controllers/application_controller.rb +3 -0
- data/lib/noodall/templates/app/helpers/application_helper.rb +58 -0
- data/lib/noodall/templates/app/mailers/.empty_directory +0 -0
- data/lib/noodall/templates/app/models/.empty_directory +0 -0
- data/lib/noodall/templates/app/views/layouts/application.html.erb.tt +19 -0
- data/lib/noodall/templates/config/application.rb +49 -0
- data/lib/noodall/templates/config/boot.rb +13 -0
- data/lib/noodall/templates/config/cucumber.yml +8 -0
- data/lib/noodall/templates/config/database.yml +11 -0
- data/lib/noodall/templates/config/environment.rb +5 -0
- data/lib/noodall/templates/config/environments/development.rb.tt +27 -0
- data/lib/noodall/templates/config/environments/production.rb.tt +50 -0
- data/lib/noodall/templates/config/environments/staging.rb.tt +50 -0
- data/lib/noodall/templates/config/environments/test.rb.tt +36 -0
- data/lib/noodall/templates/config/initializers/backtrace_silencers.rb +7 -0
- data/lib/noodall/templates/config/initializers/devise.rb.tt +143 -0
- data/lib/noodall/templates/config/initializers/inflections.rb +10 -0
- data/lib/noodall/templates/config/initializers/mime_types.rb +5 -0
- data/lib/noodall/templates/config/initializers/mongo_mapper.rb +11 -0
- data/lib/noodall/templates/config/initializers/noodall.rb +3 -0
- data/lib/noodall/templates/config/initializers/secret_token.rb.tt +7 -0
- data/lib/noodall/templates/config/initializers/session_store.rb.tt +8 -0
- data/lib/noodall/templates/config/locales/devise.en.yml +39 -0
- data/lib/noodall/templates/config/locales/en.yml +5 -0
- data/lib/noodall/templates/config/routes.rb +9 -0
- data/lib/noodall/templates/config.ru +4 -0
- data/lib/noodall/templates/db/seeds.rb +10 -0
- data/lib/noodall/templates/doc/README_FOR_APP +2 -0
- data/lib/noodall/templates/features/component_slots.feature +15 -0
- data/lib/noodall/templates/features/content_templates.feature +22 -0
- data/lib/noodall/templates/features/step_definitions/cms_node_steps.rb +84 -0
- data/lib/noodall/templates/features/step_definitions/component_steps.rb +46 -0
- data/lib/noodall/templates/features/step_definitions/sign_in_steps.rb +48 -0
- data/lib/noodall/templates/features/step_definitions/web_steps.rb +219 -0
- data/lib/noodall/templates/features/support/env.rb +53 -0
- data/lib/noodall/templates/features/support/home_page.rb +4 -0
- data/lib/noodall/templates/features/support/paths.rb +35 -0
- data/lib/noodall/templates/gitignore +4 -0
- data/lib/noodall/templates/public/404.html +26 -0
- data/lib/noodall/templates/public/422.html +26 -0
- data/lib/noodall/templates/public/500.html +26 -0
- data/lib/noodall/templates/public/favicon.ico +0 -0
- data/lib/noodall/templates/public/images/rails.png +0 -0
- data/lib/noodall/templates/public/index.html +239 -0
- data/lib/noodall/templates/public/javascripts/application.js +2 -0
- data/lib/noodall/templates/public/javascripts/controls.js +965 -0
- data/lib/noodall/templates/public/javascripts/dragdrop.js +974 -0
- data/lib/noodall/templates/public/javascripts/effects.js +1123 -0
- data/lib/noodall/templates/public/javascripts/prototype.js +6001 -0
- data/lib/noodall/templates/public/robots.txt +5 -0
- data/lib/noodall/templates/public/stylesheets/.empty_directory +0 -0
- data/lib/noodall/templates/script/cucumber +10 -0
- data/lib/noodall/templates/script/rails +5 -0
- data/lib/noodall/templates/spec/factories/asset.rb +6 -0
- data/lib/noodall/templates/spec/factories/home.rb +5 -0
- data/lib/noodall/templates/spec/factories/user.rb +15 -0
- data/lib/noodall/templates/spec/files/beef.png +0 -0
- data/lib/noodall/templates/spec/files/test.pdf +0 -0
- data/lib/noodall/version.rb +1 -1
- data/noodall.gemspec +4 -3
- metadata +91 -12
data/bin/noodall
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
require 'rails/generators'
|
2
|
+
require 'rails/generators/rails/app/app_generator'
|
3
|
+
require 'generators/rspec/install/install_generator'
|
4
|
+
require 'generators/devise/install_generator'
|
5
|
+
require 'generators/cucumber/install/install_generator'
|
6
|
+
|
7
|
+
module Noodall
|
8
|
+
|
9
|
+
class AppBuilder < Rails::AppBuilder
|
10
|
+
|
11
|
+
def database_yml
|
12
|
+
template "config/database.yml", "config/database.yml"
|
13
|
+
end
|
14
|
+
|
15
|
+
def javascripts
|
16
|
+
copy_file "public/javascripts/application.js"
|
17
|
+
end
|
18
|
+
|
19
|
+
def test
|
20
|
+
directory 'features'
|
21
|
+
directory 'spec'
|
22
|
+
end
|
23
|
+
|
24
|
+
end
|
25
|
+
|
26
|
+
class AppGenerator < Rails::Generators::AppGenerator
|
27
|
+
|
28
|
+
def self.source_root
|
29
|
+
@_source_root ||= File.expand_path('../templates', __FILE__)
|
30
|
+
end
|
31
|
+
|
32
|
+
def builder
|
33
|
+
@builder ||= begin
|
34
|
+
builder_class = AppBuilder
|
35
|
+
builder_class.send(:include, Rails::ActionMethods)
|
36
|
+
builder_class.new(self)
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
source 'http://rubygems.org'
|
2
|
+
|
3
|
+
gem 'rails', '3.0.1'
|
4
|
+
gem 'noodall-ui', :path => "~/Gems/noodall-ui"
|
5
|
+
gem 'noodall-devise', :path => "~/Gems/noodall-devise"
|
6
|
+
gem 'bson_ext', '~> 1.0.9'
|
7
|
+
gem 'rmagick', :require => 'RMagick'
|
8
|
+
gem 'dragonfly', '~> 0.7.6'
|
9
|
+
|
10
|
+
|
11
|
+
group :development, :test do
|
12
|
+
gem 'capybara'
|
13
|
+
gem 'database_cleaner'
|
14
|
+
gem 'cucumber-rails'
|
15
|
+
gem 'cucumber'
|
16
|
+
gem 'rspec-rails', "~> 2.0.0.beta.22"
|
17
|
+
gem 'spork'
|
18
|
+
gem 'launchy' # So you can do Then show me the page
|
19
|
+
gem 'jeweler', '~> 1.4.0'
|
20
|
+
gem 'factory_girl_rails'
|
21
|
+
gem "faker", "~> 0.3.1"
|
22
|
+
gem "haml"
|
23
|
+
end
|
@@ -0,0 +1,256 @@
|
|
1
|
+
== Welcome to Rails
|
2
|
+
|
3
|
+
Rails is a web-application framework that includes everything needed to create
|
4
|
+
database-backed web applications according to the Model-View-Control pattern.
|
5
|
+
|
6
|
+
This pattern splits the view (also called the presentation) into "dumb"
|
7
|
+
templates that are primarily responsible for inserting pre-built data in between
|
8
|
+
HTML tags. The model contains the "smart" domain objects (such as Account,
|
9
|
+
Product, Person, Post) that holds all the business logic and knows how to
|
10
|
+
persist themselves to a database. The controller handles the incoming requests
|
11
|
+
(such as Save New Account, Update Product, Show Post) by manipulating the model
|
12
|
+
and directing data to the view.
|
13
|
+
|
14
|
+
In Rails, the model is handled by what's called an object-relational mapping
|
15
|
+
layer entitled Active Record. This layer allows you to present the data from
|
16
|
+
database rows as objects and embellish these data objects with business logic
|
17
|
+
methods. You can read more about Active Record in
|
18
|
+
link:files/vendor/rails/activerecord/README.html.
|
19
|
+
|
20
|
+
The controller and view are handled by the Action Pack, which handles both
|
21
|
+
layers by its two parts: Action View and Action Controller. These two layers
|
22
|
+
are bundled in a single package due to their heavy interdependence. This is
|
23
|
+
unlike the relationship between the Active Record and Action Pack that is much
|
24
|
+
more separate. Each of these packages can be used independently outside of
|
25
|
+
Rails. You can read more about Action Pack in
|
26
|
+
link:files/vendor/rails/actionpack/README.html.
|
27
|
+
|
28
|
+
|
29
|
+
== Getting Started
|
30
|
+
|
31
|
+
1. At the command prompt, create a new Rails application:
|
32
|
+
<tt>rails new myapp</tt> (where <tt>myapp</tt> is the application name)
|
33
|
+
|
34
|
+
2. Change directory to <tt>myapp</tt> and start the web server:
|
35
|
+
<tt>cd myapp; rails server</tt> (run with --help for options)
|
36
|
+
|
37
|
+
3. Go to http://localhost:3000/ and you'll see:
|
38
|
+
"Welcome aboard: You're riding Ruby on Rails!"
|
39
|
+
|
40
|
+
4. Follow the guidelines to start developing your application. You can find
|
41
|
+
the following resources handy:
|
42
|
+
|
43
|
+
* The Getting Started Guide: http://guides.rubyonrails.org/getting_started.html
|
44
|
+
* Ruby on Rails Tutorial Book: http://www.railstutorial.org/
|
45
|
+
|
46
|
+
|
47
|
+
== Debugging Rails
|
48
|
+
|
49
|
+
Sometimes your application goes wrong. Fortunately there are a lot of tools that
|
50
|
+
will help you debug it and get it back on the rails.
|
51
|
+
|
52
|
+
First area to check is the application log files. Have "tail -f" commands
|
53
|
+
running on the server.log and development.log. Rails will automatically display
|
54
|
+
debugging and runtime information to these files. Debugging info will also be
|
55
|
+
shown in the browser on requests from 127.0.0.1.
|
56
|
+
|
57
|
+
You can also log your own messages directly into the log file from your code
|
58
|
+
using the Ruby logger class from inside your controllers. Example:
|
59
|
+
|
60
|
+
class WeblogController < ActionController::Base
|
61
|
+
def destroy
|
62
|
+
@weblog = Weblog.find(params[:id])
|
63
|
+
@weblog.destroy
|
64
|
+
logger.info("#{Time.now} Destroyed Weblog ID ##{@weblog.id}!")
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
The result will be a message in your log file along the lines of:
|
69
|
+
|
70
|
+
Mon Oct 08 14:22:29 +1000 2007 Destroyed Weblog ID #1!
|
71
|
+
|
72
|
+
More information on how to use the logger is at http://www.ruby-doc.org/core/
|
73
|
+
|
74
|
+
Also, Ruby documentation can be found at http://www.ruby-lang.org/. There are
|
75
|
+
several books available online as well:
|
76
|
+
|
77
|
+
* Programming Ruby: http://www.ruby-doc.org/docs/ProgrammingRuby/ (Pickaxe)
|
78
|
+
* Learn to Program: http://pine.fm/LearnToProgram/ (a beginners guide)
|
79
|
+
|
80
|
+
These two books will bring you up to speed on the Ruby language and also on
|
81
|
+
programming in general.
|
82
|
+
|
83
|
+
|
84
|
+
== Debugger
|
85
|
+
|
86
|
+
Debugger support is available through the debugger command when you start your
|
87
|
+
Mongrel or WEBrick server with --debugger. This means that you can break out of
|
88
|
+
execution at any point in the code, investigate and change the model, and then,
|
89
|
+
resume execution! You need to install ruby-debug to run the server in debugging
|
90
|
+
mode. With gems, use <tt>sudo gem install ruby-debug</tt>. Example:
|
91
|
+
|
92
|
+
class WeblogController < ActionController::Base
|
93
|
+
def index
|
94
|
+
@posts = Post.find(:all)
|
95
|
+
debugger
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
99
|
+
So the controller will accept the action, run the first line, then present you
|
100
|
+
with a IRB prompt in the server window. Here you can do things like:
|
101
|
+
|
102
|
+
>> @posts.inspect
|
103
|
+
=> "[#<Post:0x14a6be8
|
104
|
+
@attributes={"title"=>nil, "body"=>nil, "id"=>"1"}>,
|
105
|
+
#<Post:0x14a6620
|
106
|
+
@attributes={"title"=>"Rails", "body"=>"Only ten..", "id"=>"2"}>]"
|
107
|
+
>> @posts.first.title = "hello from a debugger"
|
108
|
+
=> "hello from a debugger"
|
109
|
+
|
110
|
+
...and even better, you can examine how your runtime objects actually work:
|
111
|
+
|
112
|
+
>> f = @posts.first
|
113
|
+
=> #<Post:0x13630c4 @attributes={"title"=>nil, "body"=>nil, "id"=>"1"}>
|
114
|
+
>> f.
|
115
|
+
Display all 152 possibilities? (y or n)
|
116
|
+
|
117
|
+
Finally, when you're ready to resume execution, you can enter "cont".
|
118
|
+
|
119
|
+
|
120
|
+
== Console
|
121
|
+
|
122
|
+
The console is a Ruby shell, which allows you to interact with your
|
123
|
+
application's domain model. Here you'll have all parts of the application
|
124
|
+
configured, just like it is when the application is running. You can inspect
|
125
|
+
domain models, change values, and save to the database. Starting the script
|
126
|
+
without arguments will launch it in the development environment.
|
127
|
+
|
128
|
+
To start the console, run <tt>rails console</tt> from the application
|
129
|
+
directory.
|
130
|
+
|
131
|
+
Options:
|
132
|
+
|
133
|
+
* Passing the <tt>-s, --sandbox</tt> argument will rollback any modifications
|
134
|
+
made to the database.
|
135
|
+
* Passing an environment name as an argument will load the corresponding
|
136
|
+
environment. Example: <tt>rails console production</tt>.
|
137
|
+
|
138
|
+
To reload your controllers and models after launching the console run
|
139
|
+
<tt>reload!</tt>
|
140
|
+
|
141
|
+
More information about irb can be found at:
|
142
|
+
link:http://www.rubycentral.com/pickaxe/irb.html
|
143
|
+
|
144
|
+
|
145
|
+
== dbconsole
|
146
|
+
|
147
|
+
You can go to the command line of your database directly through <tt>rails
|
148
|
+
dbconsole</tt>. You would be connected to the database with the credentials
|
149
|
+
defined in database.yml. Starting the script without arguments will connect you
|
150
|
+
to the development database. Passing an argument will connect you to a different
|
151
|
+
database, like <tt>rails dbconsole production</tt>. Currently works for MySQL,
|
152
|
+
PostgreSQL and SQLite 3.
|
153
|
+
|
154
|
+
== Description of Contents
|
155
|
+
|
156
|
+
The default directory structure of a generated Ruby on Rails application:
|
157
|
+
|
158
|
+
|-- app
|
159
|
+
| |-- controllers
|
160
|
+
| |-- helpers
|
161
|
+
| |-- models
|
162
|
+
| `-- views
|
163
|
+
| `-- layouts
|
164
|
+
|-- config
|
165
|
+
| |-- environments
|
166
|
+
| |-- initializers
|
167
|
+
| `-- locales
|
168
|
+
|-- db
|
169
|
+
|-- doc
|
170
|
+
|-- lib
|
171
|
+
| `-- tasks
|
172
|
+
|-- log
|
173
|
+
|-- public
|
174
|
+
| |-- images
|
175
|
+
| |-- javascripts
|
176
|
+
| `-- stylesheets
|
177
|
+
|-- script
|
178
|
+
| `-- performance
|
179
|
+
|-- test
|
180
|
+
| |-- fixtures
|
181
|
+
| |-- functional
|
182
|
+
| |-- integration
|
183
|
+
| |-- performance
|
184
|
+
| `-- unit
|
185
|
+
|-- tmp
|
186
|
+
| |-- cache
|
187
|
+
| |-- pids
|
188
|
+
| |-- sessions
|
189
|
+
| `-- sockets
|
190
|
+
`-- vendor
|
191
|
+
`-- plugins
|
192
|
+
|
193
|
+
app
|
194
|
+
Holds all the code that's specific to this particular application.
|
195
|
+
|
196
|
+
app/controllers
|
197
|
+
Holds controllers that should be named like weblogs_controller.rb for
|
198
|
+
automated URL mapping. All controllers should descend from
|
199
|
+
ApplicationController which itself descends from ActionController::Base.
|
200
|
+
|
201
|
+
app/models
|
202
|
+
Holds models that should be named like post.rb. Models descend from
|
203
|
+
ActiveRecord::Base by default.
|
204
|
+
|
205
|
+
app/views
|
206
|
+
Holds the template files for the view that should be named like
|
207
|
+
weblogs/index.html.erb for the WeblogsController#index action. All views use
|
208
|
+
eRuby syntax by default.
|
209
|
+
|
210
|
+
app/views/layouts
|
211
|
+
Holds the template files for layouts to be used with views. This models the
|
212
|
+
common header/footer method of wrapping views. In your views, define a layout
|
213
|
+
using the <tt>layout :default</tt> and create a file named default.html.erb.
|
214
|
+
Inside default.html.erb, call <% yield %> to render the view using this
|
215
|
+
layout.
|
216
|
+
|
217
|
+
app/helpers
|
218
|
+
Holds view helpers that should be named like weblogs_helper.rb. These are
|
219
|
+
generated for you automatically when using generators for controllers.
|
220
|
+
Helpers can be used to wrap functionality for your views into methods.
|
221
|
+
|
222
|
+
config
|
223
|
+
Configuration files for the Rails environment, the routing map, the database,
|
224
|
+
and other dependencies.
|
225
|
+
|
226
|
+
db
|
227
|
+
Contains the database schema in schema.rb. db/migrate contains all the
|
228
|
+
sequence of Migrations for your schema.
|
229
|
+
|
230
|
+
doc
|
231
|
+
This directory is where your application documentation will be stored when
|
232
|
+
generated using <tt>rake doc:app</tt>
|
233
|
+
|
234
|
+
lib
|
235
|
+
Application specific libraries. Basically, any kind of custom code that
|
236
|
+
doesn't belong under controllers, models, or helpers. This directory is in
|
237
|
+
the load path.
|
238
|
+
|
239
|
+
public
|
240
|
+
The directory available for the web server. Contains subdirectories for
|
241
|
+
images, stylesheets, and javascripts. Also contains the dispatchers and the
|
242
|
+
default HTML files. This should be set as the DOCUMENT_ROOT of your web
|
243
|
+
server.
|
244
|
+
|
245
|
+
script
|
246
|
+
Helper scripts for automation and generation.
|
247
|
+
|
248
|
+
test
|
249
|
+
Unit and functional tests along with fixtures. When using the rails generate
|
250
|
+
command, template test files will be generated for you and placed in this
|
251
|
+
directory.
|
252
|
+
|
253
|
+
vendor
|
254
|
+
External libraries that the application depends on. Also includes the plugins
|
255
|
+
subdirectory. If the app has frozen rails, those gems also go here, under
|
256
|
+
vendor/rails/. This directory is in the load path.
|
@@ -0,0 +1,7 @@
|
|
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 File.expand_path('../config/application', __FILE__)
|
5
|
+
require 'rake'
|
6
|
+
|
7
|
+
<%= app_const %>.load_tasks
|
@@ -0,0 +1,58 @@
|
|
1
|
+
module ApplicationHelper
|
2
|
+
include Noodall::ComponentsHelper
|
3
|
+
include Noodall::Permalinks
|
4
|
+
include Noodall::LayoutHelper
|
5
|
+
|
6
|
+
|
7
|
+
def main_navigation
|
8
|
+
render :partial => 'shared/main_nav',
|
9
|
+
:locals => {
|
10
|
+
:play_sport_page => Noodall::Node.published.first(:permalink => 'play-sport'),
|
11
|
+
:other_roots => Noodall::Node.published.where( :permalink => { :$in => ['get-social','all-about-us'] })
|
12
|
+
}
|
13
|
+
end
|
14
|
+
|
15
|
+
|
16
|
+
def hero_size
|
17
|
+
case @node
|
18
|
+
when LandingPage
|
19
|
+
'680x300#'
|
20
|
+
else
|
21
|
+
'440x196#'
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
|
26
|
+
def digg_link(url, html_options = {})
|
27
|
+
link_to 'Digg', "http://digg.com/submit?phase=2&url=#{url}", html_options.reverse_merge(:class => 'share-link', :id => 'digg-submit', :title => 'Digg this!')
|
28
|
+
end
|
29
|
+
|
30
|
+
def delicious_link(url, html_options = {})
|
31
|
+
link_to 'delicious', "http://del.icio.us/post?url=#{url}", html_options.reverse_merge(:class => 'share-link', :id => 'delicious-submit', :title => 'Save to delicious')
|
32
|
+
end
|
33
|
+
|
34
|
+
def facebook_link(url, html_options = {})
|
35
|
+
link_to 'Facebook', "http://www.facebook.com/sharer.php?u=#{url}", html_options.reverse_merge(:class => 'share-link', :id => 'facebook-submit', :title => 'Share on Facebook')
|
36
|
+
end
|
37
|
+
|
38
|
+
def stumble_link(url, html_options = {})
|
39
|
+
link_to 'Stumble Upon', "http://www.stumbleupon.com/submit?url=#{url}", html_options.reverse_merge(:class => 'share-link', :id => 'stumble-submit', :title => 'Stumble on this')
|
40
|
+
end
|
41
|
+
|
42
|
+
def mail_link(url, html_options = {})
|
43
|
+
mail_to nil, "Email", html_options.reverse_merge( :body => url, :class => 'share-link', :id => 'mail-link', :title => 'Email this to a friend')
|
44
|
+
end
|
45
|
+
|
46
|
+
def twitter_link(url, html_options = {})
|
47
|
+
link_to 'Twitter', "http://twitter.com/home?status=#{url}}", html_options.reverse_merge(:class => 'share-link', :id => 'twitter-submit', :title => 'Tweet this')
|
48
|
+
end
|
49
|
+
|
50
|
+
def reddit_link(url, html_options = {})
|
51
|
+
link_to 'Reddit', "http://www.reddit.com/submit?url=#{url}", html_options.reverse_merge(:class => 'share-link', :id => 'reddit-submit', :title => 'Reddit this!')
|
52
|
+
end
|
53
|
+
|
54
|
+
def technorati_link(url, html_options = {})
|
55
|
+
link_to 'Technorati', "http://technorati.com/faves/?add=#{url}", html_options.reverse_merge(:class => 'share-link', :id => 'technorati-submit', :title => 'Technorati this!')
|
56
|
+
end
|
57
|
+
|
58
|
+
end
|
File without changes
|
File without changes
|
@@ -0,0 +1,19 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title><%%= page_title %> | <%= app_const_base %></title>
|
5
|
+
<%%= stylesheet_link_tag :all %>
|
6
|
+
<script src="http://www.google.com/jsapi" type="text/javascript"></script>
|
7
|
+
<script type="text/javascript">
|
8
|
+
google.load("jquery", "1.4");
|
9
|
+
</script>
|
10
|
+
<%%= javascript_include_tag :defaults %>
|
11
|
+
<%%= csrf_meta_tag %>
|
12
|
+
</head>
|
13
|
+
<body>
|
14
|
+
<%%= flash_messages %>
|
15
|
+
|
16
|
+
<%%= yield %>
|
17
|
+
|
18
|
+
</body>
|
19
|
+
</html>
|
@@ -0,0 +1,49 @@
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
2
|
+
|
3
|
+
# Pick the frameworks you want:
|
4
|
+
# require "active_record/railtie"
|
5
|
+
require "action_controller/railtie"
|
6
|
+
require "action_mailer/railtie"
|
7
|
+
require "active_resource/railtie"
|
8
|
+
require "rails/test_unit/railtie"
|
9
|
+
|
10
|
+
# If you have a Gemfile, require the gems listed there, including any gems
|
11
|
+
# you've limited to :test, :development, or :production.
|
12
|
+
Bundler.require(:default, Rails.env) if defined?(Bundler)
|
13
|
+
|
14
|
+
module <%= app_const_base %>
|
15
|
+
class Application < Rails::Application
|
16
|
+
# Settings in config/environments/* take precedence over those specified here.
|
17
|
+
# Application configuration should go into files in config/initializers
|
18
|
+
# -- all .rb files in that directory are automatically loaded.
|
19
|
+
|
20
|
+
# Custom directories with classes and modules you want to be autoloadable.
|
21
|
+
# config.autoload_paths += %W(#{config.root}/extras)
|
22
|
+
|
23
|
+
# Only load the plugins named here, in the order given (default is alphabetical).
|
24
|
+
# :all can be used as a placeholder for all plugins not explicitly named.
|
25
|
+
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
26
|
+
|
27
|
+
# Activate observers that should always be running.
|
28
|
+
# config.active_record.observers = :cacher, :garbage_collector, :forum_observer
|
29
|
+
|
30
|
+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
31
|
+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
32
|
+
# config.time_zone = 'Central Time (US & Canada)'
|
33
|
+
|
34
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
35
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
36
|
+
# config.i18n.default_locale = :de
|
37
|
+
|
38
|
+
# JavaScript files you want as :defaults (application.js is always included).
|
39
|
+
config.action_view.javascript_expansions[:defaults] = %w(rails)
|
40
|
+
|
41
|
+
# Configure the default encoding used in templates for Ruby 1.9.
|
42
|
+
config.encoding = "utf-8"
|
43
|
+
|
44
|
+
# Configure sensitive parameters which will be filtered from the log file.
|
45
|
+
config.filter_parameters += [:password]
|
46
|
+
|
47
|
+
config.middleware.insert_after 'Rack::Lock', 'Dragonfly::Middleware', :noodall_assets, '/media'
|
48
|
+
end
|
49
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
|
3
|
+
# Set up gems listed in the Gemfile.
|
4
|
+
gemfile = File.expand_path('../../Gemfile', __FILE__)
|
5
|
+
begin
|
6
|
+
ENV['BUNDLE_GEMFILE'] = gemfile
|
7
|
+
require 'bundler'
|
8
|
+
Bundler.setup
|
9
|
+
rescue Bundler::GemNotFound => e
|
10
|
+
STDERR.puts e.message
|
11
|
+
STDERR.puts "Try running `bundle install`."
|
12
|
+
exit!
|
13
|
+
end if File.exist?(gemfile)
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<%
|
2
|
+
rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : ""
|
3
|
+
rerun_opts = rerun.to_s.strip.empty? ? "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} features" : "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} #{rerun}"
|
4
|
+
std_opts = "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} --strict --tags ~@wip"
|
5
|
+
%>
|
6
|
+
default: --drb <%= std_opts %> features
|
7
|
+
wip: --drb --tags @wip:3 --wip features
|
8
|
+
rerun: --drb <%= rerun_opts %> --format rerun --out rerun.txt --strict --tags ~@wip
|
@@ -0,0 +1,27 @@
|
|
1
|
+
<%= app_const %>.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/environment.rb
|
3
|
+
|
4
|
+
# In the development environment your application's code is reloaded on
|
5
|
+
# every request. This slows down response time but is perfect for development
|
6
|
+
# since you don't have to restart the webserver when you make code changes.
|
7
|
+
config.cache_classes = false
|
8
|
+
|
9
|
+
# Log error messages when you accidentally call methods on nil.
|
10
|
+
config.whiny_nils = true
|
11
|
+
|
12
|
+
# Show full error reports and disable caching
|
13
|
+
config.consider_all_requests_local = true
|
14
|
+
config.action_view.debug_rjs = true
|
15
|
+
config.action_controller.perform_caching = false
|
16
|
+
|
17
|
+
# Don't care if the mailer can't send
|
18
|
+
config.action_mailer.raise_delivery_errors = false
|
19
|
+
config.action_mailer.default_url_options = { :host => 'localhost:3000' }
|
20
|
+
|
21
|
+
# Print deprecation notices to the Rails logger
|
22
|
+
config.active_support.deprecation = :log
|
23
|
+
|
24
|
+
# Only use best-standards-support built into browsers
|
25
|
+
config.action_dispatch.best_standards_support = :builtin
|
26
|
+
end
|
27
|
+
|
@@ -0,0 +1,50 @@
|
|
1
|
+
<%= app_const %>.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/environment.rb
|
3
|
+
|
4
|
+
# The production environment is meant for finished, "live" apps.
|
5
|
+
# Code is not reloaded between requests
|
6
|
+
config.cache_classes = true
|
7
|
+
|
8
|
+
# Full error reports are disabled and caching is turned on
|
9
|
+
config.consider_all_requests_local = false
|
10
|
+
config.action_controller.perform_caching = true
|
11
|
+
|
12
|
+
# Specifies the header that your server uses for sending files
|
13
|
+
config.action_dispatch.x_sendfile_header = "X-Sendfile"
|
14
|
+
|
15
|
+
# For nginx:
|
16
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect'
|
17
|
+
|
18
|
+
# If you have no front-end server that supports something like X-Sendfile,
|
19
|
+
# just comment this out and Rails will serve the files
|
20
|
+
|
21
|
+
# See everything in the log (default is :info)
|
22
|
+
# config.log_level = :debug
|
23
|
+
|
24
|
+
# Use a different logger for distributed setups
|
25
|
+
# config.logger = SyslogLogger.new
|
26
|
+
|
27
|
+
# Use a different cache store in production
|
28
|
+
# config.cache_store = :mem_cache_store
|
29
|
+
|
30
|
+
# Disable Rails's static asset server
|
31
|
+
# In production, Apache or nginx will already do this
|
32
|
+
config.serve_static_assets = false
|
33
|
+
|
34
|
+
# Enable serving of images, stylesheets, and javascripts from an asset server
|
35
|
+
# config.action_controller.asset_host = "http://assets.example.com"
|
36
|
+
|
37
|
+
# Disable delivery errors, bad email addresses will be ignored
|
38
|
+
# config.action_mailer.raise_delivery_errors = false
|
39
|
+
config.action_mailer.default_url_options = { :host => 'www.<%= app_name %>.com' }
|
40
|
+
|
41
|
+
# Enable threaded mode
|
42
|
+
# config.threadsafe!
|
43
|
+
|
44
|
+
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
45
|
+
# the I18n.default_locale when a translation can not be found)
|
46
|
+
config.i18n.fallbacks = true
|
47
|
+
|
48
|
+
# Send deprecation notices to registered listeners
|
49
|
+
config.active_support.deprecation = :notify
|
50
|
+
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
<%= app_const %>.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/environment.rb
|
3
|
+
|
4
|
+
# The production environment is meant for finished, "live" apps.
|
5
|
+
# Code is not reloaded between requests
|
6
|
+
config.cache_classes = true
|
7
|
+
|
8
|
+
# Full error reports are disabled and caching is turned on
|
9
|
+
config.consider_all_requests_local = true
|
10
|
+
config.action_controller.perform_caching = true
|
11
|
+
|
12
|
+
# Specifies the header that your server uses for sending files
|
13
|
+
config.action_dispatch.x_sendfile_header = "X-Sendfile"
|
14
|
+
|
15
|
+
# For nginx:
|
16
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect'
|
17
|
+
|
18
|
+
# If you have no front-end server that supports something like X-Sendfile,
|
19
|
+
# just comment this out and Rails will serve the files
|
20
|
+
|
21
|
+
# See everything in the log (default is :info)
|
22
|
+
# config.log_level = :debug
|
23
|
+
|
24
|
+
# Use a different logger for distributed setups
|
25
|
+
# config.logger = SyslogLogger.new
|
26
|
+
|
27
|
+
# Use a different cache store in production
|
28
|
+
# config.cache_store = :mem_cache_store
|
29
|
+
|
30
|
+
# Disable Rails's static asset server
|
31
|
+
# In production, Apache or nginx will already do this
|
32
|
+
config.serve_static_assets = false
|
33
|
+
|
34
|
+
# Enable serving of images, stylesheets, and javascripts from an asset server
|
35
|
+
# config.action_controller.asset_host = "http://assets.example.com"
|
36
|
+
|
37
|
+
# Disable delivery errors, bad email addresses will be ignored
|
38
|
+
# config.action_mailer.raise_delivery_errors = false
|
39
|
+
config.action_mailer.default_url_options = { :host => 'www.<%= app_name %>.com' }
|
40
|
+
|
41
|
+
# Enable threaded mode
|
42
|
+
# config.threadsafe!
|
43
|
+
|
44
|
+
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
45
|
+
# the I18n.default_locale when a translation can not be found)
|
46
|
+
config.i18n.fallbacks = true
|
47
|
+
|
48
|
+
# Send deprecation notices to registered listeners
|
49
|
+
config.active_support.deprecation = :notify
|
50
|
+
end
|