sproutcore 1.0.1003 → 1.0.1008
Sign up to get free protection for your applications and to get access to all the features.
- data/Buildfile +15 -3
- data/Rakefile +3 -7
- data/VERSION.yml +2 -2
- data/buildtasks/manifest.rake +2 -0
- data/frameworks/sproutcore/Buildfile +2 -0
- data/frameworks/sproutcore/HISTORY +218 -203
- data/frameworks/sproutcore/README +47 -6
- data/frameworks/sproutcore/apps/tests/english.lproj/main_page.css +4 -0
- data/frameworks/sproutcore/design/Design Charts.graffle +2945 -4332
- data/frameworks/sproutcore/frameworks/bootstrap/README +9 -0
- data/frameworks/sproutcore/frameworks/bootstrap/core.js +7 -0
- data/frameworks/sproutcore/frameworks/bootstrap/setup_body_class_names.js +10 -0
- data/frameworks/sproutcore/frameworks/bootstrap/system/browser.js +28 -0
- data/frameworks/sproutcore/frameworks/bootstrap/system/loader.js +45 -0
- data/frameworks/sproutcore/frameworks/datastore/models/many_attribute.js +9 -8
- data/frameworks/sproutcore/frameworks/datastore/models/record.js +49 -9
- data/frameworks/sproutcore/frameworks/datastore/models/record_attribute.js +9 -0
- data/frameworks/sproutcore/frameworks/datastore/models/single_attribute.js +3 -2
- data/frameworks/sproutcore/frameworks/datastore/system/nested_store.js +81 -8
- data/frameworks/sproutcore/frameworks/datastore/system/query.js +26 -5
- data/frameworks/sproutcore/frameworks/datastore/system/record_array.js +47 -0
- data/frameworks/sproutcore/frameworks/datastore/system/store.js +164 -32
- data/frameworks/sproutcore/frameworks/datastore/tests/models/many_attribute.js +32 -4
- data/frameworks/sproutcore/frameworks/datastore/tests/models/record/error_methods.js +56 -0
- data/frameworks/sproutcore/frameworks/datastore/tests/models/record/normalize.js +1 -1
- data/frameworks/sproutcore/frameworks/datastore/tests/models/record/unknownProperty.js +15 -0
- data/frameworks/sproutcore/frameworks/datastore/tests/models/record/writeAttribute.js +16 -1
- data/frameworks/sproutcore/frameworks/datastore/tests/models/record_attribute.js +1 -1
- data/frameworks/sproutcore/frameworks/datastore/tests/models/single_attribute.js +22 -1
- data/frameworks/sproutcore/frameworks/datastore/tests/system/nested_store/chain.js +32 -1
- data/frameworks/sproutcore/frameworks/datastore/tests/system/nested_store/core_methods.js +70 -0
- data/frameworks/sproutcore/frameworks/datastore/tests/system/query/evaluation.js +12 -0
- data/frameworks/sproutcore/frameworks/datastore/tests/system/record_array/error_methods.js +50 -0
- data/frameworks/sproutcore/frameworks/datastore/tests/system/store/commitRecord.js +9 -9
- data/frameworks/sproutcore/frameworks/datastore/tests/system/store/core_methods.js +8 -1
- data/frameworks/sproutcore/frameworks/datastore/tests/system/store/dataHashDidChange.js +79 -0
- data/frameworks/sproutcore/frameworks/datastore/tests/system/store/dataSourceCallbacks.js +24 -0
- data/frameworks/sproutcore/frameworks/datastore/tests/system/store/error_methods.js +62 -0
- data/frameworks/sproutcore/frameworks/datastore/tests/system/store/init.js +2 -0
- data/frameworks/sproutcore/frameworks/debug/core.js +10 -6
- data/frameworks/sproutcore/frameworks/designer/controllers/page_design.js +43 -18
- data/frameworks/sproutcore/frameworks/designer/core.js +10 -0
- data/frameworks/sproutcore/frameworks/designer/english.lproj/selection_handles.css +58 -0
- data/frameworks/sproutcore/frameworks/designer/{views/mixins → mixins}/button.js +0 -0
- data/frameworks/sproutcore/frameworks/designer/views/{controls/button.js → button.js} +6 -2
- data/frameworks/sproutcore/frameworks/designer/views/designer.js +566 -136
- data/frameworks/sproutcore/frameworks/designer/views/selection_handles.js +77 -0
- data/frameworks/sproutcore/frameworks/desktop/core.js +12 -0
- data/frameworks/sproutcore/frameworks/desktop/english.lproj/alert.css +1 -1
- data/frameworks/sproutcore/frameworks/desktop/english.lproj/drag.css +3 -2
- data/frameworks/sproutcore/frameworks/desktop/english.lproj/list_item.css +0 -36
- data/frameworks/sproutcore/frameworks/desktop/english.lproj/menu.css +14 -0
- data/frameworks/sproutcore/frameworks/desktop/english.lproj/modal.css +4 -0
- data/frameworks/sproutcore/frameworks/desktop/english.lproj/slider.css +2 -0
- data/frameworks/sproutcore/frameworks/desktop/english.lproj/tab.css +0 -4
- data/frameworks/sproutcore/frameworks/desktop/mixins/collection_view_delegate.js +8 -5
- data/frameworks/sproutcore/frameworks/desktop/panes/alert.js +2 -2
- data/frameworks/sproutcore/frameworks/desktop/panes/menu.js +100 -111
- data/frameworks/sproutcore/frameworks/desktop/panes/panel.js +1 -1
- data/frameworks/sproutcore/frameworks/desktop/panes/picker.js +51 -13
- data/frameworks/sproutcore/frameworks/desktop/panes/{drop_down.js → select_button.js} +70 -109
- data/frameworks/sproutcore/frameworks/desktop/panes/sheet.js +8 -0
- data/frameworks/sproutcore/frameworks/desktop/system/root_responder.js +69 -23
- data/frameworks/sproutcore/frameworks/desktop/system/undo_manager.js +4 -4
- data/frameworks/sproutcore/frameworks/desktop/tests/panes/menu/methods.js +2 -0
- data/frameworks/sproutcore/frameworks/desktop/tests/panes/{dropDown → select_button}/methods.js +15 -11
- data/frameworks/sproutcore/frameworks/desktop/tests/panes/{dropDown → select_button}/ui.js +22 -22
- data/frameworks/sproutcore/frameworks/desktop/tests/views/button/methods.js +1 -1
- data/frameworks/sproutcore/frameworks/desktop/tests/views/checkbox/methods.js +0 -1
- data/frameworks/sproutcore/frameworks/desktop/tests/views/collection/deleteSelection.js +1 -1
- data/frameworks/sproutcore/frameworks/desktop/tests/views/collection/deselect.js +19 -3
- data/frameworks/sproutcore/frameworks/desktop/tests/views/collection/itemViewForContentIndex.js +1 -1
- data/frameworks/sproutcore/frameworks/desktop/tests/views/collection/mouse.js +53 -28
- data/frameworks/sproutcore/frameworks/desktop/tests/views/collection/select.js +6 -6
- data/frameworks/sproutcore/frameworks/desktop/tests/views/collection/selectNextItem.js +23 -9
- data/frameworks/sproutcore/frameworks/desktop/tests/views/collection/selectPreviousItem.js +24 -10
- data/frameworks/sproutcore/frameworks/desktop/tests/views/list/rowHeightForContentIndex.js +1 -1
- data/frameworks/sproutcore/frameworks/desktop/tests/views/list/ui_row_heights.js +1 -1
- data/frameworks/sproutcore/frameworks/desktop/tests/views/progress/ui.js +10 -3
- data/frameworks/sproutcore/frameworks/desktop/tests/views/radio/methods.js +1 -1
- data/frameworks/sproutcore/frameworks/desktop/tests/views/scroll/ui.js +50 -28
- data/frameworks/sproutcore/frameworks/desktop/tests/views/scroller/methods.js +6 -6
- data/frameworks/sproutcore/frameworks/desktop/tests/views/segmented/methods.js +3 -3
- data/frameworks/sproutcore/frameworks/desktop/tests/views/segmented/ui.js +8 -8
- data/frameworks/sproutcore/frameworks/desktop/tests/views/select_field/methods.js +1 -1
- data/frameworks/sproutcore/frameworks/desktop/tests/views/tab/methods.js +1 -1
- data/frameworks/sproutcore/frameworks/desktop/views/button.js +5 -3
- data/frameworks/sproutcore/frameworks/desktop/views/checkbox.js +4 -3
- data/frameworks/sproutcore/frameworks/desktop/views/collection.js +125 -96
- data/frameworks/sproutcore/frameworks/desktop/views/grid.js +1 -0
- data/frameworks/sproutcore/frameworks/desktop/views/list.js +68 -18
- data/frameworks/sproutcore/frameworks/desktop/views/list_item.js +134 -56
- data/frameworks/sproutcore/frameworks/desktop/views/menu_item.js +18 -11
- data/frameworks/sproutcore/frameworks/desktop/views/menu_scroll.js +562 -2
- data/frameworks/sproutcore/frameworks/desktop/views/popup_button.js +13 -0
- data/frameworks/sproutcore/frameworks/desktop/views/progress.js +11 -8
- data/frameworks/sproutcore/frameworks/desktop/views/radio.js +7 -7
- data/frameworks/sproutcore/frameworks/desktop/views/scroll.js +99 -33
- data/frameworks/sproutcore/frameworks/desktop/views/scroller.js +3 -7
- data/frameworks/sproutcore/frameworks/desktop/views/segmented.js +0 -7
- data/frameworks/sproutcore/frameworks/desktop/views/separator.js +2 -3
- data/frameworks/sproutcore/frameworks/desktop/views/slider.js +0 -8
- data/frameworks/sproutcore/frameworks/desktop/views/source_list_group.js +1 -1
- data/frameworks/sproutcore/frameworks/desktop/views/split.js +27 -7
- data/frameworks/sproutcore/frameworks/desktop/views/tab.js +2 -6
- data/frameworks/sproutcore/frameworks/foundation/controllers/array.js +15 -10
- data/frameworks/sproutcore/frameworks/foundation/controllers/tree.js +20 -1
- data/frameworks/sproutcore/frameworks/foundation/debug/control_test_pane.js +1 -1
- data/frameworks/sproutcore/frameworks/foundation/english.lproj/bootstrap.rhtml +3 -6
- data/frameworks/sproutcore/frameworks/foundation/english.lproj/button_view.css +3 -0
- data/frameworks/sproutcore/frameworks/foundation/english.lproj/core.css +8 -0
- data/frameworks/sproutcore/frameworks/foundation/english.lproj/inline_editor.css +12 -0
- data/frameworks/sproutcore/frameworks/foundation/english.lproj/label.css +11 -0
- data/frameworks/sproutcore/frameworks/foundation/english.lproj/text_field.css +13 -0
- data/frameworks/sproutcore/frameworks/foundation/mixins/button.js +1 -2
- data/frameworks/sproutcore/frameworks/foundation/mixins/inline_text_field.js +70 -21
- data/frameworks/sproutcore/frameworks/foundation/mixins/selection_support.js +88 -54
- data/frameworks/sproutcore/frameworks/foundation/mixins/static_layout.js +0 -25
- data/frameworks/sproutcore/frameworks/foundation/mixins/string.js +23 -2
- data/frameworks/sproutcore/frameworks/foundation/panes/pane.js +34 -23
- data/frameworks/sproutcore/frameworks/foundation/private/tree_item_observer.js +20 -0
- data/frameworks/sproutcore/frameworks/foundation/system/benchmark.js +32 -23
- data/frameworks/sproutcore/frameworks/foundation/system/browser.js +2 -2
- data/frameworks/sproutcore/frameworks/foundation/system/bundle.js +77 -15
- data/frameworks/sproutcore/frameworks/foundation/system/core_query.js +5 -4
- data/frameworks/sproutcore/frameworks/foundation/system/cursor.js +1 -1
- data/frameworks/sproutcore/frameworks/foundation/system/render_context.js +22 -7
- data/frameworks/sproutcore/frameworks/foundation/system/request.js +466 -309
- data/frameworks/sproutcore/frameworks/foundation/system/responder.js +2 -1
- data/frameworks/sproutcore/frameworks/foundation/system/response.js +457 -0
- data/frameworks/sproutcore/frameworks/foundation/system/root_responder.js +66 -15
- data/frameworks/sproutcore/frameworks/foundation/system/routes.js +4 -4
- data/frameworks/sproutcore/frameworks/foundation/system/timer.js +6 -4
- data/frameworks/sproutcore/frameworks/foundation/system/utils.js +46 -8
- data/frameworks/sproutcore/frameworks/foundation/tests/controllers/array/array_case.js +17 -0
- data/frameworks/sproutcore/frameworks/foundation/tests/controllers/array/enum_case.js +18 -5
- data/frameworks/sproutcore/frameworks/foundation/tests/controllers/array/null_case.js +1 -1
- data/frameworks/sproutcore/frameworks/foundation/tests/mixins/staticLayout.js +0 -2
- data/frameworks/sproutcore/frameworks/foundation/tests/mixins/string.js +11 -0
- data/frameworks/sproutcore/frameworks/foundation/tests/private/tree_item_observer/group_case.js +14 -14
- data/frameworks/sproutcore/frameworks/foundation/tests/system/builder.js +2 -2
- data/frameworks/sproutcore/frameworks/foundation/tests/system/core_query/jquery_core.js +15 -3
- data/frameworks/sproutcore/frameworks/foundation/tests/system/datetime.js +1 -1
- data/frameworks/sproutcore/frameworks/foundation/tests/system/locale.js +8 -7
- data/frameworks/sproutcore/frameworks/foundation/tests/system/render_context/tag.js +3 -2
- data/frameworks/sproutcore/frameworks/foundation/tests/system/request.js +51 -44
- data/frameworks/sproutcore/frameworks/foundation/tests/system/root_responder/targetForAction.js +2 -2
- data/frameworks/sproutcore/frameworks/foundation/tests/system/timer/isPaused.js +4 -4
- data/frameworks/sproutcore/frameworks/foundation/tests/system/timer/performAction.js +2 -0
- data/frameworks/sproutcore/frameworks/foundation/tests/validators/credit_card.js +9 -9
- data/frameworks/sproutcore/frameworks/foundation/tests/validators/number.js +2 -2
- data/frameworks/sproutcore/frameworks/foundation/tests/views/container/ui.js +3 -3
- data/frameworks/sproutcore/frameworks/foundation/tests/views/image/ui.js +10 -3
- data/frameworks/sproutcore/frameworks/foundation/tests/views/label/ui.js +2 -2
- data/frameworks/sproutcore/frameworks/foundation/tests/views/pane/append_remove.js +14 -0
- data/frameworks/sproutcore/frameworks/foundation/tests/views/text_field/methods.js +5 -5
- data/frameworks/sproutcore/frameworks/foundation/tests/views/text_field/ui.js +1 -11
- data/frameworks/sproutcore/frameworks/foundation/tests/views/view/clippingFrame.js +2 -2
- data/frameworks/sproutcore/frameworks/foundation/tests/views/view/destroyLayer.js +2 -4
- data/frameworks/sproutcore/frameworks/foundation/tests/views/view/findLayerInParentLayer.js +2 -4
- data/frameworks/sproutcore/frameworks/foundation/tests/views/view/insertBefore.js +1 -1
- data/frameworks/sproutcore/frameworks/foundation/tests/views/view/layoutStyle.js +0 -2
- data/frameworks/sproutcore/frameworks/foundation/validators/password.js +5 -5
- data/frameworks/sproutcore/frameworks/foundation/validators/validator.js +4 -2
- data/frameworks/sproutcore/frameworks/foundation/views/field.js +5 -8
- data/frameworks/sproutcore/frameworks/foundation/views/label.js +21 -5
- data/frameworks/sproutcore/frameworks/foundation/views/text_field.js +112 -69
- data/frameworks/sproutcore/frameworks/foundation/views/view.js +67 -6
- data/frameworks/sproutcore/frameworks/runtime/core.js +51 -2
- data/frameworks/sproutcore/frameworks/runtime/mixins/observable.js +4 -1
- data/frameworks/sproutcore/frameworks/runtime/system/binding.js +2 -1
- data/frameworks/sproutcore/frameworks/runtime/system/enumerator.js +5 -4
- data/frameworks/sproutcore/frameworks/runtime/system/index_set.js +6 -1
- data/frameworks/sproutcore/frameworks/runtime/system/logger.js +408 -0
- data/frameworks/sproutcore/frameworks/runtime/system/object.js +15 -4
- data/frameworks/sproutcore/frameworks/runtime/system/selection_set.js +30 -2
- data/frameworks/sproutcore/frameworks/runtime/tests/core/IsEqual.js +5 -1
- data/frameworks/sproutcore/frameworks/runtime/tests/core/beget.js +1 -1
- data/frameworks/sproutcore/frameworks/runtime/tests/core/compare.js +3 -3
- data/frameworks/sproutcore/frameworks/runtime/tests/core/guidFor.js +2 -0
- data/frameworks/sproutcore/frameworks/runtime/tests/core/isArray.js +1 -1
- data/frameworks/sproutcore/frameworks/runtime/tests/core/itemType.js +2 -1
- data/frameworks/sproutcore/frameworks/runtime/tests/core/tupleForPropertyPath.js +2 -2
- data/frameworks/sproutcore/frameworks/runtime/tests/mixins/observable/propertyChanges.js +1 -1
- data/frameworks/sproutcore/frameworks/runtime/tests/mixins/propertyChanges.js +1 -0
- data/frameworks/sproutcore/frameworks/runtime/tests/system/binding.js +11 -7
- data/frameworks/sproutcore/frameworks/runtime/tests/system/error.js +3 -2
- data/frameworks/sproutcore/frameworks/runtime/tests/system/index_set/add.js +18 -1
- data/frameworks/sproutcore/frameworks/runtime/tests/system/index_set/remove.js +1 -1
- data/frameworks/sproutcore/frameworks/runtime/tests/system/logger.js +165 -0
- data/frameworks/sproutcore/frameworks/runtime/tests/system/object/bindings.js +3 -0
- data/frameworks/sproutcore/frameworks/runtime/tests/system/selection_set/copy.js +1 -1
- data/frameworks/sproutcore/frameworks/runtime/tests/system/selection_set/indexSetForSource.js +13 -0
- data/frameworks/sproutcore/frameworks/runtime/tests/system/selection_set/remove.js +24 -0
- data/frameworks/sproutcore/frameworks/runtime/tests/system/sparse_array.js +32 -13
- data/frameworks/sproutcore/frameworks/testing/english.lproj/runner.css +2 -2
- data/frameworks/sproutcore/frameworks/testing/english.lproj/testsuite.css +7 -2
- data/frameworks/sproutcore/lib/index.rhtml +6 -20
- data/frameworks/sproutcore/themes/standard_theme/Source/sc-theme-repeat-x.psd +0 -0
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/button.css +0 -1
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/checkbox.css +5 -4
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/collection.css +4 -3
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/disclosure.css +7 -7
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/images/sc-theme-repeat-x.png +0 -0
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/list_item.css +38 -0
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/menu.css +20 -0
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/progress.css +1 -0
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/radio.css +3 -1
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/segmented.css +1 -0
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/split_view.css +1 -1
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/text_field.css +0 -15
- data/gen/data-source/Buildfile +18 -0
- data/gen/data-source/README +1 -0
- data/gen/data-source/USAGE +15 -0
- data/gen/data-source/templates/data_sources/@filename@.js +64 -0
- data/lib/sproutcore/builders/combine.rb +23 -0
- data/lib/sproutcore/builders/javascript.rb +27 -2
- data/lib/sproutcore/buildfile/task.rb +1 -1
- data/lib/sproutcore/helpers/entry_sorter.rb +2 -2
- data/lib/sproutcore/helpers/static_helper.rb +79 -0
- data/lib/sproutcore/models/manifest.rb +2 -2
- data/lib/sproutcore/models/target.rb +1 -1
- data/lib/sproutcore/tools/build.rb +1 -1
- data/lib/sproutcore/tools/docs.rb +3 -3
- data/lib/sproutcore/tools/gen.rb +17 -15
- data/lib/sproutcore/tools/manifest.rb +9 -9
- data/lib/sproutcore/tools/server.rb +3 -3
- data/lib/sproutcore/tools.rb +259 -250
- data/lib/sproutcore.rb +9 -1
- data/spec/buildtasks/manifest/prepare_build_tasks/combine_spec.rb +2 -2
- data/spec/fixtures/entry_for_project/frameworks/unrelated/PLACEHOLDER +0 -0
- data/spec/fixtures/ordered_entries/apps/no_requires/{lproj → english.lproj}/strings.js +0 -0
- data/spec/fixtures/ordered_entries/apps/no_requires/main.js +1 -0
- data/spec/fixtures/ordered_entries/apps/no_requires/resources/main_page.js +1 -0
- data/spec/fixtures/ordered_entries/apps/no_requires/t.js +1 -0
- data/spec/lib/models/manifest/find_entry.rb +12 -0
- data/spec/lib/tools/gen_spec.rb +1 -0
- data/spec/lib/tools/tools_spec.rb +1 -0
- data/sproutcore-abbot.gemspec +36 -44
- metadata +43 -44
- data/frameworks/sproutcore/frameworks/desktop/english.lproj/images/indicator.gif +0 -0
- data/frameworks/sproutcore/frameworks/desktop/english.lproj/images/sc-theme-sprite.png +0 -0
- data/frameworks/sproutcore/frameworks/desktop/english.lproj/images/sticky-note.png +0 -0
- data/frameworks/sproutcore/frameworks/desktop/views/form.js +0 -594
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/images/sc-theme-sprite.png +0 -0
- data/lib/thor/CHANGELOG.rdoc +0 -52
- data/lib/thor/LICENSE +0 -20
- data/lib/thor/README.markdown +0 -76
- data/lib/thor/Rakefile +0 -6
- data/lib/thor/Thorfile +0 -45
- data/lib/thor/bin/rake2thor +0 -83
- data/lib/thor/bin/thor +0 -7
- data/lib/thor/lib/thor/error.rb +0 -3
- data/lib/thor/lib/thor/options.rb +0 -267
- data/lib/thor/lib/thor/ordered_hash.rb +0 -64
- data/lib/thor/lib/thor/runner.rb +0 -305
- data/lib/thor/lib/thor/task.rb +0 -83
- data/lib/thor/lib/thor/task_hash.rb +0 -22
- data/lib/thor/lib/thor/tasks/package.rb +0 -18
- data/lib/thor/lib/thor/tasks.rb +0 -77
- data/lib/thor/lib/thor/util.rb +0 -75
- data/lib/thor/lib/thor.rb +0 -170
- data/lib/thor/script/destroy +0 -14
- data/lib/thor/script/generate +0 -14
- data/lib/thor/spec/fixtures/task.thor +0 -10
- data/lib/thor/spec/options_spec.rb +0 -271
- data/lib/thor/spec/ordered_hash_spec.rb +0 -84
- data/lib/thor/spec/spec.opts +0 -1
- data/lib/thor/spec/spec_helper.rb +0 -30
- data/lib/thor/spec/task_spec.rb +0 -11
- data/lib/thor/spec/tasks_spec.rb +0 -28
- data/lib/thor/spec/thor_runner_spec.rb +0 -194
- data/lib/thor/spec/thor_spec.rb +0 -206
- data/lib/thor/spec/util_spec.rb +0 -99
- data/lib/thor/task.thor +0 -15
- data/lib/thor/thor.gemspec +0 -29
@@ -1,194 +0,0 @@
|
|
1
|
-
require File.dirname(__FILE__) + '/spec_helper'
|
2
|
-
require "thor/runner"
|
3
|
-
require "rr"
|
4
|
-
|
5
|
-
load File.join(File.dirname(__FILE__), "fixtures", "task.thor")
|
6
|
-
|
7
|
-
module MyTasks
|
8
|
-
class ThorTask < Thor
|
9
|
-
desc "foo", "bar"
|
10
|
-
def foo
|
11
|
-
"foo"
|
12
|
-
end
|
13
|
-
|
14
|
-
desc "uhoh", "raises NoMethodError"
|
15
|
-
def uhoh
|
16
|
-
Object.new.raise_no_method_error_please
|
17
|
-
end
|
18
|
-
end
|
19
|
-
|
20
|
-
class AdvancedTask < Thor
|
21
|
-
|
22
|
-
group :advanced
|
23
|
-
|
24
|
-
desc "zoo", "zip"
|
25
|
-
def zoo
|
26
|
-
"zip"
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
30
|
-
|
31
|
-
module Thor::Tasks
|
32
|
-
class Default < Thor
|
33
|
-
desc "test", "prints 'test'"
|
34
|
-
def test
|
35
|
-
puts "test"
|
36
|
-
end
|
37
|
-
end
|
38
|
-
end
|
39
|
-
|
40
|
-
class Amazing
|
41
|
-
desc "hello", "say hello"
|
42
|
-
def hello
|
43
|
-
puts "Hello"
|
44
|
-
end
|
45
|
-
end
|
46
|
-
|
47
|
-
class ThorTask2 < Thor
|
48
|
-
end
|
49
|
-
|
50
|
-
describe Thor::Util do
|
51
|
-
it "knows how to convert class names into thor names" do
|
52
|
-
Thor::Util.constant_to_thor_path("FooBar::BarBaz::BazBat").must == "foo_bar:bar_baz:baz_bat"
|
53
|
-
end
|
54
|
-
|
55
|
-
it "knows how to convert a thor name to a constant" do
|
56
|
-
Thor::Util.constant_from_thor_path("my_tasks:thor_task").must == MyTasks::ThorTask
|
57
|
-
end
|
58
|
-
end
|
59
|
-
|
60
|
-
describe Thor do
|
61
|
-
it "tracks its subclasses, grouped by the files they come from" do
|
62
|
-
Thor.subclass_files[File.expand_path(__FILE__)].must == [MyTasks::ThorTask, MyTasks::AdvancedTask, Thor::Tasks::Default, Amazing, ThorTask2]
|
63
|
-
end
|
64
|
-
|
65
|
-
it "tracks a single subclass across multiple files" do
|
66
|
-
thorfile = File.join(File.dirname(__FILE__), "fixtures", "task.thor")
|
67
|
-
Thor.subclass_files[File.expand_path(thorfile)].must include(Amazing)
|
68
|
-
Thor.subclass_files[File.expand_path(__FILE__)].must include(Amazing)
|
69
|
-
end
|
70
|
-
|
71
|
-
it "tracks its subclasses in an Array" do
|
72
|
-
Thor.subclasses.must include(MyTasks::ThorTask)
|
73
|
-
Thor.subclasses.must include(ThorTask2)
|
74
|
-
end
|
75
|
-
end
|
76
|
-
|
77
|
-
describe Thor::Runner do
|
78
|
-
it "can give a list of the available tasks" do
|
79
|
-
ARGV.replace ["list"]
|
80
|
-
capture(:stdout) { Thor::Runner.start }.must =~ /my_tasks:thor_task:foo +bar/
|
81
|
-
end
|
82
|
-
|
83
|
-
it "can filter a list of the available tasks by --group" do
|
84
|
-
ARGV.replace ["list", "--group", "standard"]
|
85
|
-
capture(:stdout) { Thor::Runner.start }.must =~ /my_tasks:thor_task:foo +bar/
|
86
|
-
capture(:stdout) { Thor::Runner.start }.must_not =~ /my_tasks:advanced_task:zoo +zip/
|
87
|
-
ARGV.replace ["list", "--group", "advanced"]
|
88
|
-
capture(:stdout) { Thor::Runner.start }.must =~ /my_tasks:advanced_task:zoo +zip/
|
89
|
-
end
|
90
|
-
|
91
|
-
it "can skip all filters to show all tasks using --all" do
|
92
|
-
ARGV.replace ["list", "--all"]
|
93
|
-
capture(:stdout) { Thor::Runner.start }.must =~ /my_tasks:thor_task:foo +bar/
|
94
|
-
capture(:stdout) { Thor::Runner.start }.must =~ /my_tasks:advanced_task:zoo +zip/
|
95
|
-
end
|
96
|
-
|
97
|
-
it "doesn't list superclass tasks in the subclass" do
|
98
|
-
ARGV.replace ["list"]
|
99
|
-
capture(:stdout) { Thor::Runner.start }.must_not =~ /my_tasks:thor_task:help/
|
100
|
-
end
|
101
|
-
|
102
|
-
it "runs tasks from other Thor files" do
|
103
|
-
ARGV.replace ["my_tasks:thor_task:foo"]
|
104
|
-
Thor::Runner.start.must == "foo"
|
105
|
-
end
|
106
|
-
|
107
|
-
it "prints an error if a toplevel thor task is not found" do
|
108
|
-
ARGV.replace ["hello"]
|
109
|
-
capture(:stderr) { Thor::Runner.start }.must =~ /The thor:runner namespace doesn't have a `hello' task/
|
110
|
-
end
|
111
|
-
|
112
|
-
it "prints an error if the namespace could not be found" do
|
113
|
-
ARGV.replace ["hello:goodbye"]
|
114
|
-
capture(:stderr) { Thor::Runner.start }.must =~ /There was no available namespace `hello'/
|
115
|
-
end
|
116
|
-
|
117
|
-
it "does not swallow NoMethodErrors that occur inside the called method" do
|
118
|
-
ARGV.replace ["my_tasks:thor_task:uhoh"]
|
119
|
-
proc { Thor::Runner.start }.must raise_error(NoMethodError)
|
120
|
-
end
|
121
|
-
|
122
|
-
it "presents tasks in the default namespace with an empty namespace" do
|
123
|
-
ARGV.replace ["list"]
|
124
|
-
capture(:stdout) { Thor::Runner.start }.must =~ /^:test +prints 'test'/
|
125
|
-
end
|
126
|
-
|
127
|
-
it "runs tasks with an empty namespace from the default namespace" do
|
128
|
-
ARGV.replace [":test"]
|
129
|
-
capture(:stdout) { Thor::Runner.start }.must == "test\n"
|
130
|
-
end
|
131
|
-
end
|
132
|
-
|
133
|
-
# describe Thor::Runner, " install" do
|
134
|
-
# it "installs thor files" do
|
135
|
-
# ARGV.replace ["install", "#{File.dirname(__FILE__)}/fixtures/task.thor"]
|
136
|
-
#
|
137
|
-
# # Stubs for the file system interactions
|
138
|
-
# stub(Kernel).puts
|
139
|
-
# stub(Readline).readline { "y" }
|
140
|
-
# stub(FileUtils).mkdir_p
|
141
|
-
# stub(FileUtils).touch
|
142
|
-
# original_yaml = {:random =>
|
143
|
-
# {:location => "task.thor", :filename => "4a33b894ffce85d7b412fc1b36f88fe0", :constants => ["Amazing"]}}
|
144
|
-
#
|
145
|
-
# stub(YAML).load_file { original_yaml }
|
146
|
-
#
|
147
|
-
# file = mock("File").puts
|
148
|
-
#
|
149
|
-
# mock(File).open(File.join(Thor::Runner.thor_root, Digest::MD5.hexdigest("#{File.dirname(__FILE__)}/fixtures/task.thor" + "randomness")), "w")
|
150
|
-
# mock(File).open(File.join(Thor::Runner.thor_root, "thor.yml"), "w") { yield file }
|
151
|
-
#
|
152
|
-
# silence(:stdout) { Thor::Runner.start }
|
153
|
-
# end
|
154
|
-
# end
|
155
|
-
|
156
|
-
describe Thor::Runner do
|
157
|
-
before :each do
|
158
|
-
@original_yaml = {"random" =>
|
159
|
-
{:location => "#{File.dirname(__FILE__)}/fixtures/task.thor", :filename => "4a33b894ffce85d7b412fc1b36f88fe0", :constants => ["Amazing"]}}
|
160
|
-
stub(File).exists? {true}
|
161
|
-
stub(YAML).load_file { @original_yaml }
|
162
|
-
end
|
163
|
-
|
164
|
-
describe " update" do
|
165
|
-
it "updates existing thor files" do
|
166
|
-
mock.instance_of(Thor::Runner).install(@original_yaml["random"][:location]) {true}
|
167
|
-
mock(File).delete(File.join(Thor::Runner.thor_root, @original_yaml["random"][:filename]))
|
168
|
-
|
169
|
-
silence(:stdout) { Thor::Runner.start(["update", "random"]) }
|
170
|
-
end
|
171
|
-
end
|
172
|
-
|
173
|
-
|
174
|
-
describe " uninstall" do
|
175
|
-
it "uninstalls existing thor modules" do
|
176
|
-
stub.instance_of(Thor::Runner).save_yaml(anything)
|
177
|
-
|
178
|
-
stub(File).delete(anything)
|
179
|
-
stub(@original_yaml).delete(anything)
|
180
|
-
|
181
|
-
silence(:stdout) { Thor::Runner.start(["uninstall", "random"]) }
|
182
|
-
end
|
183
|
-
end
|
184
|
-
|
185
|
-
describe " installed" do
|
186
|
-
it "displays the modules installed in a pretty way" do
|
187
|
-
stub(Dir).[](anything) { [] }
|
188
|
-
stdout = capture(:stdout) { Thor::Runner.start(["installed"]) }
|
189
|
-
stdout.must =~ /random\s*amazing/
|
190
|
-
stdout.must =~ /amazing:describe NAME \[\-\-forcefully\]\s*say that someone is amazing/
|
191
|
-
stdout.must =~ /amazing:hello\s*say hello/
|
192
|
-
end
|
193
|
-
end
|
194
|
-
end
|
data/lib/thor/spec/thor_spec.rb
DELETED
@@ -1,206 +0,0 @@
|
|
1
|
-
require File.dirname(__FILE__) + '/spec_helper'
|
2
|
-
require "thor"
|
3
|
-
|
4
|
-
class MyApp < Thor
|
5
|
-
|
6
|
-
map "-T" => :animal, ["-f", "--foo"] => :foo
|
7
|
-
|
8
|
-
desc "zoo", "zoo around"
|
9
|
-
def zoo
|
10
|
-
true
|
11
|
-
end
|
12
|
-
|
13
|
-
desc "animal TYPE", "horse around"
|
14
|
-
def animal(type)
|
15
|
-
[type]
|
16
|
-
end
|
17
|
-
|
18
|
-
desc "foo BAR", "do some fooing"
|
19
|
-
method_options :force => :boolean
|
20
|
-
def foo(bar)
|
21
|
-
[bar, options]
|
22
|
-
end
|
23
|
-
|
24
|
-
desc "bar BAZ BAT", "do some barring"
|
25
|
-
method_options :option1 => :required
|
26
|
-
def bar(baz, bat)
|
27
|
-
[baz, bat, options]
|
28
|
-
end
|
29
|
-
|
30
|
-
desc "baz BAT", "do some bazzing"
|
31
|
-
method_options :option1 => :optional
|
32
|
-
def baz(bat)
|
33
|
-
[bat, options]
|
34
|
-
end
|
35
|
-
|
36
|
-
desc "bang FOO", <<END
|
37
|
-
bangs around some
|
38
|
-
This is more info!
|
39
|
-
Everyone likes more info!
|
40
|
-
END
|
41
|
-
method_options :fup => :boolean
|
42
|
-
def bang(foo)
|
43
|
-
"bang"
|
44
|
-
end
|
45
|
-
|
46
|
-
desc "call_myself_with_wrong_arity", "get the right error"
|
47
|
-
def call_myself_with_wrong_arity
|
48
|
-
call_myself_with_wrong_arity(4)
|
49
|
-
end
|
50
|
-
|
51
|
-
default_task :example_default_task
|
52
|
-
|
53
|
-
desc "example_default_task", "example!"
|
54
|
-
def example_default_task
|
55
|
-
"default task"
|
56
|
-
end
|
57
|
-
|
58
|
-
|
59
|
-
def method_missing(meth, *args)
|
60
|
-
[meth, args]
|
61
|
-
end
|
62
|
-
|
63
|
-
private
|
64
|
-
desc "what", "what"
|
65
|
-
def what
|
66
|
-
end
|
67
|
-
end
|
68
|
-
|
69
|
-
class GlobalOptionsTasks < Thor
|
70
|
-
|
71
|
-
method_options :force => :boolean, :param => :optional
|
72
|
-
def initialize(*args)
|
73
|
-
super
|
74
|
-
end
|
75
|
-
|
76
|
-
desc "animal TYPE", "horse around"
|
77
|
-
method_options :other => :optional
|
78
|
-
def animal(type)
|
79
|
-
[type, options]
|
80
|
-
end
|
81
|
-
|
82
|
-
desc "zoo", "zoo around"
|
83
|
-
def zoo
|
84
|
-
options
|
85
|
-
end
|
86
|
-
|
87
|
-
end
|
88
|
-
|
89
|
-
describe "thor" do
|
90
|
-
it "calls a no-param method when no params are passed" do
|
91
|
-
MyApp.start(["zoo"]).must == true
|
92
|
-
end
|
93
|
-
|
94
|
-
it "calls a single-param method when a single param is passed" do
|
95
|
-
MyApp.start(["animal", "fish"]).must == ["fish"]
|
96
|
-
end
|
97
|
-
|
98
|
-
it "calls the alias of a method if one is provided via .map" do
|
99
|
-
MyApp.start(["-T", "fish"]).must == ["fish"]
|
100
|
-
end
|
101
|
-
|
102
|
-
it "calls the alias of a method if several are provided via .map" do
|
103
|
-
MyApp.start(["-f", "fish"]).must == ["fish", {}]
|
104
|
-
MyApp.start(["--foo", "fish"]).must == ["fish", {}]
|
105
|
-
end
|
106
|
-
|
107
|
-
it "raises an error if a required param is not provided" do
|
108
|
-
capture(:stderr) { MyApp.start(["animal"]) }.must =~ /`animal' was called incorrectly\. Call as `animal TYPE'/
|
109
|
-
end
|
110
|
-
|
111
|
-
it "calls a method with an optional boolean param when the param is passed" do
|
112
|
-
MyApp.start(["foo", "one", "--force"]).must == ["one", {"force" => true}]
|
113
|
-
end
|
114
|
-
|
115
|
-
it "calls a method with an optional boolean param when the param is not passed" do
|
116
|
-
MyApp.start(["foo", "one"]).must == ["one", {}]
|
117
|
-
end
|
118
|
-
|
119
|
-
it "calls a method with a required key/value param" do
|
120
|
-
MyApp.start(["bar", "one", "two", "--option1", "hello"]).must == ["one", "two", {"option1" => "hello"}]
|
121
|
-
end
|
122
|
-
|
123
|
-
it "calls a method with an optional key/value param" do
|
124
|
-
MyApp.start(["baz", "one", "--option1", "hello"]).must == ["one", {"option1" => "hello"}]
|
125
|
-
end
|
126
|
-
|
127
|
-
it "allows options at the beginning and end of the arguments" do
|
128
|
-
MyApp.start(["baz", "--option1", "hello", "one"]).must == ["one", {"option1" => "hello"}]
|
129
|
-
end
|
130
|
-
|
131
|
-
it "calls a method with an empty Hash for options if an optional key/value param is not provided" do
|
132
|
-
MyApp.start(["baz", "one"]).must == ["one", {}]
|
133
|
-
end
|
134
|
-
|
135
|
-
it "calls method_missing if an unknown method is passed in" do
|
136
|
-
MyApp.start(["unk", "hello"]).must == [:unk, ["hello"]]
|
137
|
-
end
|
138
|
-
|
139
|
-
it "allows global options to be set" do
|
140
|
-
args = ["zoo", "--force", "--param", "feathers"]
|
141
|
-
options = GlobalOptionsTasks.start(args)
|
142
|
-
options.must == { "force"=>true, "param"=>"feathers" }
|
143
|
-
end
|
144
|
-
|
145
|
-
it "allows global options to be merged with method options" do
|
146
|
-
args = ["animal", "bird", "--force", "--param", "feathers", "--other", "tweets"]
|
147
|
-
arg, options = GlobalOptionsTasks.start(args)
|
148
|
-
arg.must == 'bird'
|
149
|
-
options.must == { "force"=>true, "param"=>"feathers", "other"=>"tweets" }
|
150
|
-
GlobalOptionsTasks.opts.must == { :force=>:boolean, :param=>:optional }
|
151
|
-
end
|
152
|
-
|
153
|
-
it "does not call a private method no matter what" do
|
154
|
-
lambda { MyApp.start(["what"]) }.must raise_error(NoMethodError, "the `what' task of MyApp is private")
|
155
|
-
end
|
156
|
-
|
157
|
-
it "invokes the default task if no command is specified" do
|
158
|
-
MyApp.start([]).must =~ /default/
|
159
|
-
end
|
160
|
-
|
161
|
-
it "provides useful help info for a simple method" do
|
162
|
-
capture(:stdout) { MyApp.start(["help"]) }.must =~ /zoo +zoo around/
|
163
|
-
end
|
164
|
-
|
165
|
-
it "provides useful help info for a method with one param" do
|
166
|
-
capture(:stdout) { MyApp.start(["help"]) }.must =~ /animal TYPE +horse around/
|
167
|
-
end
|
168
|
-
|
169
|
-
it "provides useful help info for a method with boolean options" do
|
170
|
-
capture(:stdout) { MyApp.start(["help"]) }.must =~ /foo BAR \[\-\-force\] +do some fooing/
|
171
|
-
end
|
172
|
-
|
173
|
-
it "provides useful help info for a method with required options" do
|
174
|
-
capture(:stdout) { MyApp.start(["help"]) }.must =~ /bar BAZ BAT \-\-option1=OPTION1 +do some barring/
|
175
|
-
end
|
176
|
-
|
177
|
-
it "provides useful help info for a method with optional options" do
|
178
|
-
capture(:stdout) { MyApp.start(["help"]) }.must =~ /baz BAT \[\-\-option1=OPTION1\] +do some bazzing/
|
179
|
-
end
|
180
|
-
|
181
|
-
it "provides useful help info for the help method itself" do
|
182
|
-
capture(:stdout) { MyApp.start(["help"]) }.must =~ /help \[TASK\] +describe available tasks/
|
183
|
-
end
|
184
|
-
|
185
|
-
it "provides one line of help info per task when talking about all tasks" do
|
186
|
-
capture(:stdout) { MyApp.start(["help"]) }.must =~ /bang FOO \[--fup\] +bangs around some/
|
187
|
-
end
|
188
|
-
|
189
|
-
it "provides full help info when talking about a specific task" do
|
190
|
-
capture(:stdout) { MyApp.start(["help", "bang"]) }.must == <<END
|
191
|
-
bang FOO [--fup]
|
192
|
-
bangs around some
|
193
|
-
This is more info!
|
194
|
-
Everyone likes more info!
|
195
|
-
END
|
196
|
-
end
|
197
|
-
|
198
|
-
it "raises when an exception happens within the task call" do
|
199
|
-
lambda { MyApp.start(["call_myself_with_wrong_arity"]) }.must raise_error
|
200
|
-
end
|
201
|
-
|
202
|
-
it "invokes the named command regardless of the command line options with invoke()" do
|
203
|
-
MyApp.invoke(:baz, ["one"]).must == ["one", {}]
|
204
|
-
end
|
205
|
-
|
206
|
-
end
|
data/lib/thor/spec/util_spec.rb
DELETED
@@ -1,99 +0,0 @@
|
|
1
|
-
require File.dirname(__FILE__) + '/spec_helper'
|
2
|
-
require "thor/util"
|
3
|
-
|
4
|
-
describe Thor::Util do
|
5
|
-
describe ".snake_case" do
|
6
|
-
it "preserves no-cap strings" do
|
7
|
-
Thor::Util.snake_case("foo").must == "foo"
|
8
|
-
Thor::Util.snake_case("foo_bar").must == "foo_bar"
|
9
|
-
end
|
10
|
-
|
11
|
-
it "downcases all-caps strings" do
|
12
|
-
Thor::Util.snake_case("FOO").must == "foo"
|
13
|
-
Thor::Util.snake_case("FOO_BAR").must == "foo_bar"
|
14
|
-
end
|
15
|
-
|
16
|
-
it "downcases initial-cap strings" do
|
17
|
-
Thor::Util.snake_case("Foo").must == "foo"
|
18
|
-
end
|
19
|
-
|
20
|
-
it "replaces camel-casing with underscores" do
|
21
|
-
Thor::Util.snake_case("FooBarBaz").must == "foo_bar_baz"
|
22
|
-
Thor::Util.snake_case("Foo_BarBaz").must == "foo_bar_baz"
|
23
|
-
end
|
24
|
-
|
25
|
-
it "places underscores between multiple capitals" do
|
26
|
-
Thor::Util.snake_case("ABClass").must == "a_b_class"
|
27
|
-
end
|
28
|
-
end
|
29
|
-
|
30
|
-
describe ".constant_to_thor_path" do
|
31
|
-
it "replaces constant nesting with task namespacing" do
|
32
|
-
Thor::Util.constant_to_thor_path("Foo::Bar::Baz").must == "foo:bar:baz"
|
33
|
-
end
|
34
|
-
|
35
|
-
it "snake-cases component strings" do
|
36
|
-
Thor::Util.constant_to_thor_path("FooBar::BarBaz::BazBoom").must == "foo_bar:bar_baz:baz_boom"
|
37
|
-
end
|
38
|
-
|
39
|
-
it "gets rid of an initial Default module" do
|
40
|
-
Thor::Util.constant_to_thor_path("Default::Foo::Bar").must == ":foo:bar"
|
41
|
-
Thor::Util.constant_to_thor_path("Default").must == ""
|
42
|
-
end
|
43
|
-
|
44
|
-
it "accepts class and module objects" do
|
45
|
-
require 'thor/ordered_hash'
|
46
|
-
Thor::Util.constant_to_thor_path(Thor::OrderedHash).must == "thor:ordered_hash"
|
47
|
-
Thor::Util.constant_to_thor_path(Thor::Util).must == "thor:util"
|
48
|
-
end
|
49
|
-
end
|
50
|
-
|
51
|
-
describe ".to_constant" do
|
52
|
-
it "returns 'Default' if no name is given" do
|
53
|
-
Thor::Util.to_constant("").must == "Default"
|
54
|
-
end
|
55
|
-
|
56
|
-
it "upcases the namespaces" do
|
57
|
-
Thor::Util.to_constant("foo").must == "Foo"
|
58
|
-
Thor::Util.to_constant("foo:bar").must == "Foo::Bar"
|
59
|
-
end
|
60
|
-
|
61
|
-
it "expands task namespacing into constant nesting" do
|
62
|
-
Thor::Util.to_constant("foo:bar:baz").must == "Foo::Bar::Baz"
|
63
|
-
end
|
64
|
-
|
65
|
-
it "replaces snake-casing with camel-casing" do
|
66
|
-
Thor::Util.to_constant("foo_bar:bar_baz").must == "FooBar::BarBaz"
|
67
|
-
end
|
68
|
-
end
|
69
|
-
|
70
|
-
describe ".make_constant" do
|
71
|
-
it "returns the constant given by the string" do
|
72
|
-
Thor::Util.make_constant("Object").must == Object
|
73
|
-
end
|
74
|
-
|
75
|
-
it "resolves constant nesting" do
|
76
|
-
Thor::Util.make_constant("Thor::Util").must == Thor::Util
|
77
|
-
end
|
78
|
-
end
|
79
|
-
|
80
|
-
describe ".constant_from_thor_path" do
|
81
|
-
it "returns the named constant" do
|
82
|
-
require 'thor/ordered_hash'
|
83
|
-
Thor::Util.constant_from_thor_path('thor:ordered_hash').must == Thor::OrderedHash
|
84
|
-
end
|
85
|
-
end
|
86
|
-
|
87
|
-
describe ".constants_in_contents" do
|
88
|
-
it "returns an array of names of constants defined in the string" do
|
89
|
-
list = Thor::Util.constants_in_contents("class Foo; class Bar < Thor; end; end; class Baz; class Bat; end; end")
|
90
|
-
list.must include("Foo::Bar")
|
91
|
-
list.must_not include("Baz::Bat")
|
92
|
-
end
|
93
|
-
|
94
|
-
it "doesn't put the newly-defined constants in the enclosing namespace" do
|
95
|
-
Thor::Util.constants_in_contents("class Blat; end")
|
96
|
-
defined?(Blat).must_not be
|
97
|
-
end
|
98
|
-
end
|
99
|
-
end
|
data/lib/thor/task.thor
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
# module: random
|
2
|
-
|
3
|
-
class Amazing < Thor
|
4
|
-
desc "describe NAME", "say that someone is amazing"
|
5
|
-
method_options :forcefully => :boolean
|
6
|
-
def describe(name)
|
7
|
-
ret = "#{name} is amazing"
|
8
|
-
puts options.forcefully?? ret.upcase : ret
|
9
|
-
end
|
10
|
-
|
11
|
-
desc "hello", "say hello"
|
12
|
-
def hello
|
13
|
-
puts "Hello"
|
14
|
-
end
|
15
|
-
end
|
data/lib/thor/thor.gemspec
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
Gem::Specification.new do |s|
|
2
|
-
s.name = %q{thor}
|
3
|
-
s.version = "0.9.8"
|
4
|
-
|
5
|
-
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
6
|
-
s.authors = ["Yehuda Katz"]
|
7
|
-
s.date = %q{2008-08-27}
|
8
|
-
s.description = %q{A gem that maps options to a class}
|
9
|
-
s.email = %q{wycats@gmail.com}
|
10
|
-
s.executables = ["thor", "rake2thor"]
|
11
|
-
s.extra_rdoc_files = ["README.markdown", "CHANGELOG.rdoc", "LICENSE"]
|
12
|
-
s.files = ["README.markdown", "LICENSE", "CHANGELOG.rdoc", "Rakefile", "bin/rake2thor", "bin/thor", "lib/thor", "lib/thor/error.rb", "lib/thor/options.rb", "lib/thor/ordered_hash.rb", "lib/thor/runner.rb", "lib/thor/task.rb", "lib/thor/task_hash.rb", "lib/thor/tasks", "lib/thor/tasks/package.rb", "lib/thor/tasks.rb", "lib/thor/util.rb", "lib/thor.rb"]
|
13
|
-
s.has_rdoc = true
|
14
|
-
s.homepage = %q{http://yehudakatz.com}
|
15
|
-
s.require_paths = ["lib"]
|
16
|
-
s.rubyforge_project = %q{thor}
|
17
|
-
s.rubygems_version = %q{1.2.0}
|
18
|
-
s.summary = %q{A gem that maps options to a class}
|
19
|
-
|
20
|
-
if s.respond_to? :specification_version then
|
21
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
22
|
-
s.specification_version = 2
|
23
|
-
|
24
|
-
if current_version >= 3 then
|
25
|
-
else
|
26
|
-
end
|
27
|
-
else
|
28
|
-
end
|
29
|
-
end
|