Navigation Menu

Skip to content

Commit

Permalink
Fix activesupport gem name
Browse files Browse the repository at this point in the history
The proper name of the Active Support gem seems to be `activesupport`. There is an `active_support` gem, but it has been yanked. This doesn't change the paths used with `require` which still include `active_support`.

We cannot upgrade to `breach-mitigation-rails` without this change.

Note: I edited the gemspec on GitHub, so I haven't actually verified that this works, but I have confirmed the proper gem name.
  • Loading branch information
davidbalbert committed May 6, 2014
1 parent 3176d47 commit 21e4968
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion breach-mitigation-rails.gemspec
Expand Up @@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]

spec.add_dependency "active_support"
spec.add_dependency "activesupport"
spec.add_dependency "rack"
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rspec"
Expand Down

0 comments on commit 21e4968

Please sign in to comment.