Skip to content

Commit

Permalink
Add Active Record as a development gem
Browse files Browse the repository at this point in the history
  • Loading branch information
Arcath committed Aug 16, 2011
1 parent 0aa1703 commit 1fa9b0b
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ doc/*
.yardoc/* .yardoc/*


.rvmrc .rvmrc

spec/test.sqlite3
17 changes: 16 additions & 1 deletion Gemfile.lock
Original file line number Original file line Diff line number Diff line change
@@ -1,13 +1,26 @@
PATH PATH
remote: . remote: .
specs: specs:
adauth (1.0.0) adauth (1.1.0)
net-ldap net-ldap


GEM GEM
remote: http://rubygems.org/ remote: http://rubygems.org/
specs: specs:
activemodel (3.0.7)
activesupport (= 3.0.7)
builder (~> 2.1.2)
i18n (~> 0.5.0)
activerecord (3.0.7)
activemodel (= 3.0.7)
activesupport (= 3.0.7)
arel (~> 2.0.2)
tzinfo (~> 0.3.23)
activesupport (3.0.7)
arel (2.0.10)
builder (2.1.2)
diff-lcs (1.1.2) diff-lcs (1.1.2)
i18n (0.5.0)
net-ldap (0.2.2) net-ldap (0.2.2)
rspec (2.6.0) rspec (2.6.0)
rspec-core (~> 2.6.0) rspec-core (~> 2.6.0)
Expand All @@ -17,10 +30,12 @@ GEM
rspec-expectations (2.6.0) rspec-expectations (2.6.0)
diff-lcs (~> 1.1.2) diff-lcs (~> 1.1.2)
rspec-mocks (2.6.0) rspec-mocks (2.6.0)
tzinfo (0.3.29)


PLATFORMS PLATFORMS
ruby ruby


DEPENDENCIES DEPENDENCIES
activerecord
adauth! adauth!
rspec rspec
1 change: 1 addition & 0 deletions adauth.gemspec
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Gem::Specification.new do |s|
s.summary = "Provides Active Directory authentication for Rails" s.summary = "Provides Active Directory authentication for Rails"


s.add_development_dependency "rspec" s.add_development_dependency "rspec"
s.add_development_dependency "activerecord"
s.add_dependency "net-ldap" s.add_dependency "net-ldap"


s.files = `git ls-files`.split("\n") s.files = `git ls-files`.split("\n")
Expand Down

0 comments on commit 1fa9b0b

Please sign in to comment.