ontomde-inspector 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (74) hide show
  1. data/History.txt +5 -0
  2. data/Manifest.txt +74 -0
  3. data/README.txt +42 -0
  4. data/Rakefile +19 -0
  5. data/bin/ontomde-inspector +6 -0
  6. data/lib/ontomde-inspector/loader.rb +69 -0
  7. data/lib/ontomde-inspector/rails/README +203 -0
  8. data/lib/ontomde-inspector/rails/Rakefile +10 -0
  9. data/lib/ontomde-inspector/rails/app/controllers/application.rb +10 -0
  10. data/lib/ontomde-inspector/rails/app/controllers/mtk_controller.rb +343 -0
  11. data/lib/ontomde-inspector/rails/app/helpers/application_helper.rb +3 -0
  12. data/lib/ontomde-inspector/rails/app/helpers/mtk_helper.rb +20 -0
  13. data/lib/ontomde-inspector/rails/app/views/layouts/mtk.rhtml +160 -0
  14. data/lib/ontomde-inspector/rails/app/views/mtk/clear.rhtml +5 -0
  15. data/lib/ontomde-inspector/rails/app/views/mtk/index.rhtml +1 -0
  16. data/lib/ontomde-inspector/rails/app/views/mtk/last_generated.rhtml +7 -0
  17. data/lib/ontomde-inspector/rails/app/views/mtk/not_found.rhtml +2 -0
  18. data/lib/ontomde-inspector/rails/app/views/mtk/search_form.rhtml +30 -0
  19. data/lib/ontomde-inspector/rails/app/views/mtk/search_result.rhtml +8 -0
  20. data/lib/ontomde-inspector/rails/app/views/mtk/setup_form.rhtml +42 -0
  21. data/lib/ontomde-inspector/rails/app/views/mtk/show.rhtml +172 -0
  22. data/lib/ontomde-inspector/rails/app/views/mtk/show_many.rhtml +25 -0
  23. data/lib/ontomde-inspector/rails/config/boot.rb +109 -0
  24. data/lib/ontomde-inspector/rails/config/database.yml +42 -0
  25. data/lib/ontomde-inspector/rails/config/environment.rb +60 -0
  26. data/lib/ontomde-inspector/rails/config/environments/development.rb +18 -0
  27. data/lib/ontomde-inspector/rails/config/environments/production.rb +19 -0
  28. data/lib/ontomde-inspector/rails/config/environments/test.rb +22 -0
  29. data/lib/ontomde-inspector/rails/config/initializers/inflections.rb +10 -0
  30. data/lib/ontomde-inspector/rails/config/initializers/mime_types.rb +5 -0
  31. data/lib/ontomde-inspector/rails/config/routes.rb +35 -0
  32. data/lib/ontomde-inspector/rails/doc/README_FOR_APP +2 -0
  33. data/lib/ontomde-inspector/rails/log/development.log +32687 -0
  34. data/lib/ontomde-inspector/rails/log/production.log +0 -0
  35. data/lib/ontomde-inspector/rails/log/server.log +0 -0
  36. data/lib/ontomde-inspector/rails/log/test.log +0 -0
  37. data/lib/ontomde-inspector/rails/nbproject/private/rake-t.txt +61 -0
  38. data/lib/ontomde-inspector/rails/nbproject/project.properties +2 -0
  39. data/lib/ontomde-inspector/rails/nbproject/project.xml +9 -0
  40. data/lib/ontomde-inspector/rails/public/.htaccess +40 -0
  41. data/lib/ontomde-inspector/rails/public/404.html +30 -0
  42. data/lib/ontomde-inspector/rails/public/422.html +30 -0
  43. data/lib/ontomde-inspector/rails/public/500.html +30 -0
  44. data/lib/ontomde-inspector/rails/public/dispatch.cgi +10 -0
  45. data/lib/ontomde-inspector/rails/public/dispatch.fcgi +24 -0
  46. data/lib/ontomde-inspector/rails/public/dispatch.rb +10 -0
  47. data/lib/ontomde-inspector/rails/public/favicon.ico +0 -0
  48. data/lib/ontomde-inspector/rails/public/images/logoMDE.gif +0 -0
  49. data/lib/ontomde-inspector/rails/public/images/rails.png +0 -0
  50. data/lib/ontomde-inspector/rails/public/index.html +277 -0
  51. data/lib/ontomde-inspector/rails/public/javascripts/application.js +2 -0
  52. data/lib/ontomde-inspector/rails/public/javascripts/controls.js +963 -0
  53. data/lib/ontomde-inspector/rails/public/javascripts/dragdrop.js +972 -0
  54. data/lib/ontomde-inspector/rails/public/javascripts/effects.js +1120 -0
  55. data/lib/ontomde-inspector/rails/public/javascripts/prototype.js +4225 -0
  56. data/lib/ontomde-inspector/rails/public/robots.txt +5 -0
  57. data/lib/ontomde-inspector/rails/script/about +3 -0
  58. data/lib/ontomde-inspector/rails/script/console +3 -0
  59. data/lib/ontomde-inspector/rails/script/destroy +3 -0
  60. data/lib/ontomde-inspector/rails/script/generate +3 -0
  61. data/lib/ontomde-inspector/rails/script/performance/benchmarker +3 -0
  62. data/lib/ontomde-inspector/rails/script/performance/profiler +3 -0
  63. data/lib/ontomde-inspector/rails/script/performance/request +3 -0
  64. data/lib/ontomde-inspector/rails/script/plugin +3 -0
  65. data/lib/ontomde-inspector/rails/script/process/inspector +3 -0
  66. data/lib/ontomde-inspector/rails/script/process/reaper +3 -0
  67. data/lib/ontomde-inspector/rails/script/process/spawner +3 -0
  68. data/lib/ontomde-inspector/rails/script/runner +3 -0
  69. data/lib/ontomde-inspector/rails/script/server +3 -0
  70. data/lib/ontomde-inspector/rails/test/test_helper.rb +38 -0
  71. data/lib/ontomde-inspector/version.rb +5 -0
  72. data/lib/ontomde-inspector.rb +21 -0
  73. data/test/test_ontomde-inspector.rb +0 -0
  74. metadata +157 -0
