motion-gradle 1.0.1 → 1.0.2

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: 387fb742995cd721c3acdd1f0e456778befb2e5c
4
- data.tar.gz: fd873dd8e7a0109a46e498411418d7c5c6b991ae
3
+ metadata.gz: 3f80da2ae6b3c417a4f2a37acbbe299076adf8c1
4
+ data.tar.gz: d177c5045ffec0813624fc401da5600e0c2693e1
5
5
  SHA512:
6
- metadata.gz: ef41af79cf252a80c0a988c80a3ab6c9d13f1b269e4afe882672fc036c6bfb53f8efb288cbd1ea0e9d45cca839218b734aa3d2089211e412e359d770d3225b72
7
- data.tar.gz: 7e7c93ed7703d92d056b27a52cd0212153e38381e1799bdcdb8828e6728a5b8f219729c748f14c93c4f515931020fd82a9f12553a5f76791508eb1df28c2b59d
6
+ metadata.gz: c9b135a3eb70f4be1afc786f3fc64524f6ae15e9037bdc57d9aca19976b482a51929e1d8ad3ca1e5e415d2814b09482d4f50f7e08d1aee6c8d89a5aa6d543bcf
7
+ data.tar.gz: 5f253b9a6b6b305eb727a3a48999eed951339a804e5edfcc1ebf2480f3b095d3cd329337523d5aca84275b1f72bf78c00a46dc29981bfb3a24a5a7c5e3b882c3
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # motion-gradle
2
2
 
3
- motion-gradle allows RubyMotion projects to integrate with the
4
- [Gradle](https://gradle.org/) dependency manager.
3
+ motion-gradle allows RubyMotion projects to integrate with
4
+ [Gradle](https://gradle.org/) to manage your dependencies.
5
5
 
6
6
 
7
7
  ## Installation
@@ -59,7 +59,7 @@ You also need to install `Extras/Android Support Repository` with the Android SD
59
59
 
60
60
  ## Configuration
61
61
 
62
- If the `gradle` command is not located at `/usr/local/bin/gradle`, you can configure it:
62
+ If the `gradle` command is not found in your PATH, you can configure it:
63
63
 
64
64
  ```ruby
65
65
  Motion::Project::App.setup do |app|
@@ -23,7 +23,7 @@ module Motion::Project
23
23
  GRADLE_ROOT = 'vendor/Gradle'
24
24
 
25
25
  def initialize(config)
26
- @gradle_path = '/usr/local/bin/gradle'
26
+ @gradle_path = '/usr/bin/env gradle'
27
27
  @config = config
28
28
  @dependencies = []
29
29
  @repositories = []
@@ -1,5 +1,5 @@
1
1
  module Motion::Project
2
2
  class Gradle
3
- VERSION = '1.0.1'
3
+ VERSION = '1.0.2'
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.1
4
+ version: 1.0.2
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-08 00:00:00.000000000 Z
11
+ date: 2015-04-10 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.