motion-bundler 0.1.2 → 0.1.3

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.
data/CHANGELOG.rdoc CHANGED
@@ -1,5 +1,9 @@
1
1
  = MotionBundler CHANGELOG
2
2
 
3
+ == Version 0.1.3 (May 28, 2013)
4
+
5
+ * Altered `simulator?` (and thus `device?`) determination (in simulator when ARGV is empty)
6
+
3
7
  == Version 0.1.2 (May 20, 2013)
4
8
 
5
9
  * Updated mocked HTTParty module:
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.2
1
+ 0.1.3
@@ -1,7 +1,7 @@
1
1
  module MotionBundler #:nodoc:
2
2
  MAJOR = 0
3
3
  MINOR = 1
4
- TINY = 2
4
+ TINY = 3
5
5
 
6
6
  VERSION = [MAJOR, MINOR, TINY].join(".")
7
7
  end
@@ -29,11 +29,11 @@ module MotionBundler
29
29
  end
30
30
 
31
31
  def simulator?
32
- !device?
32
+ argv.empty?
33
33
  end
34
34
 
35
35
  def device?
36
- argv.include? "device"
36
+ !simulator?
37
37
  end
38
38
 
39
39
  def boot_file
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: /Users/paulengel/Sources/motion-bundler
3
3
  specs:
4
- motion-bundler (0.1.1)
4
+ motion-bundler (0.1.2)
5
5
  colorize
6
6
 
7
7
  PATH
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: motion-bundler
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
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: 2013-05-20 00:00:00.000000000 Z
12
+ date: 2013-05-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: minitest
@@ -199,7 +199,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
199
199
  version: '0'
200
200
  segments:
201
201
  - 0
202
- hash: 3167972286108752732
202
+ hash: 2773472459803331263
203
203
  required_rubygems_version: !ruby/object:Gem::Requirement
204
204
  none: false
205
205
  requirements:
@@ -208,7 +208,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
208
208
  version: '0'
209
209
  segments:
210
210
  - 0
211
- hash: 3167972286108752732
211
+ hash: 2773472459803331263
212
212
  requirements: []
213
213
  rubyforge_project:
214
214
  rubygems_version: 1.8.25