thor-plus 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,3 @@
1
+ class Thor
2
+ VERSION = "0.1.0"
3
+ end
data/thor.gemspec ADDED
@@ -0,0 +1,21 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path("../lib/", __FILE__)
3
+ $LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib)
4
+ require "thor/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.add_development_dependency "bundler", "~> 1.0"
8
+ spec.authors = ["Yehuda Katz", "José Valim", "Andrew Page"]
9
+ spec.description = "ThorPlus is an improvement upon the Thor command line tool suite."
10
+ spec.email = "andrew@andrewpage.me"
11
+ spec.executables = %w[thorp]
12
+ spec.files = %w[.document thor-plus.gemspec] + Dir['*.md', 'bin/*', 'lib/**/*.rb']
13
+ spec.homepage = "http://whatisthor.com/"
14
+ spec.licenses = %w[MIT]
15
+ spec.name = "thor-plus"
16
+ spec.require_paths = %w[lib]
17
+ spec.required_ruby_version = '>= 1.8.7'
18
+ spec.required_rubygems_version = ">= 1.3.5"
19
+ spec.summary = spec.description
20
+ spec.version = Thor::VERSION
21
+ end
metadata ADDED
@@ -0,0 +1,99 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: thor-plus
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Yehuda Katz
8
+ - José Valim
9
+ - Andrew Page
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2016-06-08 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: bundler
17
+ requirement: !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - "~>"
20
+ - !ruby/object:Gem::Version
21
+ version: '1.0'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - "~>"
27
+ - !ruby/object:Gem::Version
28
+ version: '1.0'
29
+ description: ThorPlus is an improvement upon the Thor command line tool suite.
30
+ email: andrew@andrewpage.me
31
+ executables:
32
+ - thorp
33
+ extensions: []
34
+ extra_rdoc_files: []
35
+ files:
36
+ - ".document"
37
+ - CHANGELOG.md
38
+ - CONTRIBUTING.md
39
+ - LICENSE.md
40
+ - README.md
41
+ - bin/thorp
42
+ - lib/thor.rb
43
+ - lib/thor/actions.rb
44
+ - lib/thor/actions/create_file.rb
45
+ - lib/thor/actions/create_link.rb
46
+ - lib/thor/actions/directory.rb
47
+ - lib/thor/actions/empty_directory.rb
48
+ - lib/thor/actions/file_manipulation.rb
49
+ - lib/thor/actions/inject_into_file.rb
50
+ - lib/thor/base.rb
51
+ - lib/thor/command.rb
52
+ - lib/thor/core_ext/hash_with_indifferent_access.rb
53
+ - lib/thor/core_ext/io_binary_read.rb
54
+ - lib/thor/core_ext/ordered_hash.rb
55
+ - lib/thor/error.rb
56
+ - lib/thor/group.rb
57
+ - lib/thor/invocation.rb
58
+ - lib/thor/line_editor.rb
59
+ - lib/thor/line_editor/basic.rb
60
+ - lib/thor/line_editor/readline.rb
61
+ - lib/thor/parser.rb
62
+ - lib/thor/parser/argument.rb
63
+ - lib/thor/parser/arguments.rb
64
+ - lib/thor/parser/option.rb
65
+ - lib/thor/parser/options.rb
66
+ - lib/thor/rake_compat.rb
67
+ - lib/thor/runner.rb
68
+ - lib/thor/shell.rb
69
+ - lib/thor/shell/basic.rb
70
+ - lib/thor/shell/color.rb
71
+ - lib/thor/shell/html.rb
72
+ - lib/thor/util.rb
73
+ - lib/thor/version.rb
74
+ - thor.gemspec
75
+ homepage: http://whatisthor.com/
76
+ licenses:
77
+ - MIT
78
+ metadata: {}
79
+ post_install_message:
80
+ rdoc_options: []
81
+ require_paths:
82
+ - lib
83
+ required_ruby_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: 1.8.7
88
+ required_rubygems_version: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: 1.3.5
93
+ requirements: []
94
+ rubyforge_project:
95
+ rubygems_version: 2.4.8
96
+ signing_key:
97
+ specification_version: 4
98
+ summary: ThorPlus is an improvement upon the Thor command line tool suite.
99
+ test_files: []