motion-bundler 0.1.0 → 0.1.1

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.1 (May 15, 2013)
4
+
5
+ * Fixed device/core_ext.rb when running `rake device`
6
+
3
7
  == Version 0.1.0 (May 12, 2013)
4
8
 
5
9
  * Initial release
data/README.md CHANGED
@@ -46,6 +46,10 @@ Add `MotionBundler.setup` at the end of your `Rakefile`:
46
46
 
47
47
  Run `bundle` and then `rake` to run the application in your iOS-simulator. Voila! You're done ^^
48
48
 
49
+ ## More documentation
50
+
51
+ Please consult the [GitHub repository Wiki pages](https://github.com/archan937/motion-bundler/wiki/Overview) for further information about MotionBundler.
52
+
49
53
  ## Huh? Haven't you written LockOMotion already?
50
54
 
51
55
  Yes, I did. But MotionBundler ...
@@ -55,10 +59,6 @@ Yes, I did. But MotionBundler ...
55
59
  * has more code abstraction (and thus has much cleaner and readable code)
56
60
  * has a [test coverage percentage of 100%](https://travis-ci.org/archan937/motion-bundler)
57
61
 
58
- ## More documentation
59
-
60
- Please consult the [GitHub repository Wiki pages](https://github.com/archan937/motion-bundler/wiki/Overview) for further information about MotionBundler.
61
-
62
62
  ## Contact me
63
63
 
64
64
  For support, remarks and requests, please mail me at [paul.engel@holder.nl](mailto:paul.engel@holder.nl).
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -1,3 +1,5 @@
1
+ unless ENV["MB_SILENCE_CORE"] == "false"
2
+
1
3
  module Kernel
2
4
  def require(name)
3
5
  end
@@ -19,4 +21,6 @@ end
19
21
  class Module
20
22
  def autoload(mod, filename)
21
23
  end
24
+ end
25
+
22
26
  end
@@ -1,7 +1,7 @@
1
1
  module MotionBundler #:nodoc:
2
2
  MAJOR = 0
3
3
  MINOR = 1
4
- TINY = 0
4
+ TINY = 1
5
5
 
6
6
  VERSION = [MAJOR, MINOR, TINY].join(".")
7
7
  end
@@ -5,6 +5,10 @@ module Motion
5
5
  class TestCoreExt < MiniTest::Unit::TestCase
6
6
 
7
7
  describe "lib/motion-bundler/device/core_ext.rb" do
8
+ before do
9
+ ENV["MB_SILENCE_CORE"] = "true"
10
+ end
11
+
8
12
  it "should ignore require statements without a warning" do
9
13
  MotionBundler.expects(:simulator?).returns false
10
14
  last_loaded_feature = nil
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.0
4
+ version: 0.1.1
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-12 00:00:00.000000000 Z
12
+ date: 2013-05-15 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: 2971709790799308624
202
+ hash: -4515734510727804082
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: 2971709790799308624
211
+ hash: -4515734510727804082
212
212
  requirements: []
213
213
  rubyforge_project:
214
214
  rubygems_version: 1.8.25