roger 1.1.0 → 1.1.1

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: 28dd28041cfcd471cf9ced59eb34fc583da7e8d7
4
- data.tar.gz: 3728b68fa1fdbfacca3baf14fdf9ad3ccae869bf
3
+ metadata.gz: 843441f4532ad0dcd2c12697f3cc1a850468a14b
4
+ data.tar.gz: cdc778e25728a7f07752d57049187ab1335d375d
5
5
  SHA512:
6
- metadata.gz: 1b6d9a19eacc627633c8770eeeade02241f4e9ce998d8fa7e4fda1ea661edf43cff1074901d4cec45a90092a2aaea81918269bf9ae39693674b0dc33c63b4417
7
- data.tar.gz: 871ee889484649653e5b25e297d1754668179462648b53be74fd5783128dc36e4efa40f20b7dae75fd006c501ee9a86d43404c68c13c87cdbd711ecf3906ea51
6
+ metadata.gz: 9891bfcbc25ccefc84b2f165c4b2df93cca0c28fd4c87ff19ab56c52afdb97c36c0311f6b087d1b5f57719a474359a54695b834d99bdf8843d4c81dbba86c2da
7
+ data.tar.gz: cb4bcf7953ecf4250341c6fdfa868cffc578b5b9dca840ab73ffc501e006e6c478b7fb9d74a33946f21e7e2057ce59772a7fa19fda5ec5ef339f5ecf1bfc88bf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## Version 1.1.1
4
+
5
+ * Better compatiblity with the release as `build` is a relative path it will give sometimes weird issues. This has now been resolved.
6
+
3
7
  ## Version 1.1.0
4
8
 
5
9
  * Allow passing of options to release, test and server from Mockupfile
data/lib/roger/release.rb CHANGED
@@ -32,11 +32,12 @@ module Roger
32
32
  # @option config [Array,String, nil] :cp CP command to use; Array will be escaped with Shellwords. Pass nil to get native Ruby CP. (default = ["cp", "-RL"])
33
33
  # @option config [Boolean] :blank Keeps the release clean, don't automatically add any processors or finalizers (default = false)
34
34
  def initialize(project, config = {})
35
+ real_project_path = project.path.realpath
35
36
  defaults = {
36
37
  :scm => :git,
37
- :source_path => project.path + "html",
38
- :target_path => project.path + "releases",
39
- :build_path => project.path + "build",
38
+ :source_path => real_project_path + "html",
39
+ :target_path => real_project_path + "releases",
40
+ :build_path => real_project_path + "build",
40
41
  :cp => ["cp", "-RL"],
41
42
  :blank => false,
42
43
  :cleanup_build => true
data/roger.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "roger"
5
- s.version = "1.1.0"
5
+ s.version = "1.1.1"
6
6
 
7
7
  s.authors = ["Flurin Egger", "Edwin van der Graaf", "Joran Kapteijns"]
8
8
  s.email = ["info@digitpaint.nl", "flurin@digitpaint.nl"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: roger
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Flurin Egger