Skip to content

Commit

Permalink
Update bundled gems.
Browse files Browse the repository at this point in the history
  • Loading branch information
yasuhito committed May 26, 2014
1 parent 7757f3a commit ab92152
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 19 deletions.
12 changes: 6 additions & 6 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
AllCops:
Includes:
- Gemfile
- Guardfile
- Rakefile
- examples
- paper_house.gemspec
Include:
- ./Gemfile
- ./Guardfile
- ./Rakefile
- ./examples
- ./paper_house.gemspec
- tasks/*.rake
14 changes: 7 additions & 7 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ source 'https://rubygems.org'
gemspec

group :docs do
gem 'inch', '~> 0.3.3'
gem 'inch', '~> 0.4.6'
gem 'relish', '~> 0.7'
gem 'yard', '~> 0.8.7.4'
end

group :development do
gem 'guard', '~> 2.6.0'
gem 'guard', '~> 2.6.1'
gem 'guard-bundler', '~> 2.0.0'
gem 'guard-cucumber', '~> 1.4.1'
gem 'guard-rspec', '~> 4.2.8'
gem 'guard-rubocop', '~> 1.0.2'
gem 'guard-rspec', '~> 4.2.9'
gem 'guard-rubocop', '~> 1.1.0'
gem 'rb-fchange', '~> 0.0.6', require: false
gem 'rb-fsevent', '~> 0.9.4', require: false
gem 'rb-inotify', '~> 0.9.3', require: false
Expand All @@ -25,12 +25,12 @@ end
group :test do
gem 'aruba', '~> 0.5.4'
gem 'coveralls', '~> 0.7.0', require: false
gem 'cucumber', '~> 1.3.13'
gem 'cucumber', '~> 1.3.15'
gem 'flay', '~> 2.4.0'
gem 'flog', '~> 4.2.0'
gem 'fuubar', '~> 1.3.2'
gem 'fuubar', '~> 1.3.3'
gem 'reek', '~> 1.3.7'
gem 'rspec', '~> 2.14.1'
gem 'rspec-given', '~> 3.5.4'
gem 'rubocop', '~> 0.19.1', platforms: [:ruby_19, :ruby_20, :ruby_21]
gem 'rubocop', '~> 0.22.0', platforms: [:ruby_19, :ruby_20, :ruby_21]
end
2 changes: 1 addition & 1 deletion features/support/hooks.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# encoding: utf-8

AfterConfiguration do |config|
AfterConfiguration do |_config|
FileUtils.rm_f Dir.glob('tmp/.*_id')
end

Expand Down
2 changes: 1 addition & 1 deletion lib/paper_house/auto_depends.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def run
private

def popen_command
POpen4.popen4(@command) do |stdout, stderr, stdin, |
POpen4.popen4(@command) do |_stdout, stderr, stdin, |
stdin.close
parse_cc_h_stderr stderr
end
Expand Down
5 changes: 2 additions & 3 deletions lib/paper_house/library_task.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@ class LibraryTask < BuildTask
def self.find_by_name(name)
ObjectSpace.each_object(self) do |each|
obj_name = each.name
if Rake::Task.task_defined?(obj_name) && obj_name == name.to_s
return each
end
next if !Rake::Task.task_defined?(obj_name) || obj_name != name.to_s
return each
end
nil
end
Expand Down
2 changes: 1 addition & 1 deletion spec/paper_house/shared_library_task_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
Then { task.target_path == './libtest.so.0.1.0' }
end

context "with :test and a block setting "\
context 'with :test and a block setting '\
":version = '0.1.0' and :library_name = 'libfoo'" do
When(:task) do
PaperHouse::SharedLibraryTask.new(:libtest) do |task|
Expand Down

0 comments on commit ab92152

Please sign in to comment.