bump 0.3.5 → 0.3.6

Sign up to get free protection for your applications and to get access to all the features.
data/.travis.yml CHANGED
@@ -1,4 +1,10 @@
1
1
  rvm:
2
2
  - ree
3
+ - 1.8.7
3
4
  - 1.9.2
4
5
  - 1.9.3
6
+ - jruby-18mode
7
+ - jruby-19mode
8
+ - rbx-18mode
9
+ - rbx-19mode
10
+ - ruby-head
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bump (0.3.5)
4
+ bump (0.3.6)
5
5
 
6
6
  GEM
7
7
  remote: http://rubygems.org/
data/README.md CHANGED
@@ -1,3 +1,7 @@
1
+ # Introduction
2
+ Bump is a gem that will simplify the way you build gems.
3
+
4
+
1
5
  # Installation
2
6
 
3
7
  gem install bump
@@ -10,12 +14,25 @@ Current version of your gem:
10
14
 
11
15
  Current version: 0.1.2
12
16
 
13
- Bump your gemfile (major, minor, patch):
17
+ Bump your gemfile (major, minor, patch, pre):
14
18
 
15
19
  bump patch
16
20
 
17
21
  Bump version 0.1.2 to 0.1.3
18
22
 
23
+ ### Options
24
+
25
+ ### --no-commit
26
+ If you don't want to make a commit after bumping your gem, add the `--no-commit` option.
27
+
28
+ bump patch --no-commit
29
+
30
+
31
+ ### --no-bundle
32
+ If you don't want to run the `bundle` command after bumping your gem, add the `--no-bundle` option.
33
+
34
+ bump patch --no-bundle
35
+
19
36
  ### Rake
20
37
 
21
38
  ```Ruby
@@ -40,9 +57,7 @@ Bump::Bump.current # -> "1.2.3"
40
57
 
41
58
  # Todo
42
59
 
43
- - Handle options properly
44
60
  - `VERSION = "1.2.3"` in lib/*.rb
45
- - Build new gem version: gem build xxx.gemspec
46
61
 
47
62
  # Author
48
63
  Gregory<br/>
data/bump.gemspec CHANGED
@@ -1,5 +1,5 @@
1
1
  Gem::Specification.new "bump" do |s|
2
- s.version = "0.3.5"
2
+ s.version = "0.3.6"
3
3
  s.author = "Gregory Marcilhacy"
4
4
  s.email = "g.marcilhacy@gmail.com"
5
5
  s.homepage = "https://github.com/gregorym/bump"
data/spec/bump_spec.rb CHANGED
@@ -281,7 +281,9 @@ describe Bump do
281
281
  def write_gemspec(version = '"4.2.3"')
282
282
  write gemspec, <<-RUBY.sub(" "*6, "")
283
283
  Gem::Specification.new do |s|
284
+ s.name = 'fixture'
284
285
  s.version = #{version}
286
+ s.summary = 'Fixture gem'
285
287
  end
286
288
  RUBY
287
289
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bump
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.5
4
+ version: 0.3.6
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-10-29 00:00:00.000000000 Z
12
+ date: 2012-12-03 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description:
15
15
  email: g.marcilhacy@gmail.com
@@ -57,3 +57,4 @@ signing_key:
57
57
  specification_version: 3
58
58
  summary: Bump your gem version file
59
59
  test_files: []
60
+ has_rdoc: