forj 1.0.2 → 1.0.3

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.
Files changed (6) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -1
  3. data/bin/forj +3 -3
  4. data/forj.gemspec +2 -2
  5. metadata +2 -3
  6. data/Gemfile.lock +0 -71
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5d95b1a07c10d838de079ed6f1b10dacef00a934
4
- data.tar.gz: d0f344da5294bd7af52704da66644be8a1db86e5
3
+ metadata.gz: e4a1fe0343f80a945b67a3f98b10b7f2b2f9c135
4
+ data.tar.gz: dcaee3a1b90afe832babe588437cdfdeab38a4cc
5
5
  SHA512:
6
- metadata.gz: 9effbaa7903c205306c60aace31d50916044526e835dacbb753a459d675cc584f27b30c762394da05502f18cc0fc7c93330a79f48140eaac8714fd53bc47ebc7
7
- data.tar.gz: 40ad850f4458fbf69d38ad26425367ed52417a354a5ef326e4caa5af33f78f40332794139a9f38655fe9ef8694f19a955327ee86fec66ed49265fb6ae102b602
6
+ metadata.gz: 5de9a2ff618c7eb3f1c353a9245b950fa4f2606490d7577eec61ff17841819c5f2b3d1a5a93582356c95d4b62f8f163759b3035f8b1e47664466bcd691086ce9
7
+ data.tar.gz: 17f9f2bfe2e7dd40ae4b7f297a75e0c0b99ccdc1bfadf5cee980ec094e2b7476813bc01715816786ec21128b72a9c49d28db207b4c7a27ca954e763ee5e15776
data/.gitignore CHANGED
@@ -1,4 +1,4 @@
1
- #Gemfile.lock
1
+ Gemfile.lock
2
2
 
3
3
  ## Directory-based project format
4
4
  .idea/
data/bin/forj CHANGED
@@ -23,8 +23,8 @@ require 'bundler/setup'
23
23
  require 'thor'
24
24
  require 'ansi'
25
25
 
26
- $APP_PATH = File.dirname(__FILE__)
27
- $LIB_PATH = File.expand_path(File.join(File.dirname($APP_PATH),'lib'))
26
+ $APP_PATH = File.dirname(File.dirname(__FILE__))
27
+ $LIB_PATH = File.expand_path(File.join($APP_PATH, 'lib'))
28
28
 
29
29
  require 'appinit.rb' # Load generic Application level function
30
30
 
@@ -34,7 +34,7 @@ AppInit::forj_initialize()
34
34
  require 'lorj' # Use lorj library for Cloud agnostics feature.
35
35
 
36
36
  PrcLib.app_name = 'forj'
37
- PrcLib.app_defaults = 'forj'
37
+ PrcLib.app_defaults = File.join($APP_PATH, 'forj')
38
38
 
39
39
  require 'forj-settings.rb' # Settings features
40
40
  require 'ssh.rb'
data/forj.gemspec CHANGED
@@ -19,8 +19,8 @@ Gem::Specification.new do |s|
19
19
  s.name = 'forj'
20
20
  s.homepage = 'https://www.forj.io'
21
21
 
22
- s.version = '1.0.2'
23
- s.date = '2014-12-18'
22
+ s.version = '1.0.3'
23
+ s.date = '2014-12-19'
24
24
  s.summary = 'forj command line'
25
25
  s.description = 'forj cli - See https://www.forj.io for documentation/information'
26
26
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: forj
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - forj team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-18 00:00:00.000000000 Z
11
+ date: 2014-12-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -203,7 +203,6 @@ files:
203
203
  - .gitignore
204
204
  - .gitreview
205
205
  - Gemfile
206
- - Gemfile.lock
207
206
  - README.md
208
207
  - Rakefile
209
208
  - bin/forj
data/Gemfile.lock DELETED
@@ -1,71 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- forj (1.0.2)
5
- ansi (>= 1.4.3)
6
- bundler
7
- encryptor (>= 1.3.0)
8
- fog (= 1.19.0)
9
- git (>= 1.2.7)
10
- highline (>= 1.6.21)
11
- json (= 1.7.5)
12
- lorj (~> 0.2.0)
13
- nokogiri (= 1.5.11)
14
- thor (>= 0.16.0)
15
-
16
- GEM
17
- remote: https://rubygems.org/
18
- specs:
19
- ansi (1.4.3)
20
- builder (3.2.2)
21
- diff-lcs (1.2.5)
22
- encryptor (1.3.0)
23
- excon (0.31.0)
24
- fog (1.19.0)
25
- builder
26
- excon (~> 0.31.0)
27
- formatador (~> 0.2.0)
28
- mime-types
29
- multi_json (~> 1.0)
30
- net-scp (~> 1.1)
31
- net-ssh (>= 2.1.3)
32
- nokogiri (~> 1.5)
33
- ruby-hmac
34
- formatador (0.2.5)
35
- git (1.2.8)
36
- highline (1.6.21)
37
- json (1.7.5)
38
- lorj (0.2.0)
39
- ansi (>= 1.4.3)
40
- encryptor (= 1.3.0)
41
- highline (~> 1.6.21)
42
- mime-types (2.4.3)
43
- multi_json (1.10.1)
44
- net-scp (1.2.1)
45
- net-ssh (>= 2.6.5)
46
- net-ssh (2.9.1)
47
- nokogiri (1.5.11)
48
- rake (10.4.2)
49
- rspec (3.1.0)
50
- rspec-core (~> 3.1.0)
51
- rspec-expectations (~> 3.1.0)
52
- rspec-mocks (~> 3.1.0)
53
- rspec-core (3.1.7)
54
- rspec-support (~> 3.1.0)
55
- rspec-expectations (3.1.2)
56
- diff-lcs (>= 1.2.0, < 2.0)
57
- rspec-support (~> 3.1.0)
58
- rspec-mocks (3.1.3)
59
- rspec-support (~> 3.1.0)
60
- rspec-support (3.1.2)
61
- ruby-hmac (0.4.0)
62
- thor (0.19.1)
63
-
64
- PLATFORMS
65
- ruby
66
-
67
- DEPENDENCIES
68
- bundler
69
- forj!
70
- rake (~> 10.0)
71
- rspec (~> 3.1.0)