Skip to content

Commit

Permalink
Update copyright to 2016 year [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
davydovanton committed Jan 1, 2016
1 parent fccee1c commit ad7d132
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Gemfile
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
@@ -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
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 ad7d132

Please sign in to comment.