Skip to content

Commit

Permalink
More pessimistic dependencies of rugged and thor
Browse files Browse the repository at this point in the history
  • Loading branch information
mmozuras committed Sep 10, 2014
1 parent 62c3ea9 commit b5f80b6
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 18 deletions.
31 changes: 15 additions & 16 deletions pronto.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ $LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'pronto/version'

Gem::Specification.new do |s|
s.name = 'pronto'
s.version = Pronto::VERSION
s.platform = Gem::Platform::RUBY
s.author = 'Mindaugas Mozūras'
s.email = '[email protected]'
s.homepage = 'http://github.org/mmozuras/pronto'
s.summary = 'Pronto runs analysis by checking only the introduced changes'
s.name = 'pronto'
s.version = Pronto::VERSION
s.platform = Gem::Platform::RUBY
s.author = 'Mindaugas Mozūras'
s.email = '[email protected]'
s.homepage = 'http://github.org/mmozuras/pronto'
s.summary = 'Pronto runs analysis by checking only the introduced changes'
s.description = <<-EOF
Pronto runs analysis quickly by checking only the relevant changes. Created
to be used on pull requests, but suited for other scenarios as well. Perfect
Expand All @@ -21,16 +21,15 @@ Gem::Specification.new do |s|
s.required_rubygems_version = '>= 1.3.6'
s.license = 'MIT'

s.files = Dir.glob('{lib}/**/*') + %w(LICENSE README.md)
s.test_files = `git ls-files -- {spec}/*`.split("\n")
s.files = Dir.glob('{lib}/**/*') + %w(LICENSE README.md)
s.test_files = `git ls-files -- {spec}/*`.split("\n")
s.require_paths = ['lib']
s.executables << 'pronto'

s.add_runtime_dependency 'rugged', '~> 0.21', '>= 0.21.0'
s.add_runtime_dependency 'thor', '~> 0.19', '>= 0.19.1'
s.add_runtime_dependency 'octokit', '~> 3.2', '>= 3.2.0'
s.add_development_dependency 'rake', '~> 10.1', '>= 10.1.0'
s.add_development_dependency 'rspec', '~> 3.0', '>= 3.0.0'
s.add_development_dependency 'rspec-its', '~> 1.0.1', '>= 1.0.1'
s.add_development_dependency 'pry', '~> 0.9', '>= 0.9.0'
s.add_runtime_dependency 'rugged', '~> 0.21.0'
s.add_runtime_dependency 'thor', '~> 0.19.0'
s.add_runtime_dependency 'octokit', '~> 3.2'
s.add_development_dependency 'rake', '~> 10.3'
s.add_development_dependency 'rspec', '~> 3.0'
s.add_development_dependency 'rspec-its', '~> 1.0'
end
2 changes: 0 additions & 2 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
require 'rspec'
require 'rspec/its'
require 'pry'

require 'pronto'

RSpec.configure do |config|
Expand Down

0 comments on commit b5f80b6

Please sign in to comment.