sc-frank-cucumber 1.2.1.c13cb90 → 1.2.1.d2d00d2

Sign up to get free protection for your applications and to get access to all the features.
@@ -191,11 +191,11 @@
191
191
  fill: "#aaff00",
192
192
  opacity: 0.8,
193
193
  stroke: "black",
194
- transform: _this.backdropTransformer.push().translate(origin.x * resolution.scale, origin.y * resolution.scale).descAndPop(),
194
+ transform: _this.backdropTransformer.push().translate(origin.x, origin.y).descAndPop(),
195
195
  x: 0,
196
196
  y: 0,
197
- width: size.width *resolution.scale,
198
- height: size.height * resolution.scale
197
+ width: size.width,
198
+ height: size.height
199
199
  });
200
200
  });
201
201
  }
@@ -114,7 +114,7 @@
114
114
  fetchDevice: fetchDevice,
115
115
  requestSnapshotRefresh: requestSnapshotRefresh,
116
116
  baseScreenshotUrl: function() {
117
- return cacheBust(baseUrlFor('/screenshot/allwindows/'));
117
+ return cacheBust(baseUrlFor('/screenshot'));
118
118
  },
119
119
  snapshotUrlForViewWithUid: function(uid) {
120
120
  return cacheBust(baseUrlFor("/screenshot/view-snapshot/" + uid));
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -25,12 +25,14 @@ class Frankifier
25
25
  check_target_build_configuration_is_valid!
26
26
 
27
27
  say ''
28
- add_linker_flag
28
+ project_changed |= add_linker_flag
29
29
 
30
30
  say ''
31
- add_library_search_path
31
+ project_changed |= add_library_search_path
32
32
 
33
- save_changes
33
+ if project_changed
34
+ save_changes
35
+ end
34
36
  end
35
37
 
36
38
  private
@@ -99,7 +101,7 @@ class Frankifier
99
101
 
100
102
  if setting_array.find{ |flag| flag.start_with? "$(FRANK_" }
101
103
  say "It appears that your '#{@target_build_configuration}' configuration's #{build_setting} build setting already include some FRANK setup. Namely: #{setting_array.inspect}. I won't change anything here."
102
- return
104
+ return false
103
105
  end
104
106
 
105
107
  say "Adding $(inherited) and $(#{entry_to_add}) to your '#{@target_build_configuration}' configuration's #{build_setting} build setting ..."
@@ -109,6 +111,7 @@ class Frankifier
109
111
  say "... #{build_setting} is now: #{setting_array.inspect}"
110
112
 
111
113
  build_settings_to_edit[build_setting] = setting_array
114
+ true
112
115
  end
113
116
 
114
117
  def check_target_build_configuration_is_valid!
@@ -1,5 +1,5 @@
1
1
  module Frank
2
2
  module Cucumber
3
- VERSION = "1.2.1.c13cb90"
3
+ VERSION = "1.2.1.d2d00d2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sc-frank-cucumber
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1.c13cb90
4
+ version: 1.2.1.d2d00d2
5
5
  prerelease: 6
6
6
  platform: ruby
7
7
  authors:
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2013-11-06 00:00:00.000000000 Z
13
+ date: 2013-11-13 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: cucumber
@@ -279,8 +279,6 @@ files:
279
279
  - test/launcher_test.rb
280
280
  - test/rect_test.rb
281
281
  - test/test_helper.rb
282
- - frank-skeleton/frank_static_resources.bundle/ViewAttributeMapping.plist
283
- - frank-skeleton/frank_static_resources.bundle/ViewAttributeMappingMac.plist
284
282
  - frank-skeleton/frank_static_resources.bundle/images/ajax-loader.gif
285
283
  - frank-skeleton/frank_static_resources.bundle/images/file.gif
286
284
  - frank-skeleton/frank_static_resources.bundle/images/folder-closed.gif
@@ -364,6 +362,8 @@ files:
364
362
  - frank-skeleton/frank_static_resources.bundle/stylesheets/sass/_unicode.scss
365
363
  - frank-skeleton/frank_static_resources.bundle/stylesheets/sass/_z_index.scss
366
364
  - frank-skeleton/frank_static_resources.bundle/stylesheets/sass/symbiote.scss
365
+ - frank-skeleton/frank_static_resources.bundle/ViewAttributeMapping.plist
366
+ - frank-skeleton/frank_static_resources.bundle/ViewAttributeMappingMac.plist
367
367
  homepage: http://rubygems.org/gems/frank-cucumber
368
368
  licenses: []
369
369
  post_install_message: