Module: JsFixtures
- Defined in:
- lib/js_fixtures.rb,
lib/js_fixtures/base.rb,
lib/js_fixtures/html.rb,
lib/js_fixtures/html_s3.rb
Defined Under Namespace
Classes: Base, HTML, HTMLS3
Constant Summary
collapse
- PATH =
File.join(File.dirname(__FILE__), "js_fixtures")
Class Method Summary
collapse
Class Method Details
.config(type, &block) ⇒ Object
22
23
24
|
# File 'lib/js_fixtures.rb', line 22
def config(type, &block)
Base.config(type, &block)
end
|
.create(name, config, &block) ⇒ Object
10
11
12
|
# File 'lib/js_fixtures.rb', line 10
def create(name, config, &block)
Base.create(name, config, &block)
end
|
.generate_all ⇒ Object
18
19
20
|
# File 'lib/js_fixtures.rb', line 18
def generate_all
Base.generate_all
end
|
.get_location(name) ⇒ Object
14
15
16
|
# File 'lib/js_fixtures.rb', line 14
def get_location(name)
Base.get(name)
end
|