Commit ccd80c7e46efe2b95a87b7a20de75753c3e3840c

Authored by Winfield Peterson
1 parent a568c966
Exists in master

Change gemspec runtime depencies to development dependencies.

We only need these gem dependencies to run the tests, not to load the gem.
Showing 1 changed file with 5 additions and 5 deletions   Show diff stats
settingslogic.gemspec
... ... @@ -44,13 +44,13 @@ Gem::Specification.new do |s|
44 44 s.specification_version = 3
45 45  
46 46 if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
47   - s.add_runtime_dependency(%q<rake>, [">= 0"])
48   - s.add_runtime_dependency(%q<jeweler>, [">= 0"])
49   - s.add_runtime_dependency(%q<rspec>, [">= 0"])
  47 + s.add_development_dependency(%q<rake>, [">= 0"])
  48 + s.add_development_dependency(%q<jeweler>, [">= 0"])
  49 + s.add_development_dependency(%q<rspec>, [">= 0"])
50 50 if RUBY_VERSION < "1.9"
51   - s.add_runtime_dependency(%q<ruby-debug>, [">= 0"])
  51 + s.add_development_dependency(%q<ruby-debug>, [">= 0"])
52 52 else
53   - s.add_runtime_dependency(%q<ruby-debug19>, [">= 0"])
  53 + s.add_development_dependency(%q<ruby-debug19>, [">= 0"])
54 54 end
55 55 else
56 56 s.add_dependency(%q<rake>, [">= 0"])
... ...