falkorlib 0.3.0 → 0.3.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: f29a576f48785a231d70a51920d2313915e135aa
4
- data.tar.gz: ec1536f6f49fe5e96ccbd888f4f30aa77db49756
3
+ metadata.gz: 39932a4c7312da0130e12bd7d2e3f0263e1314d7
4
+ data.tar.gz: 0de959dd8614849eb537293e154c143a7a173c2a
5
5
  SHA512:
6
- metadata.gz: 9f4c56f5feedd8a4bd4ff135654ff9e846267946b06f396920045f1bf27d20b09f21325c9ebb2b4acefcb505742bba13f2fc56a0339b4427eb6123e2120c5dcd
7
- data.tar.gz: 096f0cd26cf79b78ffbdda9fbb9ced24a6ad566055a510a833769d602cf5ad7824459b59d5b8447966325dc313d962da10fb7ffe4ab7f5b74e5729451720a488
6
+ metadata.gz: 7e13d023f008ae000f8c3aad8c0c67deeed9e778a7a2c19b2ad1801c860a259acb407583e6161f9cf8ff9bbc5e46bbeb68ce2b20b29228c5ab587442781117bf
7
+ data.tar.gz: 3d23d36238a9ad43d8e08ad611558c331b06496e9910e97cc856682657b5bfdb91da115f9fd84eaa7ed1bc7a4a1288472a7bb8187c188d685e80710996924301
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- falkorlib (0.3.0)
4
+ falkorlib (0.3.1)
5
5
  awesome_print (~> 1.2)
6
6
  configatron (~> 3.2)
7
7
  git_remote_branch (~> 0)
@@ -1,6 +1,6 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  ################################################################################
3
- # Time-stamp: <Lun 2014-08-25 23:25 svarrette>
3
+ # Time-stamp: <Tue 2014-08-26 23:46 svarrette>
4
4
  ################################################################################
5
5
  #
6
6
  # Default FalkorLib rake tasks
@@ -43,8 +43,10 @@ namespace :bootstrap do
43
43
  # end
44
44
  info "=> initialize RVM -- see http://rvm.io"
45
45
  run %{ rvm install `cat .ruby-version` }
46
- rvm_current = `rvm current`
47
- if rvm_current.empty? or rvm_current != "`cat .ruby-version`@`cat .ruby-gemset`"
46
+ rvm_current = `rvm current`.chomp
47
+ rvm_version = `cat .ruby-version`.chomp
48
+ rvm_gemset = `cat .ruby-gemset`.chomp
49
+ if rvm_current.empty? or rvm_current !~ /#{rvm_version}@#{rvm_gemset}/
48
50
  warn "You need to manually force the reloading of the RVM configuration."
49
51
  warn "To do that, simply run \n\t\tcd .. && cd -"
50
52
  error "manual RVM reloading required"
@@ -19,7 +19,7 @@ module FalkorLib #:nodoc:
19
19
  # MAJOR: Defines the major version
20
20
  # MINOR: Defines the minor version
21
21
  # PATCH: Defines the patch version
22
- MAJOR, MINOR, PATCH = 0, 3, 0
22
+ MAJOR, MINOR, PATCH = 0, 3, 1
23
23
 
24
24
  module_function
25
25
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: falkorlib
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sebastien Varrette
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-26 00:00:00.000000000 Z
11
+ date: 2014-08-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake