forked from grosser/ruco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathruco.gemspec
104 lines (99 loc) · 3.33 KB
/
ruco.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "ruco"
s.version = "0.2.11"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Michael Grosser"]
s.date = "2012-05-05"
s.email = "[email protected]"
s.executables = ["ruco"]
s.files = [
".travis.yml",
"Gemfile",
"Gemfile.lock",
"Rakefile",
"Readme.md",
"VERSION",
"bin/ruco",
"lib/ruco.rb",
"lib/ruco/application.rb",
"lib/ruco/array_processor.rb",
"lib/ruco/command_bar.rb",
"lib/ruco/core_ext/array.rb",
"lib/ruco/core_ext/file.rb",
"lib/ruco/core_ext/hash.rb",
"lib/ruco/core_ext/object.rb",
"lib/ruco/core_ext/range.rb",
"lib/ruco/core_ext/string.rb",
"lib/ruco/editor.rb",
"lib/ruco/editor/colors.rb",
"lib/ruco/editor/history.rb",
"lib/ruco/editor/line_numbers.rb",
"lib/ruco/editor_area.rb",
"lib/ruco/file_store.rb",
"lib/ruco/form.rb",
"lib/ruco/history.rb",
"lib/ruco/keyboard.rb",
"lib/ruco/option_accessor.rb",
"lib/ruco/position.rb",
"lib/ruco/screen.rb",
"lib/ruco/status_bar.rb",
"lib/ruco/style_map.rb",
"lib/ruco/syntax_parser.rb",
"lib/ruco/text_area.rb",
"lib/ruco/text_field.rb",
"lib/ruco/tm_theme.rb",
"lib/ruco/version.rb",
"lib/ruco/window.rb",
"playground/benchmark_syntax_parser.rb",
"ruco.gemspec",
"spec/fixtures/railscasts.tmTheme",
"spec/fixtures/slow.js",
"spec/fixtures/test.tmTheme",
"spec/ruco/application_spec.rb",
"spec/ruco/array_processor_spec.rb",
"spec/ruco/command_bar_spec.rb",
"spec/ruco/core_ext/array_spec.rb",
"spec/ruco/core_ext/range_spec.rb",
"spec/ruco/core_ext/string_spec.rb",
"spec/ruco/editor_spec.rb",
"spec/ruco/file_store_spec.rb",
"spec/ruco/form_spec.rb",
"spec/ruco/history_spec.rb",
"spec/ruco/keyboard_spec.rb",
"spec/ruco/option_accessor_spec.rb",
"spec/ruco/screen_spec.rb",
"spec/ruco/status_bar_spec.rb",
"spec/ruco/style_map_spec.rb",
"spec/ruco/syntax_parser_spec.rb",
"spec/ruco/text_area_spec.rb",
"spec/ruco/tm_theme_spec.rb",
"spec/ruco/window_spec.rb",
"spec/ruco_spec.rb",
"spec/spec_helper.rb"
]
s.homepage = "http://github.com/grosser/ruco"
s.post_install_message = "\n Mac: shift/ctrl + arrow-keys only work in iterm (not Terminal.app)\n Ubuntu: sudo apt-get install xclip # to use the clipboard\n\n"
s.require_paths = ["lib"]
s.rubygems_version = "1.8.24"
s.summary = "Commandline editor written in ruby"
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<clipboard>, [">= 0.9.8"])
s.add_runtime_dependency(%q<textpow1x>, [">= 1.2.5"])
s.add_runtime_dependency(%q<language_sniffer>, [">= 0"])
else
s.add_dependency(%q<clipboard>, [">= 0.9.8"])
s.add_dependency(%q<textpow1x>, [">= 1.2.5"])
s.add_dependency(%q<language_sniffer>, [">= 0"])
end
else
s.add_dependency(%q<clipboard>, [">= 0.9.8"])
s.add_dependency(%q<textpow1x>, [">= 1.2.5"])
s.add_dependency(%q<language_sniffer>, [">= 0"])
end
end