Skip to content

Commit

Permalink
moved development dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
trusche committed Nov 22, 2012
1 parent 290c1e8 commit ec01a9f
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 95 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.bundle/
.rvmrc
pkg/
*.gem
17 changes: 2 additions & 15 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,2 @@
source "http://rubygems.org"

gem 'rails', '3.1.0'
gem 'httpclient'

# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'

gem 'rspec'
gem 'rack'
gem 'thin'

if RUBY_VERSION < '1.9'
gem "ruby-debug", ">= 0.10.3"
end
source :rubygems
gemspec
84 changes: 6 additions & 78 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,78 +1,16 @@
PATH
remote: .
specs:
httplog (0.2.0)

GEM
remote: http://rubygems.org/
specs:
actionmailer (3.1.0)
actionpack (= 3.1.0)
mail (~> 2.3.0)
actionpack (3.1.0)
activemodel (= 3.1.0)
activesupport (= 3.1.0)
builder (~> 3.0.0)
erubis (~> 2.7.0)
i18n (~> 0.6)
rack (~> 1.3.2)
rack-cache (~> 1.0.3)
rack-mount (~> 0.8.2)
rack-test (~> 0.6.1)
sprockets (~> 2.0.0)
activemodel (3.1.0)
activesupport (= 3.1.0)
bcrypt-ruby (~> 3.0.0)
builder (~> 3.0.0)
i18n (~> 0.6)
activerecord (3.1.0)
activemodel (= 3.1.0)
activesupport (= 3.1.0)
arel (~> 2.2.1)
tzinfo (~> 0.3.29)
activeresource (3.1.0)
activemodel (= 3.1.0)
activesupport (= 3.1.0)
activesupport (3.1.0)
multi_json (~> 1.0)
arel (2.2.1)
bcrypt-ruby (3.0.1)
builder (3.0.0)
daemons (1.1.8)
diff-lcs (1.1.3)
erubis (2.7.0)
eventmachine (0.12.10)
hike (1.2.1)
httpclient (2.3.0.1)
i18n (0.6.0)
mail (2.3.0)
i18n (>= 0.4.0)
mime-types (~> 1.16)
treetop (~> 1.4.8)
mime-types (1.16)
multi_json (1.0.3)
polyglot (0.3.2)
rack (1.3.3)
rack-cache (1.0.3)
rack (>= 0.4)
rack-mount (0.8.3)
rack (>= 1.0.0)
rack-ssl (1.3.2)
rack
rack-test (0.6.1)
rack (>= 1.0)
rails (3.1.0)
actionmailer (= 3.1.0)
actionpack (= 3.1.0)
activerecord (= 3.1.0)
activeresource (= 3.1.0)
activesupport (= 3.1.0)
bundler (~> 1.0)
railties (= 3.1.0)
railties (3.1.0)
actionpack (= 3.1.0)
activesupport (= 3.1.0)
rack-ssl (~> 1.3.2)
rake (>= 0.8.7)
rdoc (~> 3.4)
thor (~> 0.14.6)
rake (0.9.2)
rdoc (3.9.4)
rspec (2.6.0)
rspec-core (~> 2.6.0)
rspec-expectations (~> 2.6.0)
Expand All @@ -81,27 +19,17 @@ GEM
rspec-expectations (2.6.0)
diff-lcs (~> 1.1.2)
rspec-mocks (2.6.0)
sprockets (2.0.0)
hike (~> 1.2)
rack (~> 1.0)
tilt (~> 1.1, != 1.3.0)
thin (1.4.1)
daemons (>= 1.0.9)
eventmachine (>= 0.12.6)
rack (>= 1.0.0)
thor (0.14.6)
tilt (1.3.3)
treetop (1.4.10)
polyglot
polyglot (>= 0.3.1)
tzinfo (0.3.29)

PLATFORMS
ruby

DEPENDENCIES
httpclient
httplog!
rack
rails (= 3.1.0)
rspec
thin
7 changes: 5 additions & 2 deletions httplog.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@ Gem::Specification.new do |s|
s.description = %q{Log outgoing HTTP requests made from your application. Helpful for tracking API calls
of third party gems that don't provide their own log output.}
s.email = %q{thilorusche@gmail.com}

s.files = Dir["lib/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]

s.add_development_dependency "rspec"
s.add_development_dependency "rack"
s.add_development_dependency "thin"
s.add_development_dependency "httpclient"
end

0 comments on commit ec01a9f

Please sign in to comment.