forked from koppen/mite.cmd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mite.cmd.gemspec
53 lines (49 loc) · 1.54 KB
/
mite.cmd.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Gem::Specification.new do |s|
s.name = %q{mite.cmd}
s.version = "0.1.12"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Lukas Rieder"]
s.date = %q{2012-05-09}
s.default_executable = %q{mite}
s.description = %q{A simple command line interface for mite, a sleek time tracking webapp.}
s.email = %q{l.rieder@gmail.com}
s.executables = ["mite"]
s.extra_rdoc_files = [
"LICENSE",
"README.textile",
"TODO"
]
s.files = [
"Gemfile",
"LICENSE",
"README.textile",
"Rakefile",
"TODO",
"VERSION",
"bin/mite",
"lib/mite_cmd.rb",
"lib/mite_cmd/application.rb",
"lib/mite_cmd/autocomplete.rb",
"lib/mite_cmd/completion_table.rb",
"lib/mite_ext.rb",
"lib/string_ext.rb",
"mite.cmd.gemspec",
"spec/mite_cmd/application_spec.rb",
"spec/mite_cmd/autocomplete_spec.rb",
"spec/mite_cmd/completion_table_spec.rb",
"spec/mite_cmd_spec.rb",
"spec/mite_ext_spec.rb",
"spec/spec_helper.rb",
"spec/string_ext_spec.rb"
]
s.homepage = %q{http://github.com/Overbryd/mite.cmd}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.6.2}
s.summary = %q{A simple command line interface for basic mite tasks.}
s.add_runtime_dependency 'activeresource', '~> 3.1'
s.add_runtime_dependency 'activesupport', '~> 3.1'
s.add_runtime_dependency 'json', '~> 1.7.7'
s.add_runtime_dependency 'mite-rb', '~> 0.5'
s.add_development_dependency 'rake', '>= 0'
s.add_development_dependency 'rspec', '~> 2.13.0'
end