jumpup 0.0.3 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5105b8cc0da609d273f7949b1c9166faf4ac13f3
4
- data.tar.gz: 688b114ef4fbf248707d10819991e8c32bb29914
3
+ metadata.gz: e36b05e3160d56be778d4ee5fa6fd6ea340b8954
4
+ data.tar.gz: e9c71ca167b554c15e17e6054a918943e28a564b
5
5
  SHA512:
6
- metadata.gz: e9f6a6988584c24c816e412b11069a87c8aacbe3c898a8dc70c2d3849fb2a3064cbf11cfe8d74fa3f2d3241f56b2a1d79305c28682873e50d1634ab7951de668
7
- data.tar.gz: bcb16b9ed90d99ac95085dbf170251717851ec28021b02f25d484c8340cf1a030c91540b2e637ad3c7c4e9a0eec56d9dad2904c84592b2eb98934dc9140492b0
6
+ metadata.gz: d13c442344af3b29629a976aaf0632abaa2bb4dab0a9c874287b50ec30842c9f330423c3c5a9f9c2ae4f0c4939733aeaf30a7ff868bd79326f4791765d7373eb
7
+ data.tar.gz: 9cca81bf281ee387f35597ff49183ae7810ddbbf1800dbfcfcae49c9c5d9c09cc23cf8c0d2d789f4cb0c2da8806e132ed2b4512c184d5a4a222efff21eb14d5a
@@ -1,5 +1,34 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.0.4 (February 21, 2014)
4
+
5
+ ### features
6
+
7
+ ### improvements
8
+
9
+ - Create a CONTRIBUTING file
10
+ - Add info about how release the gem
11
+ - Add info about issues
12
+ - Add info about contributing
13
+ - Add info about credits
14
+
15
+ ### bug fixes
16
+
17
+ - Fix bundle install on bundler 1.5.2 when have gems from github
18
+
19
+ ## 0.0.3 (January 17, 2014)
20
+
21
+ ### features
22
+
23
+ ### improvements
24
+
25
+ - Name correct tasks on README
26
+ - Add rake dependency as 0
27
+
28
+ ### bug fixes
29
+
30
+ - Fix coverage that dont stop the integrate
31
+
3
32
  ## 0.0.2 (January 8, 2014)
4
33
 
5
34
  ### features
