files.com 1.1.1 → 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1d6822036b0626cb6a0d85ae357c2fb7e2945d5829c44eaa958b54ce8315eb1a
4
- data.tar.gz: 3fd058ba3a28a80b128e066cc2cc7ed23904babde3df2f2b17e3e8cce62b311c
3
+ metadata.gz: f3f6cd255121303536a1030f165b65187d5c7fe0c8929c2e485454dfd9219f65
4
+ data.tar.gz: 774928f816cf730ae1c71aa7e1d607d0fe7ef337eda8a2db2f30f5ec61336dd7
5
5
  SHA512:
6
- metadata.gz: e26f0d51e5ae4405b12029953638f2a768c8f77b0183552a284ca57fd531a56e68439cb38b9f180b267e63fd04dbfec085d3007d187994ad836825bfdb6b270a
7
- data.tar.gz: 741203882d4d451bf7a8805e70e3dd018e1daa3bc22e1f878d9c2a537658af45b4c1632da4f7798582380b8305167b162ebe0923669d9c2798a7dbb4c4f48273
6
+ metadata.gz: f33416b638e363f4678b8ed6aa96fc5a1dce793b7fdba4140c79456a7c3f59ac90e2495757cc4124e540f38739bd09774c2ed4716ed6463e5a13b4017b581a99
7
+ data.tar.gz: 689b562c376773366809ee589849855bea853814d5259cc8e759cf358cae85af4c20414e945236fc828d6584d44274e925bc8ab106e450733a8d19bc2e1762e9
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.1
1
+ 1.1.2
data/bin/files CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  # frozen_string_literal: true
4
4
 
5
- require "#{::File.dirname(__FILE__)}/../lib/files.com"
6
- require "#{::File.dirname(__FILE__)}/../lib/files.com/cli"
5
+ require "#{File.dirname(__FILE__)}/../lib/files.com"
6
+ require "#{File.dirname(__FILE__)}/../lib/files.com/cli"
7
7
 
8
8
  Files::Cli.new.run
data/bin/files-console CHANGED
@@ -5,7 +5,7 @@
5
5
  require "irb"
6
6
  require "irb/completion"
7
7
 
8
- require "#{::File.dirname(__FILE__)}/../lib/files.com"
8
+ require "#{File.dirname(__FILE__)}/../lib/files.com"
9
9
 
10
10
  # Config IRB to enable --simple-prompt and auto indent
11
11
  IRB.conf[:PROMPT_MODE] = :SIMPLE
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.1"
4
+ VERSION = "1.1.2"
5
5
  end
data/setup.sh CHANGED
@@ -1,6 +1,9 @@
1
1
  #!/usr/bin/env bash
2
2
 
3
+ # cd to the directory containing this file
4
+ cd "$( dirname "${BASH_SOURCE[0]}" )"
5
+
3
6
  # Auto-fix generated code, an important fix is where we use `inspect` to generate hashes
4
7
  # and these hashes do not have spaces around {} or =>
5
8
  # Note: we always return true so that offenses that cannot be auto-fixed are ignored for local developement, CI will catch them
6
- bundle exec rubocop --format simple -a --ignore-parent-exclusion >/dev/null 2>/dev/null || true
9
+ bundle install >/dev/null 2>/dev/null && bundle exec rubocop --cache false --format simple -a --ignore-parent-exclusion >/dev/null 2>/dev/null || true
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com