Skip to content
This repository has been archived by the owner on Jan 6, 2019. It is now read-only.

Commit

Permalink
Removed active_record dependancy, which was unused, to it can be used…
Browse files Browse the repository at this point in the history
… on non-active_record projects.
  • Loading branch information
brockers committed Dec 3, 2013
1 parent 9187508 commit c20c67c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion backbone-on-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ Gem::Specification.new do |s|
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test}/*`.split("\n")

s.add_dependency 'rails', '>= 3.1'
# s.add_dependency 'rails', '>= 3.1'
# gem 'rails' # we don't want to load activerecord so we can't require rails
s.add_dependency 'railties'
s.add_dependency 'actionpack'
s.add_dependency 'actionmailer'
s.add_dependency 'activemodel'
s.add_dependency 'jquery-rails'
s.add_dependency 'ejs'
s.add_dependency 'eco'
Expand Down

0 comments on commit c20c67c

Please sign in to comment.