jumpup 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e36b05e3160d56be778d4ee5fa6fd6ea340b8954
4
- data.tar.gz: e9c71ca167b554c15e17e6054a918943e28a564b
3
+ metadata.gz: eb0354246bd7cbf1ed0d5e456df6f69978327bf2
4
+ data.tar.gz: 42ee0da3af45702cdb57fca2d5a23636d47cdff7
5
5
  SHA512:
6
- metadata.gz: d13c442344af3b29629a976aaf0632abaa2bb4dab0a9c874287b50ec30842c9f330423c3c5a9f9c2ae4f0c4939733aeaf30a7ff868bd79326f4791765d7373eb
7
- data.tar.gz: 9cca81bf281ee387f35597ff49183ae7810ddbbf1800dbfcfcae49c9c5d9c09cc23cf8c0d2d789f4cb0c2da8806e132ed2b4512c184d5a4a222efff21eb14d5a
6
+ metadata.gz: a3c2b76cb72e3076ca57fb037c1d824ac72b9a7615adfad4e1e0858b454cbe756f81a516b04c9a4b9ee9a32664964031b1775281943facf211a37477551e76da
7
+ data.tar.gz: 2548f339f950d911785a9ba5614bd0050947b023b046692300f6b0e8288667a1a8f7ba97a5384c9b78ca6205542fddd89be6f240dfd945d03dbe09a741843d0f
@@ -1,5 +1,24 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.0.6 (unreleased)
4
+
5
+ ### features
6
+
7
+ ### improvements
8
+
9
+ ### bug fixes
10
+
11
+
12
+ ## 0.0.5 (May 15, 2014)
13
+
14
+ ### features
15
+
16
+ ### improvements
17
+
18
+ ### bug fixes
19
+ - Fix warning message about `RAILS_ENV` on rails `>= 4.1`
20
+ - Fix the coverage verify to works on Rails `>= 4.1`
21
+
3
22
  ## 0.0.4 (February 21, 2014)
4
23
 
5
24
  ### features
@@ -148,6 +148,10 @@ This code is free to be used under the terms of the [MIT license][mit].
148
148
 
149
149
  Comments are welcome.
150
150
 
151
+ ## Maintainers
152
+
153
+ - [Thiago Borges](https://github.com/thiagogabriel)
154
+
151
155
  ## Authors
152
156
 
153
157
  Jumpup came from the idea of [integration](https://github.com/tapajos/integration). Thanks to [Improve It][ii] and the original authors:
@@ -156,10 +160,11 @@ Jumpup came from the idea of [integration](https://github.com/tapajos/integratio
156
160
  * [Sylvestre Mergulhão][sm]
157
161
  * [Vinícius Teles][vt]
158
162
 
159
- ## Credits
163
+ ## Made with love by HE:labs
164
+
165
+ ![HE:labs](http://helabs.com.br/images/logo.png)
160
166
 
161
- Jumpup is maintained and funded by [HE:labs](http://helabs.com.br/opensource/).
162
- Thank you to all the [contributors](https://github.com/Helabs/jumpup/graphs/contributors).
167
+ This gem was created and is maintained by [HE:labs](https://github.com/Helabs).
163
168
 
164
169
 
165
170
  [gem_version_badge]: https://badge.fury.io/rb/jumpup.png
@@ -0,0 +1,7 @@
1
+ module Jumpup
2
+ if defined?(MiniTest::Test)
3
+ TestCase = ::Minitest::Test
4
+ else
5
+ TestCase = ::MiniTest::Unit::TestCase
6
+ end
7
+ end
@@ -1,3 +1,3 @@
1
1
  module Jumpup
2
- VERSION = '0.0.4'
2
+ VERSION = '0.0.5'
3
3
  end
@@ -73,7 +73,6 @@ INTEGRATION_TASKS = %w(
73
73
 
74
74
  INTEGRATION_TASKS.each do |subtask|
75
75
  p80("Executing #{subtask}...") do
76
- RAILS_ENV = ENV['RAILS_ENV'] || 'development'
77
76
  Rake::Task[subtask].invoke
78
77
  end
79
78
  end
@@ -1,6 +1,6 @@
1
- %w(test/unit rubygems json).each { |lib| require lib }
1
+ %w(minitest/autorun jumpup/test_case rubygems json).each { |lib| require lib }
2
2
 
3
- class CoverageTest < Test::Unit::TestCase
3
+ class CoverageTest < Jumpup::TestCase
4
4
  COVERAGE_FILE = "coverage/.last_run.json"
5
5
  def test_if_application_is_fully_covered
6
6
  last_run = JSON.parse(File.read(COVERAGE_FILE))
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jumpup
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - HE:labs
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-02-21 00:00:00.000000000 Z
11
+ date: 2014-05-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -54,6 +54,7 @@ files:
54
54
  - Rakefile
55
55
  - jumpup.gemspec
56
56
  - lib/jumpup.rb
57
+ - lib/jumpup/test_case.rb
57
58
  - lib/jumpup/version.rb
58
59
  - lib/tasks/integrate.rake
59
60
  - test/coverage_test.rb
@@ -77,7 +78,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
77
78
  version: '0'
78
79
  requirements: []
79
80
  rubyforge_project:
80
- rubygems_version: 2.2.1
81
+ rubygems_version: 2.2.2
81
82
  signing_key:
82
83
  specification_version: 4
83
84
  summary: Jumpup gem help people that want to do synchronous continuous integration