motion-gradle 1.0.0 → 1.0.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ed5e4e00917e92a5f230a2a05d30c42a3452f976
4
- data.tar.gz: fba75781e58386f1a71971434b1df69254591882
3
+ metadata.gz: 387fb742995cd721c3acdd1f0e456778befb2e5c
4
+ data.tar.gz: fd873dd8e7a0109a46e498411418d7c5c6b991ae
5
5
  SHA512:
6
- metadata.gz: c5327a2442668aa9297f034dbeca76c6976f26c0c77580559f149163d2940be74ad166afe0b0c6fd2141c2b5c5affb20f3a5949e64ecc78afed681726981b109
7
- data.tar.gz: 7f6cff7ed624d511523af66f8e725b0481c315aeb9c6ea55ec533b83493c92107a6f859f27262f0dd080d76fd9f10134964b0a7dad36b27bdcca0b8992c5c206
6
+ metadata.gz: ef41af79cf252a80c0a988c80a3ab6c9d13f1b269e4afe882672fc036c6bfb53f8efb288cbd1ea0e9d45cca839218b734aa3d2089211e412e359d770d3225b72
7
+ data.tar.gz: 7e7c93ed7703d92d056b27a52cd0212153e38381e1799bdcdb8828e6728a5b8f219729c748f14c93c4f515931020fd82a9f12553a5f76791508eb1df28c2b59d
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # motion-gradle
2
2
 
3
3
  motion-gradle allows RubyMotion projects to integrate with the
4
- [Gradle](http://gradle.apache.org/) dependency manager.
4
+ [Gradle](https://gradle.org/) dependency manager.
5
5
 
6
6
 
7
7
  ## Installation
@@ -24,7 +24,7 @@ Or if you use Bundler:
24
24
  gem 'motion-gradle'
25
25
  ```
26
26
 
27
- You also need to install `Extras/Android Support Repository` the Android SDK Manager gui.
27
+ You also need to install `Extras/Android Support Repository` with the Android SDK Manager gui.
28
28
 
29
29
  ![android-sdk-manager](https://raw.githubusercontent.com/jjaffeux/motion-gradle/master/images/android-sdk-manager.png)
30
30
 
@@ -59,7 +59,7 @@ You also need to install `Extras/Android Support Repository` the Android SDK Man
59
59
 
60
60
  ## Configuration
61
61
 
62
- If the `gradle` command is not in your path, you can configure it:
62
+ If the `gradle` command is not located at `/usr/local/bin/gradle`, you can configure it:
63
63
 
64
64
  ```ruby
65
65
  Motion::Project::App.setup do |app|
@@ -8,7 +8,7 @@ task generateDependencies(type: Jar) {
8
8
  }
9
9
 
10
10
  repositories {
11
- def androidHome = System.getenv("ANDROID_HOME")
11
+ def androidHome = System.getenv("RUBYMOTION_ANDROID_SDK")
12
12
  maven {
13
13
  url "$androidHome/extras/android/m2repository/"
14
14
  }
@@ -1,5 +1,5 @@
1
1
  module Motion::Project
2
2
  class Gradle
3
- VERSION = '1.0.0'
3
+ VERSION = '1.0.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: motion-gradle
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joffrey Jaffeux
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-06 00:00:00.000000000 Z
11
+ date: 2015-04-08 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: motion-gradle allows RubyMotion Android projects to have access to the
14
14
  Gradle dependency manager.