forcer 0.4.12 → 0.4.13
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 +4 -4
- data/README.md +19 -1
- data/forcer-0.4.12.gem +0 -0
- data/lib/forcer/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 29b08dffcdd6252cc066385e79ad901b2dc9134e
|
4
|
+
data.tar.gz: 7201e44554b337d6be3a612beb8abae4c4440929
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 168162550e3b7bddfb816b7b3225ed0a6dc0df679b455735fc48617e660cea3c7892fe6d6e270a220391b39596d9f794a7d45ae8ce8539a770e405f1f6301603
|
7
|
+
data.tar.gz: 88e3d46d4542a3314601ae6d207edafa25c3648eeab332abe01c00c5be766041f63ccb22920d4479820b9f0b1b39f32f6b0807aa51b133108fb4c9930150f928
|
data/README.md
CHANGED
@@ -23,6 +23,9 @@ The idea is to make structure of forcer simpler than metaforce and let contribut
|
|
23
23
|
of files. I admit that my code is not perfect and far from professional ruby styles, so I will be glad if you help me.
|
24
24
|
But please lets keep this tool simple with only necessary commands and functionality.
|
25
25
|
|
26
|
+
## System Requirements
|
27
|
+
Mac OS or Linux
|
28
|
+
ruby 2.1.2 or later
|
26
29
|
|
27
30
|
## Installation
|
28
31
|
|
@@ -41,7 +44,8 @@ Or install it yourself as:
|
|
41
44
|
$ gem install forcer
|
42
45
|
|
43
46
|
## Usage
|
44
|
-
Currently the app is tested and being used only on Mac OS
|
47
|
+
Currently the app is tested and being used only on Mac OS and Linux (I used Ubuntu). I have NOT tested on Windows yet, but
|
48
|
+
if you try and report results on Windows, other developers would be thankful.
|
45
49
|
|
46
50
|
Call help to list all available operations for forcer:
|
47
51
|
|
@@ -187,6 +191,20 @@ After forcer successfully starts deploy (or any other available command) the pro
|
|
187
191
|
|
188
192
|
Please note that messages and language can and will change because the app development is an ongoing process.
|
189
193
|
|
194
|
+
## Possible problems
|
195
|
+
|
196
|
+
1. When we tried to run forcer on ruby version 2.1.5, the app threw exception about missing library "em-http-request". If
|
197
|
+
you have ruby version 2.1.5 installed and cannot resolve dependencies, I can only suggest to switch to ruby version
|
198
|
+
to 2.1.2 or 2.2.0 or later.
|
199
|
+
2. openssl library version 1.0.2 has problems with ruby 2.2.0 when deploy larger zip-files. In order to fix please follow steps:
|
200
|
+
|
201
|
+
$: brew update
|
202
|
+
$: brew uninstall openssl
|
203
|
+
$: brew install openssl
|
204
|
+
$: rvm get head
|
205
|
+
$: rvm remove 2.2.0
|
206
|
+
$: rvm install 2.2.0 --with-openssl-dir=`brew --prefix openssl`
|
207
|
+
|
190
208
|
|
191
209
|
## Contributing
|
192
210
|
|
data/forcer-0.4.12.gem
ADDED
Binary file
|
data/lib/forcer/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: forcer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- gaziz tazhenov
|
@@ -133,6 +133,7 @@ files:
|
|
133
133
|
- README.md
|
134
134
|
- Rakefile
|
135
135
|
- bin/forcer
|
136
|
+
- forcer-0.4.12.gem
|
136
137
|
- forcer.gemspec
|
137
138
|
- lib/forcer/version.rb
|
138
139
|
- lib/forcer_main.rb
|