Skip to content

Commit

Permalink
gemspec cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
UnderpantsGnome committed Dec 30, 2010
1 parent dec6116 commit 03f3d42
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
2 changes: 2 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ Jeweler::Tasks.new do |gem|
gem.authors = ['Michael Moen a.k.a. UnderpantsGnome', 'Neil Heinrich']
gem.files.exclude 'test/dummy'
gem.files.exclude 'spec'
gem.files.exclude 'features'
gem.test_files += Dir.glob('features/**/*')
# Include your dependencies below. Runtime dependencies are required when using your gem,
# and development dependencies are only needed for development (ie running rake tasks, tests, etc)
# gem.add_runtime_dependency 'jabber4r', '> 0.1'
Expand Down
24 changes: 12 additions & 12 deletions jabe.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,6 @@ Gem::Specification.new do |s|
"config/initializers/settings.rb",
"config/initializers/time_formats.rb",
"config/routes.rb",
"features/admin.feature",
"features/entries.feature",
"features/step_definitions/admin_steps.rb",
"features/step_definitions/entry_steps.rb",
"features/step_definitions/support_steps.rb",
"features/step_definitions/web_steps.rb",
"features/support/blueprints.rb",
"features/support/env.rb",
"features/support/paths.rb",
"lib/generators/jabe/migrations/migrations_generator.rb",
"lib/generators/jabe/stylesheets/stylesheets_generator.rb",
"lib/generators/jabe/templates/migrations/create_comments.rb",
Expand Down Expand Up @@ -102,6 +93,15 @@ Gem::Specification.new do |s|
s.rubygems_version = %q{1.3.7}
s.summary = %q{Just Another Blog Engine}
s.test_files = [
"features/admin.feature",
"features/entries.feature",
"features/step_definitions/admin_steps.rb",
"features/step_definitions/entry_steps.rb",
"features/step_definitions/support_steps.rb",
"features/step_definitions/web_steps.rb",
"features/support/blueprints.rb",
"features/support/env.rb",
"features/support/paths.rb",
"spec/support/blueprints.rb",
"test/dummy/app/controllers/application_controller.rb",
"test/dummy/app/helpers/application_helper.rb",
Expand Down Expand Up @@ -137,7 +137,6 @@ Gem::Specification.new do |s|
s.specification_version = 3

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rails>, ["~> 3.0.3"])
s.add_runtime_dependency(%q<devise>, [">= 0"])
s.add_runtime_dependency(%q<friendly_id>, ["= 3.1.8"])
s.add_runtime_dependency(%q<formtastic>, [">= 1.2.3.beta"])
Expand All @@ -147,6 +146,7 @@ Gem::Specification.new do |s|
s.add_runtime_dependency(%q<RedCloth>, [">= 0"])
s.add_runtime_dependency(%q<sass>, [">= 3.1.0.alpha.206"])
s.add_runtime_dependency(%q<will_paginate>, [">= 3.0.pre2"])
s.add_development_dependency(%q<rails>, ["~> 3.0.3"])
s.add_development_dependency(%q<autotest>, [">= 0"])
s.add_development_dependency(%q<autotest-fsevent>, [">= 0"])
s.add_development_dependency(%q<autotest-growl>, [">= 0"])
Expand All @@ -167,7 +167,6 @@ Gem::Specification.new do |s|
s.add_development_dependency(%q<ruby-debug>, [">= 0"])
s.add_development_dependency(%q<wirble>, [">= 0"])
else
s.add_dependency(%q<rails>, ["~> 3.0.3"])
s.add_dependency(%q<devise>, [">= 0"])
s.add_dependency(%q<friendly_id>, ["= 3.1.8"])
s.add_dependency(%q<formtastic>, [">= 1.2.3.beta"])
Expand All @@ -177,6 +176,7 @@ Gem::Specification.new do |s|
s.add_dependency(%q<RedCloth>, [">= 0"])
s.add_dependency(%q<sass>, [">= 3.1.0.alpha.206"])
s.add_dependency(%q<will_paginate>, [">= 3.0.pre2"])
s.add_dependency(%q<rails>, ["~> 3.0.3"])
s.add_dependency(%q<autotest>, [">= 0"])
s.add_dependency(%q<autotest-fsevent>, [">= 0"])
s.add_dependency(%q<autotest-growl>, [">= 0"])
Expand All @@ -198,7 +198,6 @@ Gem::Specification.new do |s|
s.add_dependency(%q<wirble>, [">= 0"])
end
else
s.add_dependency(%q<rails>, ["~> 3.0.3"])
s.add_dependency(%q<devise>, [">= 0"])
s.add_dependency(%q<friendly_id>, ["= 3.1.8"])
s.add_dependency(%q<formtastic>, [">= 1.2.3.beta"])
Expand All @@ -208,6 +207,7 @@ Gem::Specification.new do |s|
s.add_dependency(%q<RedCloth>, [">= 0"])
s.add_dependency(%q<sass>, [">= 3.1.0.alpha.206"])
s.add_dependency(%q<will_paginate>, [">= 3.0.pre2"])
s.add_dependency(%q<rails>, ["~> 3.0.3"])
s.add_dependency(%q<autotest>, [">= 0"])
s.add_dependency(%q<autotest-fsevent>, [">= 0"])
s.add_dependency(%q<autotest-growl>, [">= 0"])
Expand Down

0 comments on commit 03f3d42

Please sign in to comment.