acts_as_citable 3.0.0.pre.alpha → 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/acts_as_citable/base.rb +16 -13
- data/lib/acts_as_citable/version.rb +1 -1
- data/test/acts_as_citable_test.rb +1 -75
- data/test/dummy/README.rdoc +15 -248
- data/test/dummy/Rakefile +1 -2
- data/test/dummy/app/assets/javascripts/application.js +3 -5
- data/test/dummy/app/assets/stylesheets/application.css +5 -3
- data/test/dummy/app/controllers/application_controller.rb +3 -1
- data/test/dummy/app/controllers/test_controller.rb +1 -1
- data/test/dummy/app/models/inherited_record.rb +2 -2
- data/test/dummy/app/models/record.rb +1 -1
- data/test/dummy/app/models/record_changed_field.rb +1 -1
- data/test/dummy/app/views/layouts/application.html.erb +2 -2
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config.ru +1 -1
- data/test/dummy/config/application.rb +1 -37
- data/test/dummy/config/boot.rb +4 -9
- data/test/dummy/config/database.yml +6 -3
- data/test/dummy/config/environment.rb +3 -3
- data/test/dummy/config/environments/development.rb +19 -19
- data/test/dummy/config/environments/production.rb +41 -30
- data/test/dummy/config/environments/test.rb +17 -15
- data/test/dummy/config/initializers/assets.rb +8 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +6 -5
- data/test/dummy/config/initializers/mime_types.rb +0 -1
- data/test/dummy/config/initializers/session_store.rb +1 -6
- data/test/dummy/config/initializers/wrap_parameters.rb +6 -6
- data/test/dummy/config/locales/en.yml +20 -2
- data/test/dummy/config/routes.rb +2 -58
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20130221210429_create_records.rb +3 -3
- data/test/dummy/db/schema.rb +8 -8
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +30 -3148
- data/test/dummy/log/test.log +755 -10228
- data/test/dummy/public/404.html +54 -13
- data/test/dummy/public/422.html +54 -13
- data/test/dummy/public/500.html +53 -12
- data/test/dummy/test/functional/test_controller_test.rb +4 -2
- data/test/dummy/test/unit/inherited_record_test.rb +83 -0
- data/test/dummy/test/unit/record_changed_field_test.rb +69 -3
- data/test/dummy/test/unit/record_test.rb +63 -0
- metadata +27 -15
- data/test/dummy/app/assets/javascripts/test.js +0 -2
- data/test/dummy/app/assets/stylesheets/test.css +0 -4
- data/test/dummy/app/helpers/test_helper.rb +0 -2
- data/test/dummy/config/initializers/secret_token.rb +0 -7
- data/test/dummy/script/rails +0 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cf0b8e90ec3161886f4b85e4b2cee8702831a59e
|
4
|
+
data.tar.gz: f0cdfcdf6987acedb5218dc131d5edc98b53f447
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 517b32709ccd880fb81304de8fdd5c40f4e466e4f73a4088c73c8f18f5f0baa7e557b1d05a5c9dc435124e841022c1b15bb76986be8a81a9f3554097b2106646
|
7
|
+
data.tar.gz: 469020ec48f364b1d294a3b790d54ca7b9cdd59544d9b2671dfd5ec85ad84101ebfe9fd467d39e7dcba43ff69d41076b6a183c9a354fa5995d97361ec8f2f483
|
data/lib/acts_as_citable/base.rb
CHANGED
@@ -2,7 +2,7 @@ require 'citero-jruby'
|
|
2
2
|
module ActsAsCitable
|
3
3
|
attr_accessor :format_field, :data_field
|
4
4
|
# Set attribute accessors
|
5
|
-
|
5
|
+
|
6
6
|
# Hooks into an object to define its 'format' and 'data' fields. These are used to
|
7
7
|
# translate into other forms of metadata.
|
8
8
|
def acts_as_citable &block
|
@@ -12,17 +12,17 @@ module ActsAsCitable
|
|
12
12
|
if block
|
13
13
|
yield self
|
14
14
|
end
|
15
|
-
|
15
|
+
|
16
16
|
# Use procs to define methods that give the data_field and format_field for inherited models.
|
17
17
|
format_string = "#{self.format_field}"
|
18
18
|
data_string = "#{self.data_field}"
|
19
|
-
|
19
|
+
|
20
20
|
define_method(:format_field, Proc.new {format_string} )
|
21
21
|
define_method(:data_field, Proc.new {data_string} )
|
22
22
|
# Include the instance methods found below
|
23
23
|
include InstanceMethods
|
24
24
|
end
|
25
|
-
|
25
|
+
|
26
26
|
module InstanceMethods
|
27
27
|
# The method_missing override checks to see if the called method
|
28
28
|
# can be evaluated to a method name and parameter, then stores it
|
@@ -43,7 +43,7 @@ module ActsAsCitable
|
|
43
43
|
super
|
44
44
|
end
|
45
45
|
end
|
46
|
-
|
46
|
+
|
47
47
|
# Returns true if the method can be evaluated to a method name
|
48
48
|
# and parameter.
|
49
49
|
def respond_to? meth, include_private=false
|
@@ -53,7 +53,7 @@ module ActsAsCitable
|
|
53
53
|
super
|
54
54
|
end
|
55
55
|
end
|
56
|
-
|
56
|
+
|
57
57
|
# Private method. Checks to see if the method name is in the list of methods
|
58
58
|
# that can accept the formats, and checks to see if the formats are in a list
|
59
59
|
# of formats as defined by the Java enum Format.
|
@@ -61,25 +61,28 @@ module ActsAsCitable
|
|
61
61
|
Citero.map("").respond_to?(meth) && ( directionize(meth).eql?("to") || directionize(meth).eql?(meth.to_s) )
|
62
62
|
end
|
63
63
|
private :matches?
|
64
|
-
|
64
|
+
|
65
65
|
# Splits the method to get its direction, or method ie to and from.
|
66
66
|
def directionize meth, delimiter="_"
|
67
67
|
meth.to_s.split(delimiter, 2).first
|
68
68
|
end
|
69
69
|
private :directionize
|
70
|
-
|
70
|
+
|
71
71
|
def _data
|
72
72
|
self.send(data_field.to_sym)
|
73
73
|
end
|
74
74
|
private :_data
|
75
|
-
|
75
|
+
|
76
76
|
def _format
|
77
77
|
self.send(format_field.to_sym)
|
78
78
|
end
|
79
79
|
private :_format
|
80
|
-
|
80
|
+
|
81
81
|
end
|
82
|
-
|
82
|
+
|
83
|
+
end
|
84
|
+
|
85
|
+
|
86
|
+
ActiveSupport.on_load(:active_record) do
|
87
|
+
extend ActsAsCitable
|
83
88
|
end
|
84
|
-
|
85
|
-
ActiveRecord::Base.extend ActsAsCitable
|
@@ -5,84 +5,10 @@ class ActsAsCitableTest < ActiveSupport::TestCase
|
|
5
5
|
test "truth" do
|
6
6
|
assert_kind_of Module, ActsAsCitable
|
7
7
|
end
|
8
|
-
end
|
9
8
|
|
10
|
-
class RecordTest < ActiveSupport::TestCase
|
11
|
-
test "should check if i can use the record" do
|
12
|
-
assert rec = Record.new( :data => "data", :format => "from_format")
|
13
|
-
assert rec.destroy
|
14
|
-
end
|
15
|
-
|
16
|
-
test "should check to see if format fields are set" do
|
17
|
-
assert 'format', Record.format_field
|
18
|
-
assert 'from_format', RecordChangedField.format_field
|
19
|
-
end
|
20
|
-
|
21
|
-
test "should check to see if records can be converted" do
|
22
|
-
rec = Record.new(:data => "itemType: book", :format => "csf")
|
23
|
-
assert rec.respond_to?(:to_ris)
|
24
|
-
assert rec.respond_to?(:to_bibtex)
|
25
|
-
assert rec.respond_to?(:to_openurl)
|
26
|
-
assert rec.respond_to?(:to_csf)
|
27
|
-
assert rec.respond_to?(:to_easybib)
|
28
|
-
assert rec.respond_to?(:to_refworks_tagged)
|
29
|
-
assert rec.respond_to?(:csf)
|
30
|
-
assert rec.destroy
|
31
|
-
end
|
32
|
-
|
33
|
-
test "should work with models inherited acts_as_citable models" do
|
34
|
-
rec = InheritedRecord.new(:data => "itemType: book", :format => "csf")
|
35
|
-
assert_equal "TY - BOOK\nER -\n\n", rec.to_ris
|
36
|
-
assert_equal "@book{????\n}", rec.to_bibtex
|
37
|
-
assert_equal "rft.ulr_ver=Z39.88-2004&rft.ctx_ver=Z39.88-2004&rft.rfr_id=info:sid/libraries.nyu.edu:citero&rft_val_fmlt=info:ofi/fmt:kev:mtx:book&rft.genre=book", rec.to_openurl
|
38
|
-
assert_equal "{\"source\":\"book\",\"book\":{\"title\":null},\"pubtype\":{\"main\":\"pubnonperiodical\"},\"pubnonperiodical\":{},\"contributors\":[]}", rec.to_easybib
|
39
|
-
assert rec.destroy
|
40
|
-
end
|
41
|
-
|
42
|
-
test "should check to see if you cannot convert from" do
|
43
|
-
rec = Record.new(:data => "itemType: book", :format => "csf")
|
44
|
-
assert !rec.respond_to?(:from_ris)
|
45
|
-
assert !rec.respond_to?(:from_bibtex)
|
46
|
-
assert !rec.respond_to?(:from_openurl)
|
47
|
-
assert !rec.respond_to?(:from_csf)
|
48
|
-
assert !rec.respond_to?(:from_pnx)
|
49
|
-
end
|
50
|
-
|
51
|
-
test "should raise no method error" do
|
52
|
-
rec = Record.new(:data => "itemType: book", :format => "csf")
|
53
|
-
assert_raise NoMethodError do
|
54
|
-
rec.from_ris
|
55
|
-
end
|
56
|
-
assert rec.destroy
|
57
|
-
end
|
58
|
-
|
59
|
-
test "should be available to convert to" do
|
60
|
-
rec = Record.new(:data => "itemType: book", :format => "csf")
|
61
|
-
assert_equal "TY - BOOK\nER -\n\n", rec.to_ris
|
62
|
-
assert_equal "@book{????\n}", rec.to_bibtex
|
63
|
-
assert_equal "rft.ulr_ver=Z39.88-2004&rft.ctx_ver=Z39.88-2004&rft.rfr_id=info:sid/libraries.nyu.edu:citero&rft_val_fmlt=info:ofi/fmt:kev:mtx:book&rft.genre=book", rec.to_openurl
|
64
|
-
assert_equal "{\"source\":\"book\",\"book\":{\"title\":null},\"pubtype\":{\"main\":\"pubnonperiodical\"},\"pubnonperiodical\":{},\"contributors\":[]}", rec.to_easybib
|
65
|
-
assert rec.destroy
|
66
|
-
end
|
67
|
-
|
68
9
|
test "new nokogiri xml document" do
|
69
10
|
assert_nothing_raised("New Nokogiri::XML::Document raises an error.") {
|
70
11
|
Nokogiri::XML::Document.new
|
71
12
|
}
|
72
13
|
end
|
73
|
-
|
74
|
-
test "arrays should be able to convert to ris and bibtex" do
|
75
|
-
arr = Array.new
|
76
|
-
arr << Record.new(:data => "itemType: book", :format => "csf") << Record.create(:data => "itemType: book", :format => "csf")
|
77
|
-
assert arr.to_bibtex
|
78
|
-
assert arr.to_ris
|
79
|
-
arr.each {|rec| assert rec.destroy}
|
80
|
-
end
|
81
|
-
|
82
|
-
test "should be able to convert to an export STYLE" do
|
83
|
-
rec = Record.new(:data => "itemType: book", :format => "csf")
|
84
|
-
assert_equal "<div class=\"csl-bib-body\">\n <div class=\"csl-entry\"> (n.d.).</div>\n</div>", rec.to_apa
|
85
|
-
assert_equal "<div class=\"csl-bib-body\">\n <div class=\"csl-entry\"> Print.</div>\n</div>", rec.to_mla
|
86
|
-
assert_equal "<div class=\"csl-bib-body\">\n\n[CSL STYLE ERROR: reference with no printed form.]\n</div>", rec.to_chicago_author_date
|
87
|
-
end
|
88
|
-
end
|
14
|
+
end
|
data/test/dummy/README.rdoc
CHANGED
@@ -1,261 +1,28 @@
|
|
1
|
-
==
|
1
|
+
== README
|
2
2
|
|
3
|
-
|
4
|
-
|
3
|
+
This README would normally document whatever steps are necessary to get the
|
4
|
+
application up and running.
|
5
5
|
|
6
|
-
|
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.
|
6
|
+
Things you may want to cover:
|
13
7
|
|
14
|
-
|
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.
|
8
|
+
* Ruby version
|
19
9
|
|
20
|
-
|
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.
|
10
|
+
* System dependencies
|
27
11
|
|
12
|
+
* Configuration
|
28
13
|
|
29
|
-
|
14
|
+
* Database creation
|
30
15
|
|
31
|
-
|
32
|
-
<tt>rails new myapp</tt> (where <tt>myapp</tt> is the application name)
|
16
|
+
* Database initialization
|
33
17
|
|
34
|
-
|
35
|
-
<tt>cd myapp; rails server</tt> (run with --help for options)
|
18
|
+
* How to run the test suite
|
36
19
|
|
37
|
-
|
38
|
-
"Welcome aboard: You're riding Ruby on Rails!"
|
20
|
+
* Services (job queues, cache servers, search engines, etc.)
|
39
21
|
|
40
|
-
|
41
|
-
the following resources handy:
|
22
|
+
* Deployment instructions
|
42
23
|
|
43
|
-
*
|
44
|
-
* Ruby on Rails Tutorial Book: http://www.railstutorial.org/
|
24
|
+
* ...
|
45
25
|
|
46
26
|
|
47
|
-
|
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.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.org/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
|
-
| |-- assets
|
160
|
-
| |-- images
|
161
|
-
| |-- javascripts
|
162
|
-
| `-- stylesheets
|
163
|
-
| |-- controllers
|
164
|
-
| |-- helpers
|
165
|
-
| |-- mailers
|
166
|
-
| |-- models
|
167
|
-
| `-- views
|
168
|
-
| `-- layouts
|
169
|
-
|-- config
|
170
|
-
| |-- environments
|
171
|
-
| |-- initializers
|
172
|
-
| `-- locales
|
173
|
-
|-- db
|
174
|
-
|-- doc
|
175
|
-
|-- lib
|
176
|
-
| `-- tasks
|
177
|
-
|-- log
|
178
|
-
|-- public
|
179
|
-
|-- script
|
180
|
-
|-- test
|
181
|
-
| |-- fixtures
|
182
|
-
| |-- functional
|
183
|
-
| |-- integration
|
184
|
-
| |-- performance
|
185
|
-
| `-- unit
|
186
|
-
|-- tmp
|
187
|
-
| |-- cache
|
188
|
-
| |-- pids
|
189
|
-
| |-- sessions
|
190
|
-
| `-- sockets
|
191
|
-
`-- vendor
|
192
|
-
|-- assets
|
193
|
-
`-- stylesheets
|
194
|
-
`-- plugins
|
195
|
-
|
196
|
-
app
|
197
|
-
Holds all the code that's specific to this particular application.
|
198
|
-
|
199
|
-
app/assets
|
200
|
-
Contains subdirectories for images, stylesheets, and JavaScript files.
|
201
|
-
|
202
|
-
app/controllers
|
203
|
-
Holds controllers that should be named like weblogs_controller.rb for
|
204
|
-
automated URL mapping. All controllers should descend from
|
205
|
-
ApplicationController which itself descends from ActionController::Base.
|
206
|
-
|
207
|
-
app/models
|
208
|
-
Holds models that should be named like post.rb. Models descend from
|
209
|
-
ActiveRecord::Base by default.
|
210
|
-
|
211
|
-
app/views
|
212
|
-
Holds the template files for the view that should be named like
|
213
|
-
weblogs/index.html.erb for the WeblogsController#index action. All views use
|
214
|
-
eRuby syntax by default.
|
215
|
-
|
216
|
-
app/views/layouts
|
217
|
-
Holds the template files for layouts to be used with views. This models the
|
218
|
-
common header/footer method of wrapping views. In your views, define a layout
|
219
|
-
using the <tt>layout :default</tt> and create a file named default.html.erb.
|
220
|
-
Inside default.html.erb, call <% yield %> to render the view using this
|
221
|
-
layout.
|
222
|
-
|
223
|
-
app/helpers
|
224
|
-
Holds view helpers that should be named like weblogs_helper.rb. These are
|
225
|
-
generated for you automatically when using generators for controllers.
|
226
|
-
Helpers can be used to wrap functionality for your views into methods.
|
227
|
-
|
228
|
-
config
|
229
|
-
Configuration files for the Rails environment, the routing map, the database,
|
230
|
-
and other dependencies.
|
231
|
-
|
232
|
-
db
|
233
|
-
Contains the database schema in schema.rb. db/migrate contains all the
|
234
|
-
sequence of Migrations for your schema.
|
235
|
-
|
236
|
-
doc
|
237
|
-
This directory is where your application documentation will be stored when
|
238
|
-
generated using <tt>rake doc:app</tt>
|
239
|
-
|
240
|
-
lib
|
241
|
-
Application specific libraries. Basically, any kind of custom code that
|
242
|
-
doesn't belong under controllers, models, or helpers. This directory is in
|
243
|
-
the load path.
|
244
|
-
|
245
|
-
public
|
246
|
-
The directory available for the web server. Also contains the dispatchers and the
|
247
|
-
default HTML files. This should be set as the DOCUMENT_ROOT of your web
|
248
|
-
server.
|
249
|
-
|
250
|
-
script
|
251
|
-
Helper scripts for automation and generation.
|
252
|
-
|
253
|
-
test
|
254
|
-
Unit and functional tests along with fixtures. When using the rails generate
|
255
|
-
command, template test files will be generated for you and placed in this
|
256
|
-
directory.
|
257
|
-
|
258
|
-
vendor
|
259
|
-
External libraries that the application depends on. Also includes the plugins
|
260
|
-
subdirectory. If the app has frozen rails, those gems also go here, under
|
261
|
-
vendor/rails/. This directory is in the load path.
|
27
|
+
Please feel free to use a different markup language if you do not plan to run
|
28
|
+
<tt>rake doc:app</tt>.
|