Skip to content

Commit

Permalink
Fix gemspec warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jodosha committed Mar 22, 2014
1 parent 6a3e4d8 commit f84e44b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -9,7 +9,7 @@ else
end

gem 'rake'
gem 'tilt', '~> 2.0.1'
gem 'tilt', '~> 2.0.1', '>= 2.0.1'
gem 'haml', require: false
gem 'simplecov', require: false
gem 'coveralls', require: false
6 changes: 3 additions & 3 deletions lotus-view.gemspec
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
spec.authors = ['Luca Guidi']
spec.email = ['me@lucaguidi.com']
spec.description = %q{View layer for Lotus}
spec.summary = %q{View layer for Lotus}
spec.summary = %q{View layer for Lotus, with a separation between views and templates}
spec.homepage = 'http://lotusrb.org'
spec.license = 'MIT'

Expand All @@ -18,8 +18,8 @@ Gem::Specification.new do |spec|
spec.test_files = spec.files.grep(%r{^(test)/})
spec.require_paths = ['lib']

spec.add_dependency 'tilt', '~> 2.0.1'
spec.add_dependency 'lotus-utils', '~> 0.1'
spec.add_runtime_dependency 'tilt', '~> 2.0', '>= 2.0.1'
spec.add_runtime_dependency 'lotus-utils', '~> 0.1'

spec.add_development_dependency 'bundler', '~> 1.5'
spec.add_development_dependency 'minitest', '~> 5'
Expand Down

0 comments on commit f84e44b

Please sign in to comment.