Skip to content

Commit

Permalink
Do not require matchy, rr and context as development dependencies. A …
Browse files Browse the repository at this point in the history
…user does not need them.
  • Loading branch information
libc committed Feb 14, 2009
1 parent 8618419 commit c5c6ff3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 13 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
@@ -1,2 +1,3 @@
v0.0.2. Do not require matchy, rr and context as development dependencies. A user does not need them.
v0.0.1. Options support.
v0.0.0. Initial release.
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -6,7 +6,7 @@ begin
p.summary = 'Tidy library interface via FFI'
p.url = 'http://github.com/libc/tidy_ffi'
p.runtime_dependencies = ['ffi >= 0.2.0']
p.development_dependencies = ['rr', 'matchy', 'context']
# p.development_dependencies = ['rr', 'matchy', 'context']
end
rescue LoadError => boom
puts "You are missing a dependency required for meta-operations on this gem."
Expand Down
15 changes: 3 additions & 12 deletions tidy_ffi.gemspec
Expand Up @@ -2,13 +2,13 @@

Gem::Specification.new do |s|
s.name = %q{tidy_ffi}
s.version = "0.0.1"
s.version = "0.0.2"

s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
s.authors = ["Eugene Pimenov"]
s.date = %q{2009-02-12}
s.date = %q{2009-02-14}
s.description = %q{Tidy library interface via FFI}
s.email = %q{libc@me.com}
s.email = %q{}
s.extra_rdoc_files = ["CHANGELOG", "LICENSE", "README", "lib/tidy_ffi/interface.rb", "lib/tidy_ffi/lib_tidy.rb", "lib/tidy_ffi/options_container.rb", "lib/tidy_ffi/tidy.rb", "lib/tidy_ffi/tidy_ffi_extensions.rb", "lib/tidy_ffi.rb"]
s.files = ["CHANGELOG", "LICENSE", "Manifest", "README", "Rakefile", "lib/tidy_ffi/interface.rb", "lib/tidy_ffi/lib_tidy.rb", "lib/tidy_ffi/options_container.rb", "lib/tidy_ffi/tidy.rb", "lib/tidy_ffi/tidy_ffi_extensions.rb", "lib/tidy_ffi.rb", "test/test_helper.rb", "test/test_options.rb", "test/test_simple.rb", "tidy_ffi.gemspec"]
s.has_rdoc = true
Expand All @@ -26,19 +26,10 @@ Gem::Specification.new do |s|

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<ffi>, [">= 0", "= 0.2.0"])
s.add_development_dependency(%q<rr>, [">= 0"])
s.add_development_dependency(%q<matchy>, [">= 0"])
s.add_development_dependency(%q<context>, [">= 0"])
else
s.add_dependency(%q<ffi>, [">= 0", "= 0.2.0"])
s.add_dependency(%q<rr>, [">= 0"])
s.add_dependency(%q<matchy>, [">= 0"])
s.add_dependency(%q<context>, [">= 0"])
end
else
s.add_dependency(%q<ffi>, [">= 0", "= 0.2.0"])
s.add_dependency(%q<rr>, [">= 0"])
s.add_dependency(%q<matchy>, [">= 0"])
s.add_dependency(%q<context>, [">= 0"])
end
end

0 comments on commit c5c6ff3

Please sign in to comment.