@@ -0,0 +1,21 @@
1
+ # Contributing
2
+
3
+ We love pull requests. Here's a quick guide:
4
+
5
+ 1. Fork the repo.
6
+
7
+ 1. Create your feature branch (`git checkout -b my-new-feature`)
8
+
9
+ 1. Update [CHANGELOG.md](https://github.com/Helabs/jumpup/blob/master/CHANGELOG.md) with a brief description of your changes under the `unreleased` heading.
10
+
11
+ 1. Commit your changes (`git commit -am 'Added some feature'`)
12
+
13
+ 1. Push to the branch (`git push origin my-new-feature`)
14
+
15
+ 1. Create new Pull Request
16
+
17
+ At this point you're waiting on us. We like to at least comment on, if not
18
+ accept, pull requests within three business days (and, typically, one business
19
+ day). We may suggest some changes or improvements or alternatives.
20
+
21
+ Some things that will increase the chance that your pull request is accepted is to follow the practices described on [Ruby style guide](https://github.com/bbatsov/ruby-style-guide), [Rails style guide](https://github.com/bbatsov/rails-style-guide) and [Better Specs](http://betterspecs.org/).
@@ -1,8 +1,9 @@
1
1
  # Jumpup
2
+ [![RubyGems][gem_version_badge]][ruby_gems]
2
3
 
3
4
  ## What
4
5
 
5
- Jumpup is a [Ruby on Rails][ror] plugin that provides a set of tasks to automate all steps of a [synchronous continuous integration][sci] process, that is, [continuous integration][ci] without a server such as [CruiseControl][cc]. Why? Because that's the way we like it!
6
+ Jumpup is a [Ruby on Rails][ror] gem that provides a set of tasks to automate all steps of a [synchronous continuous integration][sci] process, that is, [continuous integration][ci] without a server such as [Travis][travis]. Why? Because that's the way we like it!
6
7
 
7
8
  ## Installing
8
9
 
@@ -12,7 +13,7 @@ Add it to your Gemfile:
12
13
  gem 'jumpup'
13
14
  end
14
15
 
15
- After installing the plugin is ready to be used and you will need to execute only one task in order to integrate your code safely:
16
+ After installing the gem is ready to be used and you will need to execute only one task in order to integrate your code safely:
16
17
 
17
18
  rake integrate
18
19
 
@@ -102,7 +103,7 @@ Using this almost paranoid sequence of steps it will be hard to check in bad cod
102
103
  jumpup:finish
103
104
  )
104
105
 
105
- As a matter of fact, since this case might be very common, **we decided to create a lib/tasks/integration.rake for you once the plugin has been installed. It has this very configuration and you can use it as a starting point to customize your integration process**.
106
+ As a matter of fact, since this case might be very common, **we decided to create a lib/tasks/integration.rake for you once the gem has been installed. It has this very configuration and you can use it as a starting point to customize your integration process**.
106
107
 
107
108
  * Spec infected programmer
108
109
 
@@ -120,6 +121,25 @@ Using this almost paranoid sequence of steps it will be hard to check in bad cod
120
121
 
121
122
  Jumpup follows the [Semantic Versioning](http://semver.org/).
122
123
 
124
+ ## Issues
125
+
126
+ If you have problems, please create a [Github Issue](https://github.com/Helabs/jumpup/issues).
127
+
128
+ ## Contributing
129
+
130
+ Please see [CONTRIBUTING.md](https://github.com/Helabs/jumpup/blob/master/CONTRIBUTING.md) for details.
131
+
132
+ ## Release
133
+
134
+ Follow this steps to release a new version of the gem.
135
+
136
+ 1. Test if everything is running ok;
137
+ 1. Change version of the gem on `VERSION` constant;
138
+ 1. Add the release date on the `CHANGELOG`;
139
+ 1. Do a commit "Bump version x.x.x", follow the semantic version;
140
+ 1. Run `$ rake release`, this will send the gem to the rubygems;
141
+ 1. Check if the gem is on the rubygems and the tags are correct on the github;
142
+
123
143
  ## License
124
144
 
125
145
  This code is free to be used under the terms of the [MIT license][mit].
@@ -136,7 +156,14 @@ Jumpup came from the idea of [integration](https://github.com/tapajos/integratio
136
156
  * [Sylvestre Mergulhão][sm]
137
157
  * [Vinícius Teles][vt]
138
158
 
159
+ ## Credits
160
+
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).
163
+
139
164
 
165
+ [gem_version_badge]: https://badge.fury.io/rb/jumpup.png
166
+ [ruby_gems]: http://rubygems.org/gems/jumpup
140
167
  [piston]: http://piston.rubyforge.org/
141
168
  [mt]: https://github.com/tapajos
142
169
  [sm]: https://github.com/mergulhao
@@ -154,8 +181,8 @@ Jumpup came from the idea of [integration](https://github.com/tapajos/integratio
154
181
  [co]: http://www.improveit.com.br/en/contact
155
182
  [mit]: http://www.opensource.org/licenses/mit-license.php
156
183
  [ci]: http://martinfowler.com/articles/continuousIntegration.html
157
- [cc]: http://cruisecontrol.sourceforge.net
184
+ [travis]: http://travis-ci.org
158
185
  [tar]: http://en.wikipedia.org/wiki/Tar_%28file_format%29
159
186
  [BDD]: http://en.wikipedia.org/wiki/Behavior_driven_development
160
187
  [TDD]: http://en.wikipedia.org/wiki/Test-driven_development
161
- [ii]: http://www.improveit.com.br
188
+ [ii]: http://www.improveit.com.br
@@ -1,3 +1,3 @@
1
1
  module Jumpup
2
- VERSION = "0.0.3"
2
+ VERSION = '0.0.4'
3
3
  end
@@ -41,7 +41,9 @@ namespace :jumpup do
41
41
 
42
42
  desc 'Run bundle install'
43
43
  task :bundle_install do
44
- sh 'bundle install --quiet'
44
+ Bundler.with_clean_env do
45
+ sh 'bundle install --quiet'
46
+ end
45
47
  end
46
48
 
47
49
  end
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.3
4
+ version: 0.0.4
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-01-17 00:00:00.000000000 Z
11
+ date: 2014-02-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -47,6 +47,7 @@ extra_rdoc_files: []
47
47
  files:
48
48
  - ".gitignore"
49
49
  - CHANGELOG.md
50
+ - CONTRIBUTING.md
50
51
  - Gemfile
51
52
  - MIT-LICENSE
52
53
  - README.mkdn
@@ -76,7 +77,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
76
77
  version: '0'
77
78
  requirements: []
78
79
  rubyforge_project:
79
- rubygems_version: 2.2.0
80
+ rubygems_version: 2.2.1
80
81
  signing_key:
81
82
  specification_version: 4
82
83
  summary: Jumpup gem help people that want to do synchronous continuous integration