public
Description: Common refactorings for Ruby code, written in Ruby. This project aims to be integrated with several editors (mainly TextMate), to provide simple refactorings
Homepage: http://www.fabiokung.com
Clone URL: git://github.com/fabiokung/rfactor.git
Click here to lend your support to: rfactor and make a donation at www.pledgie.com !
rfactor / rfactor.gemspec
100644 42 lines (37 sloc) 2.335 kb
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
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{rfactor}
  s.version = "0.0.2"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Fabio Kung"]
  s.date = %q{2009-02-05}
  s.description = %q{Common refactorings for Ruby code, written in Ruby. This project aims to be integrated with several editors (mainly TextMate), to provide simple refactorings, such as: * extract method * extract Class * extract Module * rename using ack * move using ack}
  s.email = ["fabio.kung@gmail.com"]
  s.extra_rdoc_files = ["History.txt", "Manifest.txt", "PostInstall.txt", "README.rdoc"]
  s.files = ["History.txt", "Manifest.txt", "PostInstall.txt", "README.rdoc", "Rakefile", "features/development.feature", "features/extract_method.feature", "features/steps/code_steps.rb", "features/steps/common.rb", "features/steps/env.rb", "lib/rfactor.rb", "lib/rfactor/code.rb", "lib/rfactor/line_finder.rb", "lib/rfactor/string_ext.rb", "script/console", "script/destroy", "script/generate", "spec/code_spec.rb", "spec/line_finder_spec.rb", "spec/rfactor_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "spec/string_ext_spec.rb", "tasks/rspec.rake"]
  s.has_rdoc = true
  s.homepage = %q{http://wiki.github.com/fabiokung/rfactor}
  s.post_install_message = %q{PostInstall.txt}
  s.rdoc_options = ["--main", "README.rdoc"]
  s.require_paths = ["lib"]
  s.rubyforge_project = %q{rfactor}
  s.rubygems_version = %q{1.3.1}
  s.summary = %q{Common refactorings for Ruby code, written in Ruby}
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 2
 
    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
      s.add_runtime_dependency(%q<fabiokung-ruby_parser>, [">= 2.0.3"])
      s.add_development_dependency(%q<newgem>, [">= 1.1.0"])
      s.add_development_dependency(%q<hoe>, [">= 1.8.0"])
    else
      s.add_dependency(%q<fabiokung-ruby_parser>, [">= 2.0.3"])
      s.add_dependency(%q<newgem>, [">= 1.1.0"])
      s.add_dependency(%q<hoe>, [">= 1.8.0"])
    end
  else
    s.add_dependency(%q<fabiokung-ruby_parser>, [">= 2.0.3"])
    s.add_dependency(%q<newgem>, [">= 1.1.0"])
    s.add_dependency(%q<hoe>, [">= 1.8.0"])
  end
end