Skip to content

Commit

Permalink
Merge pull request #45 from davydovanton/update-copyright
Browse files Browse the repository at this point in the history
Update copyright to 2016 year
  • Loading branch information
Trung Lê committed Jan 1, 2016
2 parents fccee1c + ad7d132 commit 9a97b79
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,6 @@ gem 'lotus-view', '~> 0.5', github: 'lotus/view', branch: '0.5.x'

gem 'simplecov', require: false
gem 'coveralls', require: false

gem 'stackprof'
gem 'minitest-around'
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2014 Luca Guidi
Copyright © 2014-2016 Luca Guidi

MIT License

Expand Down
12 changes: 12 additions & 0 deletions test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,15 @@
require_relative './fixtures'

Lotus::View.load!

require 'stackprof'
require 'minitest/around/spec'

class Minitest::Test
def around(&example)
path = "/Users/anton/work/repositories/lotus/helpers/tmp/stackprof-test-#{Time.now.to_i}-#{rand(200)}.dump"
StackProf.run(mode: :object, out: path.to_s) do
example.call
end
end
end

0 comments on commit 9a97b79

Please sign in to comment.