fb266d5eb9
[#36737359] Refactor the behavior of loading symbolic modules from cache by renaming methods so it's clearer what they do and ensure that cached modules from Fastlibs and directories can both be loaded, which was not previously possible since the demand_load_module only called load_module_from_file.
16 lines
345 B
Ruby
Executable File
16 lines
345 B
Ruby
Executable File
source 'http://rubygems.org'
|
|
|
|
# Need 3+ for ActiveSupport::Concern
|
|
gem 'activesupport', '>= 3.0.0'
|
|
# Needed for module caching in Mdm::ModuleDetails
|
|
gem 'pg', '>= 0.11'
|
|
|
|
group :development do
|
|
# running documentation generation tasks
|
|
gem 'rake'
|
|
# Markdown formatting for yard
|
|
gem 'redcarpet'
|
|
# generating documentation
|
|
gem 'yard'
|
|
end
|