origen 0.5.1 → 0.5.2

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: 355a5d755ad608e02b9d2676a281a938f3963223
4
- data.tar.gz: e2632fa01a0af74099c01d2b972f4e77567dd139
3
+ metadata.gz: 2d6594b5eb4a34dbccfc4c76e9ed6c9f9b39ea60
4
+ data.tar.gz: e6f9c547255149d54f90040264ceccde321711cc
5
5
  SHA512:
6
- metadata.gz: 7182ff153b5811d71e43b327db0b8b9bbebbbddf1ceed51ee337b2bc44ae02a9d592cc010f9c9000e44445b481412a9aed7b73f429009bfbb305aa384ff51ad0
7
- data.tar.gz: fc9a2a22b42be0d5a31b29a0f22bbf3d933c0dea90cafa90c22398db90a58324063556bce9d6f5aae1e286c33b83a320bbc2397d4831bc3f56b618f7ad2fe862
6
+ metadata.gz: 2901024fb0b33136675dfc80eb28effc84936eabe786ebe9efdfb30ce18e1ffd22097e105bd2cf517b18abf6bceb5ca617dc06e2750310d8564c4b200bf299df
7
+ data.tar.gz: a456becf6859f04ff24af820d2c9e6dab78b3782860fe9adee8de031e86f67e942c3498c1acc9611d047a2d7d7e120608c9f78f9929b8704af302e335f784160
data/config/version.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  module Origen
2
2
  MAJOR = 0
3
3
  MINOR = 5
4
- BUGFIX = 1
4
+ BUGFIX = 2
5
5
  DEV = nil
6
6
 
7
7
  VERSION = [MAJOR, MINOR, BUGFIX].join(".") + (DEV ? ".pre#{DEV}" : '')
@@ -96,16 +96,6 @@ Your workspace has local modifications that are preventing the requested action
96
96
  puts "Production releases can only be made on the master branch, your current branch is: #{Origen.app.rc.current_branch}"
97
97
  exit 1
98
98
  end
99
- else
100
- unless Origen.app.rc.current_branch == 'master'
101
- puts "With Git you can only release onto the master branch, your current branch is: #{Origen.app.rc.current_branch}"
102
- puts
103
- puts 'If you want to use a Gitflow workflow you will be able to do development releases on the develop branch, to'
104
- puts 'do that set config.rc_workflow = :gitflow in your config/application.rb'
105
- puts
106
- puts 'Otherwise, for release on a non-standard branch you will need to manage it yourself.'
107
- exit 1
108
- end
109
99
  end
110
100
  end
111
101
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: origen
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen McGinty