Skip to content

Commit

Permalink
Only ActiveSupport actually required, not Rails gem
Browse files Browse the repository at this point in the history
  • Loading branch information
bf4 committed Dec 9, 2013
1 parent 4c77ac6 commit c8dd916
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/acts-as-taggable-on.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require "active_record"
require "active_record/version"
require "action_view"
require 'rails'
require 'active_support/all'

require "digest/sha1"

Expand Down

2 comments on commit c8dd916

@ches
Copy link
Contributor

@ches ches commented on c8dd916 Dec 10, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bringing in all of ActiveSupport is a big commitment to make, just fair warning...

@bf4
Copy link
Collaborator Author

@bf4 bf4 commented on c8dd916 Dec 11, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wanna help pare it down to the actual requirements? My primary goal at the time was to get tests running and passing.

Please sign in to comment.