mirror of
https://github.com/zhigang1992/ProMotion.git
synced 2026-06-13 01:18:45 +08:00
Added files_dependencies to avoid issues with gems that don't detect dependencies properly
This commit is contained in:
@@ -9,4 +9,24 @@ Motion::Project::App.setup do |app|
|
||||
Dir.glob(File.join(core_lib, '**/*.rb')).reverse.each do |file|
|
||||
app.files.insert(insert_point, file)
|
||||
end
|
||||
|
||||
# For compatibility with libraries that don't use detect_dependencies. :-(
|
||||
app.files_dependencies({
|
||||
"#{core_lib}/cocoatouch/table_view_cell.rb" => [ "#{core_lib}/table/cell/table_view_cell_module.rb" ],
|
||||
"#{core_lib}/table/cell/table_view_cell_module.rb" => [ "#{core_lib}/styling/styling.rb" ],
|
||||
"#{core_lib}/delegate/delegate.rb" => [ "#{core_lib}/delegate/delegate_parent.rb" ],
|
||||
"#{core_lib}/delegate/delegate_parent.rb" => [ "#{core_lib}/delegate/delegate_module.rb" ],
|
||||
"#{core_lib}/delegate/delegate_module.rb" => [ "#{core_lib}/tabs/tabs.rb", "#{core_lib}/ipad/split_screen.rb" ],
|
||||
"#{core_lib}/screen/screen.rb" => [ "#{core_lib}/screen/screen_module.rb" ],
|
||||
"#{core_lib}/screen/screen_module.rb" => [ "#{core_lib}/screen/screen_navigation.rb" ],
|
||||
"#{core_lib}/table/data/table_data.rb" => [ "#{core_lib}/table/table.rb" ],
|
||||
"#{core_lib}/table/table.rb" => [
|
||||
"#{core_lib}/table/table_utils.rb",
|
||||
"#{core_lib}/table/extensions/searchable.rb",
|
||||
"#{core_lib}/table/extensions/refreshable.rb",
|
||||
"#{core_lib}/table/extensions/indexable.rb",
|
||||
"#{core_lib}/table/extensions/longpressable.rb"
|
||||
],
|
||||
"#{core_lib}/web/web_screen.rb" => [ "#{core_lib}/web/web_screen_module.rb" ],
|
||||
})
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user