lolita 3.1.10 → 3.1.11
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -5
- data/.rspec +2 -2
- data/GUIDELINES.rdoc +24 -24
- data/Gemfile +26 -26
- data/History.rdoc +162 -154
- data/LICENSE.txt +22 -22
- data/README.rdoc +98 -98
- data/Rakefile +40 -40
- data/VERSION +1 -1
- data/app/controllers/lolita/info_controller.rb +41 -41
- data/app/controllers/lolita/rest_controller.rb +130 -130
- data/app/helpers/components/lolita/configuration/list_component.rb +10 -10
- data/app/helpers/lolita_helper.rb +11 -11
- data/app/views/components/lolita/configuration/column/_display.html.erb +4 -4
- data/app/views/components/lolita/configuration/column/_header.html.erb +7 -7
- data/app/views/components/lolita/configuration/column/_sort.html.erb +4 -4
- data/app/views/components/lolita/configuration/columns/_body.html.erb +4 -4
- data/app/views/components/lolita/configuration/columns/_display.html.erb +1 -1
- data/app/views/components/lolita/configuration/columns/_first.html.erb +2 -2
- data/app/views/components/lolita/configuration/columns/_first_column_header.html.erb +3 -3
- data/app/views/components/lolita/configuration/columns/_header.html.erb +8 -8
- data/app/views/components/lolita/configuration/columns/_last.html.erb +4 -4
- data/app/views/components/lolita/configuration/columns/_last_column_header.html.erb +2 -2
- data/app/views/components/lolita/configuration/columns/_row.html.erb +7 -7
- data/app/views/components/lolita/configuration/field/_display.html.erb +9 -9
- data/app/views/components/lolita/configuration/field/_label.html.erb +1 -1
- data/app/views/components/lolita/configuration/field/_object.html.erb +1 -1
- data/app/views/components/lolita/configuration/field/array/_display.html.erb +4 -4
- data/app/views/components/lolita/configuration/field/array/habtm/_display.html.erb +26 -26
- data/app/views/components/lolita/configuration/field/array/select/_display.html.erb +5 -5
- data/app/views/components/lolita/configuration/field/boolean/filter/_display.html.erb +1 -1
- data/app/views/components/lolita/configuration/field/date/_display.html.erb +1 -1
- data/app/views/components/lolita/configuration/field/date_time/date/_display.html.erb +1 -1
- data/app/views/components/lolita/configuration/field/integer/_display.html.erb +1 -1
- data/app/views/components/lolita/configuration/field/string/_display.html.erb +4 -4
- data/app/views/components/lolita/configuration/field/string/disabled/_display.html.erb +1 -1
- data/app/views/components/lolita/configuration/field/string/password/_display.html.erb +3 -3
- data/app/views/components/lolita/configuration/field/string/text/_display.html.erb +18 -18
- data/app/views/components/lolita/configuration/field_set/_display.html.erb +5 -5
- data/app/views/components/lolita/configuration/list/_display.html.erb +10 -10
- data/app/views/components/lolita/configuration/list/_filter.html.erb +7 -7
- data/app/views/components/lolita/configuration/list/_new_resource.html.erb +4 -4
- data/app/views/components/lolita/configuration/list/_title.html.erb +4 -4
- data/app/views/components/lolita/configuration/tab/_display.html.erb +17 -17
- data/app/views/components/lolita/configuration/tab/_fields.html.erb +6 -6
- data/app/views/components/lolita/configuration/tab/content/_display.html.erb +1 -1
- data/app/views/components/lolita/configuration/tab/default/_display.html.erb +8 -8
- data/app/views/components/lolita/configuration/tabs/_display.html.erb +10 -10
- data/app/views/components/lolita/navigation/_display.html.erb +2 -2
- data/app/views/components/lolita/navigation/_tree.html.erb +38 -38
- data/app/views/components/lolita/shared/_flash.html.erb +5 -5
- data/app/views/components/lolita/shared/_header.html.erb +8 -8
- data/app/views/components/lolita/shared/_right_sidebar.html.erb +13 -13
- data/app/views/layouts/lolita/application.html.erb +44 -44
- data/app/views/lolita/info/index.html.erb +232 -232
- data/app/views/lolita/rest/form.html.erb +1 -1
- data/app/views/lolita/rest/index.html.erb +1 -1
- data/author +1 -1
- data/config/locales/default/lv.yml +180 -180
- data/config/locales/en.yml +20 -20
- data/config/locales/lv.yml +20 -20
- data/config/routes.rb +3 -3
- data/db/seed.rb +1 -1
- data/features/create_page.feature +19 -19
- data/features/step_definitions/lolita_steps.rb +7 -7
- data/features/step_definitions/web_steps.rb +219 -219
- data/features/support/env.rb +73 -73
- data/features/support/paths.rb +35 -35
- data/lib/generators/helpers/file_helper.rb +22 -22
- data/lib/generators/lolita/assets_generator.rb +18 -18
- data/lib/generators/lolita/install_generator.rb +28 -28
- data/lib/generators/templates/lolita.rb +19 -19
- data/lib/lolita.rb +184 -184
- data/lib/lolita/adapter/abstract_adapter.rb +13 -13
- data/lib/lolita/adapter/active_record.rb +148 -148
- data/lib/lolita/adapter/mongoid.rb +127 -127
- data/lib/lolita/base_configuration.rb +165 -165
- data/lib/lolita/builder.rb +249 -249
- data/lib/lolita/configuration/base.rb +76 -76
- data/lib/lolita/configuration/column.rb +93 -94
- data/lib/lolita/configuration/columns.rb +66 -66
- data/lib/lolita/configuration/factory.rb +55 -55
- data/lib/lolita/configuration/field.rb +216 -216
- data/lib/lolita/configuration/field/array.rb +75 -75
- data/lib/lolita/configuration/field/big_decimal.rb +12 -12
- data/lib/lolita/configuration/field/boolean.rb +12 -12
- data/lib/lolita/configuration/field/date.rb +12 -12
- data/lib/lolita/configuration/field/date_time.rb +13 -13
- data/lib/lolita/configuration/field/integer.rb +12 -12
- data/lib/lolita/configuration/field/string.rb +13 -13
- data/lib/lolita/configuration/field/time.rb +13 -13
- data/lib/lolita/configuration/field_set.rb +25 -25
- data/lib/lolita/configuration/fields.rb +35 -35
- data/lib/lolita/configuration/filter.rb +108 -108
- data/lib/lolita/configuration/list.rb +104 -104
- data/lib/lolita/configuration/page.rb +125 -124
- data/lib/lolita/configuration/tab.rb +187 -187
- data/lib/lolita/configuration/tab/content.rb +21 -21
- data/lib/lolita/configuration/tab/default.rb +25 -25
- data/lib/lolita/configuration/tabs.rb +132 -132
- data/lib/lolita/controllers/component_helpers.rb +127 -127
- data/lib/lolita/controllers/internal_helpers.rb +109 -109
- data/lib/lolita/controllers/url_helpers.rb +111 -111
- data/lib/lolita/controllers/user_helpers.rb +32 -32
- data/lib/lolita/controllers/view_user_helpers.rb +12 -12
- data/lib/lolita/dbi/base.rb +50 -50
- data/lib/lolita/errors.rb +12 -12
- data/lib/lolita/hooks.rb +355 -355
- data/lib/lolita/hooks/named_hook.rb +125 -125
- data/lib/lolita/lazy_loader.rb +46 -46
- data/lib/lolita/mapping.rb +55 -55
- data/lib/lolita/modules.rb +6 -6
- data/lib/lolita/modules/rest.rb +10 -10
- data/lib/lolita/navigation/branch.rb +132 -132
- data/lib/lolita/navigation/tree.rb +116 -116
- data/lib/lolita/observed_array.rb +74 -74
- data/lib/lolita/rails.rb +20 -20
- data/lib/lolita/rails/all.rb +10 -10
- data/lib/lolita/rails/routes.rb +133 -133
- data/lib/lolita/ruby_ext/accessors.rb +26 -26
- data/lib/lolita/support/formatter.rb +62 -62
- data/lib/lolita/support/formatter/rails.rb +56 -56
- data/lib/lolita/test/matchers.rb +77 -77
- data/lolita.gemspec +2 -2
- data/public/javascripts/jquery-1.6.min.js +15 -15
- data/public/javascripts/jquery-ui-1.8.13.min.js +407 -407
- data/public/javascripts/lolita/main.js +39 -39
- data/public/javascripts/lolita/tab.js +41 -41
- data/public/javascripts/modernizr-1.7.min.js +1 -1
- data/public/javascripts/rails.js +137 -137
- data/public/javascripts/tinymce/langs/en.js +221 -221
- data/public/javascripts/tinymce/license.txt +504 -504
- data/public/javascripts/tinymce/themes/advanced/about.htm +52 -52
- data/public/javascripts/tinymce/themes/advanced/anchor.htm +26 -26
- data/public/javascripts/tinymce/themes/advanced/charmap.htm +51 -51
- data/public/javascripts/tinymce/themes/advanced/color_picker.htm +74 -74
- data/public/javascripts/tinymce/themes/advanced/editor_template_src.js +1328 -1328
- data/public/javascripts/tinymce/themes/advanced/image.htm +80 -80
- data/public/javascripts/tinymce/themes/advanced/js/about.js +73 -73
- data/public/javascripts/tinymce/themes/advanced/js/anchor.js +42 -42
- data/public/javascripts/tinymce/themes/advanced/js/charmap.js +354 -354
- data/public/javascripts/tinymce/themes/advanced/js/color_picker.js +329 -329
- data/public/javascripts/tinymce/themes/advanced/js/image.js +247 -247
- data/public/javascripts/tinymce/themes/advanced/js/link.js +153 -153
- data/public/javascripts/tinymce/themes/advanced/js/source_editor.js +56 -56
- data/public/javascripts/tinymce/themes/advanced/langs/en.js +68 -68
- data/public/javascripts/tinymce/themes/advanced/langs/en_dlg.js +53 -53
- data/public/javascripts/tinymce/themes/advanced/link.htm +57 -57
- data/public/javascripts/tinymce/themes/advanced/shortcuts.htm +47 -47
- data/public/javascripts/tinymce/themes/advanced/skins/cirkuit/content.css +66 -66
- data/public/javascripts/tinymce/themes/advanced/skins/cirkuit/dialog.css +117 -117
- data/public/javascripts/tinymce/themes/advanced/skins/cirkuit/ui.css +988 -988
- data/public/javascripts/tinymce/themes/advanced/source_editor.htm +25 -25
- data/public/javascripts/tinymce/tiny_mce_popup.js +4 -4
- data/public/javascripts/tinymce_config.js +15 -15
- data/public/stylesheets/lolita/default.css +169 -169
- data/public/stylesheets/lolita/style.css +253 -253
- data/spec/adapter_helper.rb +43 -43
- data/spec/builder_spec.rb +120 -120
- data/spec/configuration/base_spec.rb +44 -44
- data/spec/configuration/column_spec.rb +89 -89
- data/spec/configuration/columns_spec.rb +54 -54
- data/spec/configuration/field_set_spec.rb +12 -12
- data/spec/configuration/field_spec.rb +118 -118
- data/spec/configuration/filter_spec.rb +122 -122
- data/spec/configuration/list_spec.rb +76 -76
- data/spec/configuration/page_spec.rb +19 -19
- data/spec/configuration/tab_spec.rb +165 -165
- data/spec/configuration/tabs_spec.rb +106 -106
- data/spec/controllers/component_helpers_spec.rb +5 -5
- data/spec/controllers/internal_helpers_spec.rb +76 -76
- data/spec/controllers/lolita_rest_nested_resources_spec.rb +33 -33
- data/spec/controllers/lolita_rest_spec.rb +53 -53
- data/spec/dbi/base_spec.rb +44 -44
- data/spec/hooks_spec.rb +257 -257
- data/spec/lolita_spec.rb +13 -13
- data/spec/mapping_spec.rb +29 -29
- data/spec/navigation/branch_spec.rb +81 -81
- data/spec/navigation/tree_spec.rb +73 -73
- data/spec/orm/mongoid.rb +11 -11
- data/spec/rails_app/app/controllers/application_controller.rb +3 -3
- data/spec/rails_app/app/helpers/application_helper.rb +3 -3
- data/spec/rails_app/app/mongoid/address.rb +7 -7
- data/spec/rails_app/app/mongoid/category.rb +5 -5
- data/spec/rails_app/app/mongoid/comment.rb +5 -5
- data/spec/rails_app/app/mongoid/post.rb +18 -18
- data/spec/rails_app/app/mongoid/preference.rb +5 -5
- data/spec/rails_app/app/mongoid/profile.rb +13 -13
- data/spec/rails_app/app/mongoid/tag.rb +3 -3
- data/spec/rails_app/app/views/components/lolita/configuration/list/_body_cell.html.erb +1 -1
- data/spec/rails_app/config/application.rb +26 -26
- data/spec/rails_app/config/boot.rb +13 -13
- data/spec/rails_app/config/environment.rb +5 -5
- data/spec/rails_app/config/environments/development.rb +19 -19
- data/spec/rails_app/config/environments/production.rb +33 -33
- data/spec/rails_app/config/environments/test.rb +33 -33
- data/spec/rails_app/config/initializers/backtrace_silencers.rb +7 -7
- data/spec/rails_app/config/initializers/inflections.rb +2 -2
- data/spec/rails_app/config/initializers/secret_token.rb +1 -1
- data/spec/rails_app/config/routes.rb +2 -2
- data/spec/rails_app/lib/lolita/configuration/field/my_custom_collection.rb +13 -13
- data/spec/rails_app/public/javascripts/jquery-1.5.1.min.js +15 -15
- data/spec/rails_app/public/javascripts/lolita/main.js +6 -6
- data/spec/rails_app/public/javascripts/lolita/tab.js +40 -40
- data/spec/rails_app/public/javascripts/modernizr-1.7.min.js +1 -1
- data/spec/rails_app/public/javascripts/rails.js +137 -137
- data/spec/rails_app/public/javascripts/tinymce/langs/en.js +221 -221
- data/spec/rails_app/public/javascripts/tinymce/license.txt +504 -504
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/about.htm +52 -52
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/anchor.htm +26 -26
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/charmap.htm +51 -51
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/color_picker.htm +74 -74
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/editor_template_src.js +1328 -1328
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/image.htm +80 -80
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/about.js +73 -73
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/anchor.js +42 -42
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/charmap.js +354 -354
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/color_picker.js +329 -329
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/image.js +247 -247
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/link.js +153 -153
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/source_editor.js +56 -56
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/langs/en.js +68 -68
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/langs/en_dlg.js +53 -53
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/link.htm +57 -57
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/shortcuts.htm +47 -47
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/content.css +66 -66
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/dialog.css +117 -117
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/ui.css +988 -988
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/source_editor.htm +25 -25
- data/spec/rails_app/public/javascripts/tinymce/tiny_mce_popup.js +4 -4
- data/spec/rails_app/public/stylesheets/lolita/default.css +169 -169
- data/spec/rails_app/public/stylesheets/lolita/style.css +214 -214
- data/spec/routing/routes_spec.rb +15 -15
- data/spec/spec_helper.rb +46 -46
- data/spec/support/factories/category.rb +3 -3
- data/spec/support/factories/post.rb +4 -4
- data/spec/support/factories/tag.rb +2 -2
- data/spec/support/formatter_spec.rb +42 -42
- metadata +31 -31
data/features/support/env.rb
CHANGED
@@ -1,73 +1,73 @@
|
|
1
|
-
# IMPORTANT: This file is generated by cucumber-rails - edit at your own peril.
|
2
|
-
# It is recommended to regenerate this file in the future when you upgrade to a
|
3
|
-
# newer version of cucumber-rails. Consider adding your own code to a new file
|
4
|
-
# instead of editing this one. Cucumber will automatically load all features/**/*.rb
|
5
|
-
# files.
|
6
|
-
|
7
|
-
ENV["RAILS_ENV"] ||= "test"
|
8
|
-
require File.expand_path(File.dirname(__FILE__) + '/../../spec/rails_app/config/environment')
|
9
|
-
|
10
|
-
require 'cucumber/formatter/unicode' # Remove this line if you don't want Cucumber Unicode support
|
11
|
-
require 'cucumber/rails/world'
|
12
|
-
require 'cucumber/rails/active_record'
|
13
|
-
require 'cucumber/web/tableish'
|
14
|
-
|
15
|
-
require 'capybara/rails'
|
16
|
-
require 'capybara/cucumber'
|
17
|
-
require 'capybara/session'
|
18
|
-
#require 'cucumber/rails/capybara_javascript_emulation' # Lets you click links with onclick javascript handlers without using @culerity or @javascript
|
19
|
-
# Capybara defaults to XPath selectors rather than Webrat's default of CSS3. In
|
20
|
-
# order to ease the transition to Capybara we set the default here. If you'd
|
21
|
-
# prefer to use XPath just remove this line and adjust any selectors in your
|
22
|
-
# steps to use the XPath syntax.
|
23
|
-
Capybara.default_selector = :css
|
24
|
-
|
25
|
-
require 'akephalos'
|
26
|
-
Capybara.default_driver = :akephalos
|
27
|
-
#Capybara.default_driver = :selenium
|
28
|
-
|
29
|
-
# If you set this to false, any error raised from within your app will bubble
|
30
|
-
# up to your step definition and out to cucumber unless you catch it somewhere
|
31
|
-
# on the way. You can make Rails rescue errors and render error pages on a
|
32
|
-
# per-scenario basis by tagging a scenario or feature with the @allow-rescue tag.
|
33
|
-
#
|
34
|
-
# If you set this to true, Rails will rescue all errors and render error
|
35
|
-
# pages, more or less in the same way your application would behave in the
|
36
|
-
# default production environment. It's not recommended to do this for all
|
37
|
-
# of your scenarios, as this makes it hard to discover errors in your application.
|
38
|
-
ActionController::Base.allow_rescue = false
|
39
|
-
|
40
|
-
# If you set this to true, each scenario will run in a database transaction.
|
41
|
-
# You can still turn off transactions on a per-scenario basis, simply tagging
|
42
|
-
# a feature or scenario with the @no-txn tag. If you are using Capybara,
|
43
|
-
# tagging with @culerity or @javascript will also turn transactions off.
|
44
|
-
#
|
45
|
-
# If you set this to false, transactions will be off for all scenarios,
|
46
|
-
# regardless of whether you use @no-txn or not.
|
47
|
-
#
|
48
|
-
# Beware that turning transactions off will leave data in your database
|
49
|
-
# after each scenario, which can lead to hard-to-debug failures in
|
50
|
-
# subsequent scenarios. If you do this, we recommend you create a Before
|
51
|
-
# block that will explicitly put your database in a known state.
|
52
|
-
#Cucumber::Rails::World.use_transactional_fixtures = true
|
53
|
-
# How to clean your database when transactions are turned off. See
|
54
|
-
# http://github.com/bmabey/database_cleaner for more info.
|
55
|
-
if defined?(ActiveRecord::Base)
|
56
|
-
begin
|
57
|
-
require 'database_cleaner'
|
58
|
-
DatabaseCleaner.strategy = :truncation
|
59
|
-
rescue LoadError => ignore_if_database_cleaner_not_present
|
60
|
-
end
|
61
|
-
end
|
62
|
-
|
63
|
-
require 'mongoid'
|
64
|
-
Mongoid.configure do |config|
|
65
|
-
name = "lolita3_test"
|
66
|
-
host = "localhost"
|
67
|
-
config.master = Mongo::Connection.new.db(name)
|
68
|
-
config.slaves = [
|
69
|
-
Mongo::Connection.new(host, 27017, :slave_ok => true).db(name)
|
70
|
-
]
|
71
|
-
#config.use_object_ids = true
|
72
|
-
config.persist_in_safe_mode = false
|
73
|
-
end
|
1
|
+
# IMPORTANT: This file is generated by cucumber-rails - edit at your own peril.
|
2
|
+
# It is recommended to regenerate this file in the future when you upgrade to a
|
3
|
+
# newer version of cucumber-rails. Consider adding your own code to a new file
|
4
|
+
# instead of editing this one. Cucumber will automatically load all features/**/*.rb
|
5
|
+
# files.
|
6
|
+
|
7
|
+
ENV["RAILS_ENV"] ||= "test"
|
8
|
+
require File.expand_path(File.dirname(__FILE__) + '/../../spec/rails_app/config/environment')
|
9
|
+
|
10
|
+
require 'cucumber/formatter/unicode' # Remove this line if you don't want Cucumber Unicode support
|
11
|
+
require 'cucumber/rails/world'
|
12
|
+
require 'cucumber/rails/active_record'
|
13
|
+
require 'cucumber/web/tableish'
|
14
|
+
|
15
|
+
require 'capybara/rails'
|
16
|
+
require 'capybara/cucumber'
|
17
|
+
require 'capybara/session'
|
18
|
+
#require 'cucumber/rails/capybara_javascript_emulation' # Lets you click links with onclick javascript handlers without using @culerity or @javascript
|
19
|
+
# Capybara defaults to XPath selectors rather than Webrat's default of CSS3. In
|
20
|
+
# order to ease the transition to Capybara we set the default here. If you'd
|
21
|
+
# prefer to use XPath just remove this line and adjust any selectors in your
|
22
|
+
# steps to use the XPath syntax.
|
23
|
+
Capybara.default_selector = :css
|
24
|
+
|
25
|
+
require 'akephalos'
|
26
|
+
Capybara.default_driver = :akephalos
|
27
|
+
#Capybara.default_driver = :selenium
|
28
|
+
|
29
|
+
# If you set this to false, any error raised from within your app will bubble
|
30
|
+
# up to your step definition and out to cucumber unless you catch it somewhere
|
31
|
+
# on the way. You can make Rails rescue errors and render error pages on a
|
32
|
+
# per-scenario basis by tagging a scenario or feature with the @allow-rescue tag.
|
33
|
+
#
|
34
|
+
# If you set this to true, Rails will rescue all errors and render error
|
35
|
+
# pages, more or less in the same way your application would behave in the
|
36
|
+
# default production environment. It's not recommended to do this for all
|
37
|
+
# of your scenarios, as this makes it hard to discover errors in your application.
|
38
|
+
ActionController::Base.allow_rescue = false
|
39
|
+
|
40
|
+
# If you set this to true, each scenario will run in a database transaction.
|
41
|
+
# You can still turn off transactions on a per-scenario basis, simply tagging
|
42
|
+
# a feature or scenario with the @no-txn tag. If you are using Capybara,
|
43
|
+
# tagging with @culerity or @javascript will also turn transactions off.
|
44
|
+
#
|
45
|
+
# If you set this to false, transactions will be off for all scenarios,
|
46
|
+
# regardless of whether you use @no-txn or not.
|
47
|
+
#
|
48
|
+
# Beware that turning transactions off will leave data in your database
|
49
|
+
# after each scenario, which can lead to hard-to-debug failures in
|
50
|
+
# subsequent scenarios. If you do this, we recommend you create a Before
|
51
|
+
# block that will explicitly put your database in a known state.
|
52
|
+
#Cucumber::Rails::World.use_transactional_fixtures = true
|
53
|
+
# How to clean your database when transactions are turned off. See
|
54
|
+
# http://github.com/bmabey/database_cleaner for more info.
|
55
|
+
if defined?(ActiveRecord::Base)
|
56
|
+
begin
|
57
|
+
require 'database_cleaner'
|
58
|
+
DatabaseCleaner.strategy = :truncation
|
59
|
+
rescue LoadError => ignore_if_database_cleaner_not_present
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
require 'mongoid'
|
64
|
+
Mongoid.configure do |config|
|
65
|
+
name = "lolita3_test"
|
66
|
+
host = "localhost"
|
67
|
+
config.master = Mongo::Connection.new.db(name)
|
68
|
+
config.slaves = [
|
69
|
+
Mongo::Connection.new(host, 27017, :slave_ok => true).db(name)
|
70
|
+
]
|
71
|
+
#config.use_object_ids = true
|
72
|
+
config.persist_in_safe_mode = false
|
73
|
+
end
|
data/features/support/paths.rb
CHANGED
@@ -1,35 +1,35 @@
|
|
1
|
-
module NavigationHelpers
|
2
|
-
# Maps a name to a path. Used by the
|
3
|
-
#
|
4
|
-
# When /^I go to (.+)$/ do |page_name|
|
5
|
-
#
|
6
|
-
# step definition in web_steps.rb
|
7
|
-
#
|
8
|
-
def path_to(page_name)
|
9
|
-
case page_name
|
10
|
-
|
11
|
-
when /list/
|
12
|
-
lolita_posts_path
|
13
|
-
when /the home\s?page/
|
14
|
-
'/'
|
15
|
-
|
16
|
-
# Add more mappings here.
|
17
|
-
# Here is an example that pulls values out of the Regexp:
|
18
|
-
#
|
19
|
-
# when /^(.*)'s profile page$/i
|
20
|
-
# user_profile_path(User.find_by_login($1))
|
21
|
-
|
22
|
-
else
|
23
|
-
begin
|
24
|
-
page_name =~ /the (.*) page/
|
25
|
-
path_components = $1.split(/\s+/)
|
26
|
-
self.send(path_components.push('path').join('_').to_sym)
|
27
|
-
rescue Object => e
|
28
|
-
raise "Can't find mapping from \"#{page_name}\" to a path.\n" +
|
29
|
-
"Now, go and add a mapping in #{__FILE__}"
|
30
|
-
end
|
31
|
-
end
|
32
|
-
end
|
33
|
-
end
|
34
|
-
|
35
|
-
World(NavigationHelpers)
|
1
|
+
module NavigationHelpers
|
2
|
+
# Maps a name to a path. Used by the
|
3
|
+
#
|
4
|
+
# When /^I go to (.+)$/ do |page_name|
|
5
|
+
#
|
6
|
+
# step definition in web_steps.rb
|
7
|
+
#
|
8
|
+
def path_to(page_name)
|
9
|
+
case page_name
|
10
|
+
|
11
|
+
when /list/
|
12
|
+
lolita_posts_path
|
13
|
+
when /the home\s?page/
|
14
|
+
'/'
|
15
|
+
|
16
|
+
# Add more mappings here.
|
17
|
+
# Here is an example that pulls values out of the Regexp:
|
18
|
+
#
|
19
|
+
# when /^(.*)'s profile page$/i
|
20
|
+
# user_profile_path(User.find_by_login($1))
|
21
|
+
|
22
|
+
else
|
23
|
+
begin
|
24
|
+
page_name =~ /the (.*) page/
|
25
|
+
path_components = $1.split(/\s+/)
|
26
|
+
self.send(path_components.push('path').join('_').to_sym)
|
27
|
+
rescue Object => e
|
28
|
+
raise "Can't find mapping from \"#{page_name}\" to a path.\n" +
|
29
|
+
"Now, go and add a mapping in #{__FILE__}"
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
World(NavigationHelpers)
|
@@ -1,22 +1,22 @@
|
|
1
|
-
module Lolita
|
2
|
-
module Generators
|
3
|
-
module FileHelper
|
4
|
-
|
5
|
-
private
|
6
|
-
|
7
|
-
def copy_dir(source,options={})
|
8
|
-
root_dir=File.join(options[:root] || Lolita.root,source)
|
9
|
-
Dir[File.join(root_dir, "**/*")].each do |file|
|
10
|
-
relative = file.gsub(/^#{root_dir}\//, '')
|
11
|
-
if File.file?(file)
|
12
|
-
copy_file file, File.join(Rails.root, source, relative)
|
13
|
-
end
|
14
|
-
end
|
15
|
-
end
|
16
|
-
|
17
|
-
def file_exists? path
|
18
|
-
File.exists?(File.join(destination_root, path))
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
1
|
+
module Lolita
|
2
|
+
module Generators
|
3
|
+
module FileHelper
|
4
|
+
|
5
|
+
private
|
6
|
+
|
7
|
+
def copy_dir(source,options={})
|
8
|
+
root_dir=File.join(options[:root] || Lolita.root,source)
|
9
|
+
Dir[File.join(root_dir, "**/*")].each do |file|
|
10
|
+
relative = file.gsub(/^#{root_dir}\//, '')
|
11
|
+
if File.file?(file)
|
12
|
+
copy_file file, File.join(Rails.root, source, relative)
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
def file_exists? path
|
18
|
+
File.exists?(File.join(destination_root, path))
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -1,19 +1,19 @@
|
|
1
|
-
require 'generators/helpers/file_helper'
|
2
|
-
module Lolita
|
3
|
-
module Generators
|
4
|
-
class AssetsGenerator < Rails::Generators::Base
|
5
|
-
include Lolita::Generators::FileHelper
|
6
|
-
desc "Copy all from lolita public directory to project public directory."
|
7
|
-
def copy_all
|
8
|
-
copy_dir("public")
|
9
|
-
end
|
10
|
-
|
11
|
-
def call_modules
|
12
|
-
Lolita.modules.each do |module_name|
|
13
|
-
command="#{module_name.to_s.underscore.gsub("/","_")}:assets"
|
14
|
-
invoke command rescue nil
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
1
|
+
require 'generators/helpers/file_helper'
|
2
|
+
module Lolita
|
3
|
+
module Generators
|
4
|
+
class AssetsGenerator < Rails::Generators::Base
|
5
|
+
include Lolita::Generators::FileHelper
|
6
|
+
desc "Copy all from lolita public directory to project public directory."
|
7
|
+
def copy_all
|
8
|
+
copy_dir("public")
|
9
|
+
end
|
10
|
+
|
11
|
+
def call_modules
|
12
|
+
Lolita.modules.each do |module_name|
|
13
|
+
command="#{module_name.to_s.underscore.gsub("/","_")}:assets"
|
14
|
+
invoke command rescue nil
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
19
|
end
|
@@ -1,28 +1,28 @@
|
|
1
|
-
require 'generators/helpers/file_helper'
|
2
|
-
|
3
|
-
module Lolita
|
4
|
-
module Generators
|
5
|
-
class InstallGenerator < Rails::Generators::Base
|
6
|
-
include Lolita::Generators::FileHelper
|
7
|
-
source_root File.expand_path("../../templates", __FILE__)
|
8
|
-
desc "Create lolita initializer. Copy assets and create migrations. Load seed data."
|
9
|
-
|
10
|
-
|
11
|
-
def copy_initializer
|
12
|
-
template "lolita.rb", "config/initializers/lolita.rb" unless file_exists?("config/initializers/lolita.rb")
|
13
|
-
end
|
14
|
-
|
15
|
-
def copy_assets
|
16
|
-
generate("lolita:assets")
|
17
|
-
end
|
18
|
-
|
19
|
-
def install_modules
|
20
|
-
Lolita.modules.each do |module_name|
|
21
|
-
|
22
|
-
invoke "#{module_name.to_s.underscore.gsub("/","_")}:install" rescue nil
|
23
|
-
end
|
24
|
-
end
|
25
|
-
|
26
|
-
end
|
27
|
-
end
|
28
|
-
end
|
1
|
+
require 'generators/helpers/file_helper'
|
2
|
+
|
3
|
+
module Lolita
|
4
|
+
module Generators
|
5
|
+
class InstallGenerator < Rails::Generators::Base
|
6
|
+
include Lolita::Generators::FileHelper
|
7
|
+
source_root File.expand_path("../../templates", __FILE__)
|
8
|
+
desc "Create lolita initializer. Copy assets and create migrations. Load seed data."
|
9
|
+
|
10
|
+
|
11
|
+
def copy_initializer
|
12
|
+
template "lolita.rb", "config/initializers/lolita.rb" unless file_exists?("config/initializers/lolita.rb")
|
13
|
+
end
|
14
|
+
|
15
|
+
def copy_assets
|
16
|
+
generate("lolita:assets")
|
17
|
+
end
|
18
|
+
|
19
|
+
def install_modules
|
20
|
+
Lolita.modules.each do |module_name|
|
21
|
+
|
22
|
+
invoke "#{module_name.to_s.underscore.gsub("/","_")}:install" rescue nil
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -1,19 +1,19 @@
|
|
1
|
-
|
2
|
-
Lolita.setup do |config|
|
3
|
-
# ==> User and authentication configuration
|
4
|
-
# Add one or more of your user classes to Lolita
|
5
|
-
# config.user_classes << MyUser
|
6
|
-
|
7
|
-
# Define authentication for Lolita controllers.
|
8
|
-
# Call some of your own methods
|
9
|
-
# config.authentication=:is_admin?
|
10
|
-
# Or use some customized logic
|
11
|
-
# config.authentication={
|
12
|
-
# current_user.is_a?(Admin) || current_user.has_role?(:admin)
|
13
|
-
# }
|
14
|
-
|
15
|
-
<% if defined?(Devise) %>
|
16
|
-
config.user_classes << User
|
17
|
-
config.authentication=:authenticate_user!
|
18
|
-
<% end %>
|
19
|
-
end
|
1
|
+
|
2
|
+
Lolita.setup do |config|
|
3
|
+
# ==> User and authentication configuration
|
4
|
+
# Add one or more of your user classes to Lolita
|
5
|
+
# config.user_classes << MyUser
|
6
|
+
|
7
|
+
# Define authentication for Lolita controllers.
|
8
|
+
# Call some of your own methods
|
9
|
+
# config.authentication=:is_admin?
|
10
|
+
# Or use some customized logic
|
11
|
+
# config.authentication={
|
12
|
+
# current_user.is_a?(Admin) || current_user.has_role?(:admin)
|
13
|
+
# }
|
14
|
+
|
15
|
+
<% if defined?(Devise) %>
|
16
|
+
config.user_classes << User
|
17
|
+
config.authentication=:authenticate_user!
|
18
|
+
<% end %>
|
19
|
+
end
|
data/lib/lolita.rb
CHANGED
@@ -1,184 +1,184 @@
|
|
1
|
-
|
2
|
-
$:<<File.dirname(__FILE__) unless $:.include?(File.dirname(__FILE__))
|
3
|
-
LOLITA_VERSION=File.read(File.expand_path("../../VERSION",__FILE__)).gsub(/[^.\w]/,"")
|
4
|
-
puts "=> Lolita #{LOLITA_VERSION} starting#{defined?(Rails) ? " with Rails" : ""}"
|
5
|
-
|
6
|
-
# TODO should allow run lolita seperated
|
7
|
-
# unless (["-d","--debug"] & ARGV).empty?
|
8
|
-
# require "ruby-debug"
|
9
|
-
# Debugger.settings[:autoeval]=true
|
10
|
-
# else
|
11
|
-
# unless self.respond_to?(:debugger)
|
12
|
-
# def debugger
|
13
|
-
# warn "Debugger called at #{caller.first} was ignored, run lolita with -d to attatch debugger."
|
14
|
-
# end
|
15
|
-
# end
|
16
|
-
# end
|
17
|
-
|
18
|
-
require 'abstract'
|
19
|
-
unless defined?(ActiveSupport)
|
20
|
-
require 'active_support/core_ext/numeric/time'
|
21
|
-
require 'active_support/core_ext/date_time/conversions'
|
22
|
-
require 'active_support/concern'
|
23
|
-
require 'active_support/callbacks'
|
24
|
-
require 'active_support/dependencies'
|
25
|
-
end
|
26
|
-
require 'lolita/errors'
|
27
|
-
require "lolita/hooks"
|
28
|
-
# Require all ruby extensions
|
29
|
-
Dir["#{File.dirname(__FILE__)}/lolita/ruby_ext/**/*.*"].each do |path|
|
30
|
-
require path
|
31
|
-
end
|
32
|
-
|
33
|
-
module Lolita
|
34
|
-
include Lolita::Hooks
|
35
|
-
add_hook :before_setup, :after_setup, :after_routes_loaded,:before_routes_loaded
|
36
|
-
|
37
|
-
autoload(:LazyLoader,'lolita/lazy_loader')
|
38
|
-
autoload(:VERSION,'lolita/version')
|
39
|
-
autoload(:ObservedArray,'lolita/observed_array')
|
40
|
-
autoload(:Builder,'lolita/builder')
|
41
|
-
module Builder
|
42
|
-
autoload(:Custom, 'lolita/builder')
|
43
|
-
end
|
44
|
-
autoload(:BaseConfiguration,'lolita/base_configuration')
|
45
|
-
|
46
|
-
module Adapter
|
47
|
-
autoload :AbstractAdapter, 'lolita/adapter/abstract_adapter'
|
48
|
-
autoload :ActiveRecord, 'lolita/adapter/active_record'
|
49
|
-
autoload :Mongoid, 'lolita/adapter/mongoid'
|
50
|
-
end
|
51
|
-
|
52
|
-
module DBI
|
53
|
-
autoload :Base, 'lolita/dbi/base'
|
54
|
-
end
|
55
|
-
|
56
|
-
module Hooks
|
57
|
-
autoload :NamedHook, "lolita/hooks/named_hook"
|
58
|
-
end
|
59
|
-
|
60
|
-
|
61
|
-
module Configuration
|
62
|
-
autoload :Factory, 'lolita/configuration/factory'
|
63
|
-
autoload :Base, 'lolita/configuration/base'
|
64
|
-
autoload :Column, 'lolita/configuration/column'
|
65
|
-
autoload :Columns, 'lolita/configuration/columns'
|
66
|
-
autoload :Fields, 'lolita/configuration/fields'
|
67
|
-
autoload :FieldSet, 'lolita/configuration/field_set'
|
68
|
-
autoload :List, 'lolita/configuration/list'
|
69
|
-
autoload :Page, 'lolita/configuration/page'
|
70
|
-
autoload :Tabs, 'lolita/configuration/tabs'
|
71
|
-
autoload :Filter, 'lolita/configuration/filter'
|
72
|
-
|
73
|
-
module Field
|
74
|
-
extend Lolita::Configuration::Factory
|
75
|
-
autoload :Base, 'lolita/configuration/field'
|
76
|
-
["field"].each do |type|
|
77
|
-
Dir["#{File.dirname(__FILE__)}/lolita/configuration/#{type}/**/*.*"].each do |path|
|
78
|
-
base_name=File.basename(path,".rb")
|
79
|
-
autoload :"#{base_name.camelize}", "lolita/configuration/#{type}/#{base_name}"
|
80
|
-
end
|
81
|
-
end
|
82
|
-
end
|
83
|
-
|
84
|
-
module Tab
|
85
|
-
extend Lolita::Configuration::Factory
|
86
|
-
autoload :Base, 'lolita/configuration/tab'
|
87
|
-
["tab"].each do |type|
|
88
|
-
Dir["#{File.dirname(__FILE__)}/lolita/configuration/#{type}/**/*.*"].each do |path|
|
89
|
-
base_name=File.basename(path,".rb")
|
90
|
-
autoload :"#{base_name.camelize}", "lolita/configuration/#{type}/#{base_name}"
|
91
|
-
end
|
92
|
-
end
|
93
|
-
end
|
94
|
-
|
95
|
-
def self.included(base)
|
96
|
-
base.class_eval do
|
97
|
-
extend ClassMethods
|
98
|
-
def lolita
|
99
|
-
self.class.lolita
|
100
|
-
end
|
101
|
-
end
|
102
|
-
end
|
103
|
-
|
104
|
-
module ClassMethods
|
105
|
-
def lolita(&block)
|
106
|
-
Lolita::LazyLoader.lazy_load(self,:@lolita,Lolita::Configuration::Base,self,&block)
|
107
|
-
end
|
108
|
-
def lolita=(value)
|
109
|
-
if value.is_a?(Lolita::Configuration::Base)
|
110
|
-
@lolita=value
|
111
|
-
else
|
112
|
-
raise ArgumentError.new("Only Lolita::Configuration::Base is acceptable.")
|
113
|
-
end
|
114
|
-
end
|
115
|
-
end
|
116
|
-
end
|
117
|
-
|
118
|
-
module Test
|
119
|
-
autoload :Matchers, 'lolita/test/matchers'
|
120
|
-
end
|
121
|
-
|
122
|
-
module Controllers
|
123
|
-
autoload :InternalHelpers, 'lolita/controllers/internal_helpers'
|
124
|
-
autoload :UserHelpers, 'lolita/controllers/user_helpers'
|
125
|
-
autoload :UrlHelpers, 'lolita/controllers/url_helpers'
|
126
|
-
autoload :ComponentHelpers, 'lolita/controllers/component_helpers'
|
127
|
-
autoload :ViewUserHelpers, 'lolita/controllers/view_user_helpers'
|
128
|
-
end
|
129
|
-
|
130
|
-
module Navigation
|
131
|
-
autoload :Tree, "lolita/navigation/tree"
|
132
|
-
autoload :Branch, "lolita/navigation/branch"
|
133
|
-
end
|
134
|
-
|
135
|
-
module Support
|
136
|
-
autoload :Formatter, 'lolita/support/formatter'
|
137
|
-
class Formatter
|
138
|
-
autoload :Rails, 'lolita/support/formatter/rails'
|
139
|
-
end
|
140
|
-
end
|
141
|
-
|
142
|
-
@@scopes={}
|
143
|
-
|
144
|
-
def self.scope name=nil
|
145
|
-
name||=scope_name
|
146
|
-
@@scopes[name]||=Lolita::BaseConfiguration.new(name)
|
147
|
-
@@scopes[name]
|
148
|
-
end
|
149
|
-
|
150
|
-
def self.setup
|
151
|
-
self.run(:before_setup)
|
152
|
-
yield scope
|
153
|
-
self.run(:after_setup)
|
154
|
-
end
|
155
|
-
|
156
|
-
def self.scope_name
|
157
|
-
:default
|
158
|
-
end
|
159
|
-
|
160
|
-
def self.root
|
161
|
-
@@root||=File.expand_path("#{__FILE__}/../..")
|
162
|
-
end
|
163
|
-
|
164
|
-
def self.app_root
|
165
|
-
@@app_root||=File.join(File.expand_path("#{__FILE__}/../.."),"app")
|
166
|
-
end
|
167
|
-
|
168
|
-
def self.method_missing method_name, *args, &block
|
169
|
-
scope.send(method_name,*args,&block)
|
170
|
-
end
|
171
|
-
|
172
|
-
def self.rails3?
|
173
|
-
defined?(::Rails) && ::Rails::VERSION::MAJOR == 3
|
174
|
-
end
|
175
|
-
|
176
|
-
module Generators
|
177
|
-
autoload :FileHelper, File.join(Lolita.root,"lib","generators","helpers","file_helper")
|
178
|
-
end
|
179
|
-
|
180
|
-
end
|
181
|
-
|
182
|
-
if Lolita.rails3?
|
183
|
-
require 'lolita/rails/all'
|
184
|
-
end
|
1
|
+
|
2
|
+
$:<<File.dirname(__FILE__) unless $:.include?(File.dirname(__FILE__))
|
3
|
+
LOLITA_VERSION=File.read(File.expand_path("../../VERSION",__FILE__)).gsub(/[^.\w]/,"")
|
4
|
+
puts "=> Lolita #{LOLITA_VERSION} starting#{defined?(Rails) ? " with Rails" : ""}"
|
5
|
+
|
6
|
+
# TODO should allow run lolita seperated
|
7
|
+
# unless (["-d","--debug"] & ARGV).empty?
|
8
|
+
# require "ruby-debug"
|
9
|
+
# Debugger.settings[:autoeval]=true
|
10
|
+
# else
|
11
|
+
# unless self.respond_to?(:debugger)
|
12
|
+
# def debugger
|
13
|
+
# warn "Debugger called at #{caller.first} was ignored, run lolita with -d to attatch debugger."
|
14
|
+
# end
|
15
|
+
# end
|
16
|
+
# end
|
17
|
+
|
18
|
+
require 'abstract'
|
19
|
+
unless defined?(ActiveSupport)
|
20
|
+
require 'active_support/core_ext/numeric/time'
|
21
|
+
require 'active_support/core_ext/date_time/conversions'
|
22
|
+
require 'active_support/concern'
|
23
|
+
require 'active_support/callbacks'
|
24
|
+
require 'active_support/dependencies'
|
25
|
+
end
|
26
|
+
require 'lolita/errors'
|
27
|
+
require "lolita/hooks"
|
28
|
+
# Require all ruby extensions
|
29
|
+
Dir["#{File.dirname(__FILE__)}/lolita/ruby_ext/**/*.*"].each do |path|
|
30
|
+
require path
|
31
|
+
end
|
32
|
+
|
33
|
+
module Lolita
|
34
|
+
include Lolita::Hooks
|
35
|
+
add_hook :before_setup, :after_setup, :after_routes_loaded,:before_routes_loaded
|
36
|
+
|
37
|
+
autoload(:LazyLoader,'lolita/lazy_loader')
|
38
|
+
autoload(:VERSION,'lolita/version')
|
39
|
+
autoload(:ObservedArray,'lolita/observed_array')
|
40
|
+
autoload(:Builder,'lolita/builder')
|
41
|
+
module Builder
|
42
|
+
autoload(:Custom, 'lolita/builder')
|
43
|
+
end
|
44
|
+
autoload(:BaseConfiguration,'lolita/base_configuration')
|
45
|
+
|
46
|
+
module Adapter
|
47
|
+
autoload :AbstractAdapter, 'lolita/adapter/abstract_adapter'
|
48
|
+
autoload :ActiveRecord, 'lolita/adapter/active_record'
|
49
|
+
autoload :Mongoid, 'lolita/adapter/mongoid'
|
50
|
+
end
|
51
|
+
|
52
|
+
module DBI
|
53
|
+
autoload :Base, 'lolita/dbi/base'
|
54
|
+
end
|
55
|
+
|
56
|
+
module Hooks
|
57
|
+
autoload :NamedHook, "lolita/hooks/named_hook"
|
58
|
+
end
|
59
|
+
|
60
|
+
|
61
|
+
module Configuration
|
62
|
+
autoload :Factory, 'lolita/configuration/factory'
|
63
|
+
autoload :Base, 'lolita/configuration/base'
|
64
|
+
autoload :Column, 'lolita/configuration/column'
|
65
|
+
autoload :Columns, 'lolita/configuration/columns'
|
66
|
+
autoload :Fields, 'lolita/configuration/fields'
|
67
|
+
autoload :FieldSet, 'lolita/configuration/field_set'
|
68
|
+
autoload :List, 'lolita/configuration/list'
|
69
|
+
autoload :Page, 'lolita/configuration/page'
|
70
|
+
autoload :Tabs, 'lolita/configuration/tabs'
|
71
|
+
autoload :Filter, 'lolita/configuration/filter'
|
72
|
+
|
73
|
+
module Field
|
74
|
+
extend Lolita::Configuration::Factory
|
75
|
+
autoload :Base, 'lolita/configuration/field'
|
76
|
+
["field"].each do |type|
|
77
|
+
Dir["#{File.dirname(__FILE__)}/lolita/configuration/#{type}/**/*.*"].each do |path|
|
78
|
+
base_name=File.basename(path,".rb")
|
79
|
+
autoload :"#{base_name.camelize}", "lolita/configuration/#{type}/#{base_name}"
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
module Tab
|
85
|
+
extend Lolita::Configuration::Factory
|
86
|
+
autoload :Base, 'lolita/configuration/tab'
|
87
|
+
["tab"].each do |type|
|
88
|
+
Dir["#{File.dirname(__FILE__)}/lolita/configuration/#{type}/**/*.*"].each do |path|
|
89
|
+
base_name=File.basename(path,".rb")
|
90
|
+
autoload :"#{base_name.camelize}", "lolita/configuration/#{type}/#{base_name}"
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
95
|
+
def self.included(base)
|
96
|
+
base.class_eval do
|
97
|
+
extend ClassMethods
|
98
|
+
def lolita
|
99
|
+
self.class.lolita
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
103
|
+
|
104
|
+
module ClassMethods
|
105
|
+
def lolita(&block)
|
106
|
+
Lolita::LazyLoader.lazy_load(self,:@lolita,Lolita::Configuration::Base,self,&block)
|
107
|
+
end
|
108
|
+
def lolita=(value)
|
109
|
+
if value.is_a?(Lolita::Configuration::Base)
|
110
|
+
@lolita=value
|
111
|
+
else
|
112
|
+
raise ArgumentError.new("Only Lolita::Configuration::Base is acceptable.")
|
113
|
+
end
|
114
|
+
end
|
115
|
+
end
|
116
|
+
end
|
117
|
+
|
118
|
+
module Test
|
119
|
+
autoload :Matchers, 'lolita/test/matchers'
|
120
|
+
end
|
121
|
+
|
122
|
+
module Controllers
|
123
|
+
autoload :InternalHelpers, 'lolita/controllers/internal_helpers'
|
124
|
+
autoload :UserHelpers, 'lolita/controllers/user_helpers'
|
125
|
+
autoload :UrlHelpers, 'lolita/controllers/url_helpers'
|
126
|
+
autoload :ComponentHelpers, 'lolita/controllers/component_helpers'
|
127
|
+
autoload :ViewUserHelpers, 'lolita/controllers/view_user_helpers'
|
128
|
+
end
|
129
|
+
|
130
|
+
module Navigation
|
131
|
+
autoload :Tree, "lolita/navigation/tree"
|
132
|
+
autoload :Branch, "lolita/navigation/branch"
|
133
|
+
end
|
134
|
+
|
135
|
+
module Support
|
136
|
+
autoload :Formatter, 'lolita/support/formatter'
|
137
|
+
class Formatter
|
138
|
+
autoload :Rails, 'lolita/support/formatter/rails'
|
139
|
+
end
|
140
|
+
end
|
141
|
+
|
142
|
+
@@scopes={}
|
143
|
+
|
144
|
+
def self.scope name=nil
|
145
|
+
name||=scope_name
|
146
|
+
@@scopes[name]||=Lolita::BaseConfiguration.new(name)
|
147
|
+
@@scopes[name]
|
148
|
+
end
|
149
|
+
|
150
|
+
def self.setup
|
151
|
+
self.run(:before_setup)
|
152
|
+
yield scope
|
153
|
+
self.run(:after_setup)
|
154
|
+
end
|
155
|
+
|
156
|
+
def self.scope_name
|
157
|
+
:default
|
158
|
+
end
|
159
|
+
|
160
|
+
def self.root
|
161
|
+
@@root||=File.expand_path("#{__FILE__}/../..")
|
162
|
+
end
|
163
|
+
|
164
|
+
def self.app_root
|
165
|
+
@@app_root||=File.join(File.expand_path("#{__FILE__}/../.."),"app")
|
166
|
+
end
|
167
|
+
|
168
|
+
def self.method_missing method_name, *args, &block
|
169
|
+
scope.send(method_name,*args,&block)
|
170
|
+
end
|
171
|
+
|
172
|
+
def self.rails3?
|
173
|
+
defined?(::Rails) && ::Rails::VERSION::MAJOR == 3
|
174
|
+
end
|
175
|
+
|
176
|
+
module Generators
|
177
|
+
autoload :FileHelper, File.join(Lolita.root,"lib","generators","helpers","file_helper")
|
178
|
+
end
|
179
|
+
|
180
|
+
end
|
181
|
+
|
182
|
+
if Lolita.rails3?
|
183
|
+
require 'lolita/rails/all'
|
184
|
+
end
|