ruco.gemspec in ruco-0.2.11 vs ruco.gemspec in ruco-0.2.12

- old
+ new

@@ -1,104 +1,21 @@ -# Generated by jeweler -# DO NOT EDIT THIS FILE DIRECTLY -# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec' -# -*- encoding: utf-8 -*- +$LOAD_PATH.unshift File.expand_path('../lib', __FILE__) +name = "ruco" +require "#{name}/version" -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= +Gem::Specification.new name, Ruco::VERSION do |s| + s.summary = "Commandline editor written in ruby" s.authors = ["Michael Grosser"] - s.date = "2012-05-05" s.email = "michael@grosser.it" - 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" + s.homepage = "http://github.com/grosser/#{name}" + s.files = `git ls-files`.split("\n") + s.license = 'MIT' + s.add_runtime_dependency "clipboard", ">= 0.9.8" + s.add_runtime_dependency "textpow1x", ">= 1.2.5" + s.add_runtime_dependency "language_sniffer" + s.post_install_message = <<-TEXT - if s.respond_to? :specification_version then - s.specification_version = 3 + Mac: shift/ctrl + arrow-keys only work in iterm (not Terminal.app) + Ubuntu: sudo apt-get install xclip # to use the clipboard - 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 + TEXT end -