diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..66697a8 --- /dev/null +++ b/Gemfile @@ -0,0 +1,4 @@ +source 'https://rubygems.org' + +# Specify your gem's dependencies in statement.gemspec +gemspec \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..5673205 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,32 @@ +PATH + remote: . + specs: + feedbag (0.9.1) + nokogiri + +GEM + remote: https://rubygems.org/ + specs: + activesupport (3.2.13) + i18n (= 0.6.1) + multi_json (~> 1.0) + i18n (0.6.1) + metaclass (0.0.1) + mocha (0.12.10) + metaclass (~> 0.0.1) + multi_json (1.7.2) + nokogiri (1.5.9) + shoulda (3.4.0) + shoulda-context (~> 1.0, >= 1.0.1) + shoulda-matchers (~> 1.0, >= 1.4.1) + shoulda-context (1.1.0) + shoulda-matchers (1.4.1) + activesupport (>= 3.0.0) + +PLATFORMS + ruby + +DEPENDENCIES + feedbag! + mocha (~> 0.12.0) + shoulda diff --git a/feedbag.gemspec b/feedbag.gemspec index f6f05f3..cef181a 100644 --- a/feedbag.gemspec +++ b/feedbag.gemspec @@ -6,7 +6,7 @@ Gem::Specification.new do |s| s.homepage = "http://axiombox.com/feedbag" s.rubyforge_project = "feedbag" - s.authors = ["Axiombox", "David Moreno"] + s.authors = ["Axiombox", "David Moreno", "Derek Willis"] s.date = %q{2012-03-16} s.description = %q{Ruby's favorite feed auto-discoverty tool} s.email = %q{david@axiombox.com} @@ -15,7 +15,9 @@ Gem::Specification.new do |s| s.has_rdoc = true s.rdoc_options = ["--main", "README.markdown"] s.summary = %q{Ruby's favorite feed auto-discovery tool} - s.add_dependency("hpricot", '>= 0.6') + s.add_dependency("nokogiri") + s.add_development_dependency "shoulda" + s.add_development_dependency "mocha", "~> 0.12.0" s.bindir = 'bin' s.default_executable = %q{feedbag} s.executables = ["feedbag"]