diff options
author | Mike Perham <mperham@gmail.com> | 2016-02-03 14:28:55 -0800 |
---|---|---|
committer | Mike Perham <mperham@gmail.com> | 2016-02-03 14:28:55 -0800 |
commit | cf18c34e3a3e010e1b987b06a55c4f60543b2ba4 (patch) | |
tree | 403bb412798d292636acbf1617fa0fe8d1880650 | |
parent | 13b918d1e9ebe2c609b5479550a35f3665c2acd2 (diff) | |
download | rails-cf18c34e3a3e010e1b987b06a55c4f60543b2ba4.tar.gz rails-cf18c34e3a3e010e1b987b06a55c4f60543b2ba4.tar.bz2 rails-cf18c34e3a3e010e1b987b06a55c4f60543b2ba4.zip |
Remove unused dependency
railties uses method_source, activesupport does not. I assume code was refactored and the dependency wasn't removed.
-rw-r--r-- | Gemfile.lock | 1 | ||||
-rw-r--r-- | activesupport/activesupport.gemspec | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/Gemfile.lock b/Gemfile.lock index 249028d697..169c65b39d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -64,7 +64,6 @@ PATH activesupport (5.0.0.beta2) concurrent-ruby (~> 1.0) i18n (~> 0.7) - method_source minitest (~> 5.1) tzinfo (~> 1.1) rails (5.0.0.beta2) diff --git a/activesupport/activesupport.gemspec b/activesupport/activesupport.gemspec index 3b71858350..68a80701ed 100644 --- a/activesupport/activesupport.gemspec +++ b/activesupport/activesupport.gemspec @@ -24,5 +24,4 @@ Gem::Specification.new do |s| s.add_dependency 'tzinfo', '~> 1.1' s.add_dependency 'minitest', '~> 5.1' s.add_dependency 'concurrent-ruby', '~> 1.0' - s.add_dependency 'method_source' end |