data/History.txt ADDED
@@ -0,0 +1,5 @@
1
+ == 1.0.0 / 2007-11-03
2
+
3
+ * 1 major enhancement
4
+ * Birthday!
5
+
data/Manifest.txt ADDED
@@ -0,0 +1,74 @@
1
+ History.txt
2
+ Manifest.txt
3
+ README.txt
4
+ Rakefile
5
+ bin/ontomde-inspector
6
+ lib/ontomde-inspector.rb
7
+ lib/ontomde-inspector/version.rb
8
+ test/test_ontomde-inspector.rb
9
+ ./lib/ontomde-inspector/loader.rb
10
+ ./lib/ontomde-inspector/rails/app/controllers/application.rb
11
+ ./lib/ontomde-inspector/rails/app/controllers/mtk_controller.rb
12
+ ./lib/ontomde-inspector/rails/app/helpers/application_helper.rb
13
+ ./lib/ontomde-inspector/rails/app/helpers/mtk_helper.rb
14
+ ./lib/ontomde-inspector/rails/app/views/layouts/mtk.rhtml
15
+ ./lib/ontomde-inspector/rails/app/views/mtk/clear.rhtml
16
+ ./lib/ontomde-inspector/rails/app/views/mtk/index.rhtml
17
+ ./lib/ontomde-inspector/rails/app/views/mtk/last_generated.rhtml
18
+ ./lib/ontomde-inspector/rails/app/views/mtk/not_found.rhtml
19
+ ./lib/ontomde-inspector/rails/app/views/mtk/search_form.rhtml
20
+ ./lib/ontomde-inspector/rails/app/views/mtk/search_result.rhtml
21
+ ./lib/ontomde-inspector/rails/app/views/mtk/setup_form.rhtml
22
+ ./lib/ontomde-inspector/rails/app/views/mtk/show.rhtml
23
+ ./lib/ontomde-inspector/rails/app/views/mtk/show_many.rhtml
24
+ ./lib/ontomde-inspector/rails/config/boot.rb
25
+ ./lib/ontomde-inspector/rails/config/database.yml
26
+ ./lib/ontomde-inspector/rails/config/environment.rb
27
+ ./lib/ontomde-inspector/rails/config/environments/development.rb
28
+ ./lib/ontomde-inspector/rails/config/environments/production.rb
29
+ ./lib/ontomde-inspector/rails/config/environments/test.rb
30
+ ./lib/ontomde-inspector/rails/config/initializers/inflections.rb
31
+ ./lib/ontomde-inspector/rails/config/initializers/mime_types.rb
32
+ ./lib/ontomde-inspector/rails/config/routes.rb
33
+ ./lib/ontomde-inspector/rails/doc/README_FOR_APP
34
+ ./lib/ontomde-inspector/rails/log/development.log
35
+ ./lib/ontomde-inspector/rails/log/production.log
36
+ ./lib/ontomde-inspector/rails/log/server.log
37
+ ./lib/ontomde-inspector/rails/log/test.log
38
+ ./lib/ontomde-inspector/rails/nbproject/private/rake-t.txt
39
+ ./lib/ontomde-inspector/rails/nbproject/project.properties
40
+ ./lib/ontomde-inspector/rails/nbproject/project.xml
41
+ ./lib/ontomde-inspector/rails/public/.htaccess
42
+ ./lib/ontomde-inspector/rails/public/404.html
43
+ ./lib/ontomde-inspector/rails/public/422.html
44
+ ./lib/ontomde-inspector/rails/public/500.html
45
+ ./lib/ontomde-inspector/rails/public/dispatch.cgi
46
+ ./lib/ontomde-inspector/rails/public/dispatch.fcgi
47
+ ./lib/ontomde-inspector/rails/public/dispatch.rb
48
+ ./lib/ontomde-inspector/rails/public/favicon.ico
49
+ ./lib/ontomde-inspector/rails/public/images/rails.png
50
+ ./lib/ontomde-inspector/rails/public/images/logoMDE.gif
51
+ ./lib/ontomde-inspector/rails/public/index.html
52
+ ./lib/ontomde-inspector/rails/public/javascripts/application.js
53
+ ./lib/ontomde-inspector/rails/public/javascripts/controls.js
54
+ ./lib/ontomde-inspector/rails/public/javascripts/dragdrop.js
55
+ ./lib/ontomde-inspector/rails/public/javascripts/effects.js
56
+ ./lib/ontomde-inspector/rails/public/javascripts/prototype.js
57
+ ./lib/ontomde-inspector/rails/public/robots.txt
58
+ ./lib/ontomde-inspector/rails/Rakefile
59
+ ./lib/ontomde-inspector/rails/README
60
+ ./lib/ontomde-inspector/rails/script/about
61
+ ./lib/ontomde-inspector/rails/script/console
62
+ ./lib/ontomde-inspector/rails/script/destroy
63
+ ./lib/ontomde-inspector/rails/script/generate
64
+ ./lib/ontomde-inspector/rails/script/performance/benchmarker
65
+ ./lib/ontomde-inspector/rails/script/performance/profiler
66
+ ./lib/ontomde-inspector/rails/script/performance/request
67
+ ./lib/ontomde-inspector/rails/script/plugin
68
+ ./lib/ontomde-inspector/rails/script/process/inspector
69
+ ./lib/ontomde-inspector/rails/script/process/reaper
70
+ ./lib/ontomde-inspector/rails/script/process/spawner
71
+ ./lib/ontomde-inspector/rails/script/runner
72
+ ./lib/ontomde-inspector/rails/script/server
73
+ ./lib/ontomde-inspector/rails/test/test_helper.rb
74
+ ./lib/ontomde-inspector.rb
data/README.txt ADDED
@@ -0,0 +1,42 @@
1
+ ontomde-inspector
2
+ by stephane (Pierre) Carrie
3
+ http://ontomde.rubyforge.org
4
+
5
+ == DESCRIPTION:
6
+
7
+ ontomde-inspector is a web server for browsing a model and a meta-model inside a running ontomde generator.
8
+
9
+ == FEATURES/PROBLEMS:
10
+
11
+ This tool may be used for
12
+ * inspecting a meta-model structure (UML, BPM, your DSL, ...)
13
+ * inspecting a model (your UML model, your BPM model, ...)
14
+ * interactively call methods of your model (model navigation, java generator method, ...)
15
+
16
+
17
+ == SYNOPSIS:
18
+
19
+ use commande line provided in ontomde-uml2-javaFrontEnd with option --daemon.
20
+
21
+ == INSTALL:
22
+
23
+ Additional information is available on ontoMDE web site :
24
+ http://ontomde.rubyforge.org/website/download.html
25
+ == LICENSE:
26
+
27
+ Copyright (C) 2008 Orange-labs
28
+ 38 rue General Leclerc
29
+ 92130 ISSY LES MOULINEAUX, France
30
+
31
+ This program is free software: you can redistribute it and/or modify
32
+ it under the terms of the GNU Affero General Public License as
33
+ published by the Free Software Foundation, either version 3 of the
34
+ License, or (at your option) any later version.
35
+
36
+ This program is distributed in the hope that it will be useful,
37
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
38
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
39
+ GNU Affero General Public License for more details.
40
+
41
+ You should have received a copy of the GNU Affero General Public License
42
+ along with this program. If not, see http://www.gnu.org/licenses/.
data/Rakefile ADDED
@@ -0,0 +1,19 @@
1
+ # -*- ruby -*-
2
+
3
+ require 'rubygems'
4
+ require 'hoe'
5
+ require './lib/ontomde-inspector/version.rb'
6
+
7
+ Hoe.new('ontomde-inspector', Ontomde::Inspector::VERSION) do |p|
8
+ p.rubyforge_name = 'ontomde'
9
+ p.author = 'Stephane (Pierre) Carrie'
10
+ p.email = 'stephanepierre.carrie@orange-ftgroup.com'
11
+ p.summary = 'OntoMDE cartridge for inspecting RDF models in a Rails webserver'
12
+ p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n")
13
+ p.url="http://ontomde.rubyforge.org"
14
+ p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
15
+ p.extra_deps=[['rails','=2.0.2' ], ['ontomde-core', '='+Ontomde::Inspector::VERSION]]
16
+ p.spec_extras={ :required_ruby_version => '>=1.8.6' ,:required_rubygems_version => '>=1.0.0'}
17
+ end
18
+
19
+ # vim: syntax=Ruby
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'ontomde-inspector'
4
+
5
+
6
+ Crdf_Model.new().inspector_start_daemon(__FILE__)
@@ -0,0 +1,69 @@
1
+ require "set"
2
+
3
+ #This class is a singleton used for storing locations of model source files.
4
+ class Crdf_loader
5
+ include Singleton
6
+ attr_reader :rdf_model
7
+ attr_reader :availableProfiles,:activeProfiles
8
+ #attr_writer :availableProfiles,:activeProfiles
9
+ attr_reader :sourceFiles
10
+
11
+ def profiles
12
+ end
13
+
14
+ # Add fn file to the list of model source files and loads it.
15
+ # Note:
16
+ # source file is stored internaly as full path (expanded)
17
+ # because running program current directory is subject to change
18
+ # especialy when rails server is used.
19
+ def addModelFile(fn)
20
+ fn=File.expand_path(fn)
21
+ @sourceFiles << fn if !@sourceFiles.include?(fn)
22
+ @rdf_model.loadModelFromFile(fn)
23
+ #log.debug "fn=#{fn}"
24
+ #TODO: enlever les fragments
25
+ end
26
+
27
+ # clear current model and reloads it from file
28
+ def reset
29
+ #@rdf_model=Crdf_Model.new
30
+ #TODO: supprimer adhérence UML
31
+ @rdf_model=model_for_inspector
32
+ #@rdf_model.loadUml2
33
+ @sourceFiles.each { |fn|
34
+ @rdf_model.loadModelFromFile(fn)
35
+ }
36
+ end
37
+
38
+ def initialize
39
+ log.debug "Crdf_loader: initialisation singleton"
40
+
41
+ #TODO: REWRITE (currently KO)
42
+ @sourceFiles=Array.new()
43
+ @availableProfiles=Set.new()
44
+ @availableProfiles.add("uml2/uml2.rb")
45
+ @availableProfiles.add("java/java.rb")
46
+ #@availableProfiles[2]="java/hibernate.rb"
47
+ @activeProfiles=Set.new()
48
+ log.debug "Crdf_loader: fin initialisation singleton"
49
+ reset
50
+ end
51
+ ## def loadProfile
52
+ ## log.warn "TODO: reecrire"
53
+ ## return
54
+ ## log.debug "loadProfile ...."
55
+ ## @availableProfiles.each { |prof|
56
+ ## if @activeProfiles.include?(prof)
57
+ ## #c=cookies[:user_name]
58
+ ## log.debug "load profile #{prof}"
59
+ ## require prof
60
+ ## else
61
+ ## log.debug "skip profile #{prof}"
62
+ ## require prof
63
+ ## end
64
+ ## }
65
+ ## load "uml2/uml2.rdfs.nt.rb"
66
+ ## end
67
+ end
68
+
69
+ #Crdf_loader.instance
@@ -0,0 +1,203 @@
1
+ == Welcome to Rails
2
+
3
+ Rails is a web-application and persistence framework that includes everything
4
+ needed to create database-backed web-applications according to the
5
+ Model-View-Control pattern of separation. This pattern splits the view (also
6
+ called the presentation) into "dumb" templates that are primarily responsible
7
+ for inserting pre-built data in between HTML tags. The model contains the
8
+ "smart" domain objects (such as Account, Product, Person, Post) that holds all
9
+ the business logic and knows how to persist themselves to a database. The
10
+ controller handles the incoming requests (such as Save New Account, Update
11
+ Product, Show Post) by manipulating the model and directing data to the view.
12
+
13
+ In Rails, the model is handled by what's called an object-relational mapping
14
+ layer entitled Active Record. This layer allows you to present the data from
15
+ database rows as objects and embellish these data objects with business logic
16
+ methods. You can read more about Active Record in
17
+ link:files/vendor/rails/activerecord/README.html.
18
+
19
+ The controller and view are handled by the Action Pack, which handles both
20
+ layers by its two parts: Action View and Action Controller. These two layers
21
+ are bundled in a single package due to their heavy interdependence. This is
22
+ unlike the relationship between the Active Record and Action Pack that is much
23
+ more separate. Each of these packages can be used independently outside of
24
+ Rails. You can read more about Action Pack in
25
+ link:files/vendor/rails/actionpack/README.html.
26
+
27
+
28
+ == Getting Started
29
+
30
+ 1. At the command prompt, start a new Rails application using the <tt>rails</tt> command
31
+ and your application name. Ex: rails myapp
32
+ (If you've downloaded Rails in a complete tgz or zip, this step is already done)
33
+ 2. Change directory into myapp and start the web server: <tt>script/server</tt> (run with --help for options)
34
+ 3. Go to http://localhost:3000/ and get "Welcome aboard: You’re riding the Rails!"
35
+ 4. Follow the guidelines to start developing your application
36
+
37
+
38
+ == Web Servers
39
+
40
+ By default, Rails will try to use Mongrel and lighttpd if they are installed, otherwise
41
+ Rails will use WEBrick, the webserver that ships with Ruby. When you run script/server,
42
+ Rails will check if Mongrel exists, then lighttpd and finally fall back to WEBrick. This ensures
43
+ that you can always get up and running quickly.
44
+
45
+ Mongrel is a Ruby-based webserver with a C component (which requires compilation) that is
46
+ suitable for development and deployment of Rails applications. If you have Ruby Gems installed,
47
+ getting up and running with mongrel is as easy as: <tt>gem install mongrel</tt>.
48
+ More info at: http://mongrel.rubyforge.org
49
+
50
+ If Mongrel is not installed, Rails will look for lighttpd. It's considerably faster than
51
+ Mongrel and WEBrick and also suited for production use, but requires additional
52
+ installation and currently only works well on OS X/Unix (Windows users are encouraged
53
+ to start with Mongrel). We recommend version 1.4.11 and higher. You can download it from
54
+ http://www.lighttpd.net.
55
+
56
+ And finally, if neither Mongrel or lighttpd are installed, Rails will use the built-in Ruby
57
+ web server, WEBrick. WEBrick is a small Ruby web server suitable for development, but not
58
+ for production.
59
+
60
+ But of course its also possible to run Rails on any platform that supports FCGI.
61
+ Apache, LiteSpeed, IIS are just a few. For more information on FCGI,
62
+ please visit: http://wiki.rubyonrails.com/rails/pages/FastCGI
63
+
64
+
65
+ == Debugging Rails
66
+
67
+ Sometimes your application goes wrong. Fortunately there are a lot of tools that
68
+ will help you debug it and get it back on the rails.
69
+
70
+ First area to check is the application log files. Have "tail -f" commands running
71
+ on the server.log and development.log. Rails will automatically display debugging
72
+ and runtime information to these files. Debugging info will also be shown in the
73
+ browser on requests from 127.0.0.1.
74
+
75
+ You can also log your own messages directly into the log file from your code using
76
+ the Ruby logger class from inside your controllers. Example:
77
+
78
+ class WeblogController < ActionController::Base
79
+ def destroy
80
+ @weblog = Weblog.find(params[:id])
81
+ @weblog.destroy
82
+ logger.info("#{Time.now} Destroyed Weblog ID ##{@weblog.id}!")
83
+ end
84
+ end
85
+
86
+ The result will be a message in your log file along the lines of:
87
+
88
+ Mon Oct 08 14:22:29 +1000 2007 Destroyed Weblog ID #1
89
+
90
+ More information on how to use the logger is at http://www.ruby-doc.org/core/
91
+
92
+ Also, Ruby documentation can be found at http://www.ruby-lang.org/ including:
93
+
94
+ * The Learning Ruby (Pickaxe) Book: http://www.ruby-doc.org/docs/ProgrammingRuby/
95
+ * Learn to Program: http://pine.fm/LearnToProgram/ (a beginners guide)
96
+
97
+ These two online (and free) books will bring you up to speed on the Ruby language
98
+ and also on programming in general.
99
+
100
+
101
+ == Debugger
102
+
103
+ Debugger support is available through the debugger command when you start your Mongrel or
104
+ Webrick server with --debugger. This means that you can break out of execution at any point
105
+ in the code, investigate and change the model, AND then resume execution! Example:
106
+
107
+ class WeblogController < ActionController::Base
108
+ def index
109
+ @posts = Post.find(:all)
110
+ debugger
111
+ end
112
+ end
113
+
114
+ So the controller will accept the action, run the first line, then present you
115
+ with a IRB prompt in the server window. Here you can do things like:
116
+
117
+ >> @posts.inspect
118
+ => "[#<Post:0x14a6be8 @attributes={\"title\"=>nil, \"body\"=>nil, \"id\"=>\"1\"}>,
119
+ #<Post:0x14a6620 @attributes={\"title\"=>\"Rails you know!\", \"body\"=>\"Only ten..\", \"id\"=>\"2\"}>]"
120
+ >> @posts.first.title = "hello from a debugger"
121
+ => "hello from a debugger"
122
+
123
+ ...and even better is that you can examine how your runtime objects actually work:
124
+
125
+ >> f = @posts.first
126
+ => #<Post:0x13630c4 @attributes={"title"=>nil, "body"=>nil, "id"=>"1"}>
127
+ >> f.
128
+ Display all 152 possibilities? (y or n)
129
+
130
+ Finally, when you're ready to resume execution, you enter "cont"
131
+
132
+
133
+ == Console
134
+
135
+ You can interact with the domain model by starting the console through <tt>script/console</tt>.
136
+ Here you'll have all parts of the application configured, just like it is when the
137
+ application is running. You can inspect domain models, change values, and save to the
138
+ database. Starting the script without arguments will launch it in the development environment.
139
+ Passing an argument will specify a different environment, like <tt>script/console production</tt>.
140
+
141
+ To reload your controllers and models after launching the console run <tt>reload!</tt>
142
+
143
+
144
+ == Description of Contents
145
+
146
+ app
147
+ Holds all the code that's specific to this particular application.
148
+
149
+ app/controllers
150
+ Holds controllers that should be named like weblogs_controller.rb for
151
+ automated URL mapping. All controllers should descend from ApplicationController
152
+ which itself descends from ActionController::Base.
153
+
154
+ app/models
155
+ Holds models that should be named like post.rb.
156
+ Most models will descend from ActiveRecord::Base.
157
+
158
+ app/views
159
+ Holds the template files for the view that should be named like
160
+ weblogs/index.erb for the WeblogsController#index action. All views use eRuby
161
+ syntax.
162
+
163
+ app/views/layouts
164
+ Holds the template files for layouts to be used with views. This models the common
165
+ header/footer method of wrapping views. In your views, define a layout using the
166
+ <tt>layout :default</tt> and create a file named default.erb. Inside default.erb,
167
+ call <% yield %> to render the view using this layout.
168
+
169
+ app/helpers
170
+ Holds view helpers that should be named like weblogs_helper.rb. These are generated
171
+ for you automatically when using script/generate for controllers. Helpers can be used to
172
+ wrap functionality for your views into methods.
173
+
174
+ config
175
+ Configuration files for the Rails environment, the routing map, the database, and other dependencies.
176
+
177
+ db
178
+ Contains the database schema in schema.rb. db/migrate contains all
179
+ the sequence of Migrations for your schema.
180
+
181
+ doc
182
+ This directory is where your application documentation will be stored when generated
183
+ using <tt>rake doc:app</tt>
184
+
185
+ lib
186
+ Application specific libraries. Basically, any kind of custom code that doesn't
187
+ belong under controllers, models, or helpers. This directory is in the load path.
188
+
189
+ public
190
+ The directory available for the web server. Contains subdirectories for images, stylesheets,
191
+ and javascripts. Also contains the dispatchers and the default HTML files. This should be
192
+ set as the DOCUMENT_ROOT of your web server.
193
+
194
+ script
195
+ Helper scripts for automation and generation.
196
+
197
+ test
198
+ Unit and functional tests along with fixtures. When using the script/generate scripts, template
199
+ test files will be generated for you and placed in this directory.
200
+
201
+ vendor
202
+ External libraries that the application depends on. Also includes the plugins subdirectory.
203
+ This directory is in the load path.
@@ -0,0 +1,10 @@
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.join(File.dirname(__FILE__), 'config', 'boot'))
5
+
6
+ require 'rake'
7
+ require 'rake/testtask'
8
+ require 'rake/rdoctask'
9
+
10
+ require 'tasks/rails'
@@ -0,0 +1,10 @@
1
+ # Filters added to this controller apply to all controllers in the application.
2
+ # Likewise, all the methods added will be available for all controllers.
3
+
4
+ class ApplicationController < ActionController::Base
5
+ helper :all # include all helpers, all the time
6
+
7
+ # See ActionController::RequestForgeryProtection for details
8
+ # Uncomment the :secret if you're not using the cookie session store
9
+ protect_from_forgery # :secret => 'e0afe5ec378834f458500eb6bbc66e79'
10
+ end