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 +4 -0
- data/README.md +4 -4
- data/VERSION +1 -1
- data/lib/motion-bundler/device/core_ext.rb +4 -0
- data/lib/motion-bundler/version.rb +1 -1
- data/test/motion/device/test_core_ext.rb +4 -0
- metadata +4 -4
data/CHANGELOG.rdoc
CHANGED
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.
|
1
|
+
0.1.1
|
@@ -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.
|
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
|
+
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:
|
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:
|
211
|
+
hash: -4515734510727804082
|
212
212
|
requirements: []
|
213
213
|
rubyforge_project:
|
214
214
|
rubygems_version: 1.8.25
|