remote_ruby 0.1 → 0.1.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
  SHA256:
3
- metadata.gz: dfe882ffd1a38cbff3ecfb83645d2596ac0dfec4668bc96a834217dbaacf1ea0
4
- data.tar.gz: 1cc79ea7002fdf02434e26ab86227f69de8a3d9ca6daa8263940115f456190bb
3
+ metadata.gz: c64bd664f6bf23abe5893cbd77bc0e72f68a51b302419837bd78885003f035ee
4
+ data.tar.gz: 05da01871c6e3516f183dbf041e7b824b41b12f1713d50c0e906a8eea5a6045b
5
5
  SHA512:
6
- metadata.gz: 914c030cec1dde0ac7d3c4444ca5af976feb8928018f3533bf990451b8d6079c58c365f7ac2a46a9b35cc49059f15c87ce956c050f41d31ebba69ce960be3f2e
7
- data.tar.gz: e8a95a8592d317c8ee9ed3248203c9be5e5b032bf4ca49fd60162d2a756080bfe43d0a9b68b8038540029eee4329d5691bc12fd611b67424ae2900f6050efa3a
6
+ metadata.gz: 9ce4cd0467c63f6c638907a0628cf4e8c7ceb5935f1fbb66c5b4e6f6a24502aa9ca007e54b9b0f26dbd8522098991ca593ebeea43276f88de981fe260c716ea5
7
+ data.tar.gz: a135c2eb6a47292056f0f4d566d5676851e0563351970d8799f1cb6c5593694a966902a33baa0a410b8c5e1c53a0327f3cd4f3c9a1187ade6aa641afcbfcdc91
data/README.md CHANGED
@@ -3,6 +3,7 @@
3
3
  [![Build Status](https://travis-ci.org/Nu-hin/remote_ruby.svg?branch=master)](https://travis-ci.org/Nu-hin/remote_ruby)
4
4
  [![Coverage Status](https://coveralls.io/repos/github/Nu-hin/remote_ruby/badge.svg?branch=master)](https://coveralls.io/github/Nu-hin/remote_ruby?branch=master)
5
5
  [![Maintainability](https://api.codeclimate.com/v1/badges/e57430aa6f626aeca41d/maintainability)](https://codeclimate.com/github/Nu-hin/remote_ruby/maintainability)
6
+ [![Gem Version](https://badge.fury.io/rb/remote_ruby.svg)](https://badge.fury.io/rb/remote_ruby)
6
7
 
7
8
  RemoteRuby allows you to execute Ruby code on remote servers via SSH right from the Ruby script running on your local machine, as if it was executed locally.
8
9
 
@@ -95,12 +96,18 @@ puts a # => 100
95
96
  Add this line to your application's Gemfile:
96
97
 
97
98
  ```ruby
98
- gem 'remote_ruby', git: 'https://github.com/nu-hin/remote_ruby'
99
+ gem 'remote_ruby'
99
100
  ```
100
101
 
101
102
  And then execute:
103
+ ```bash
104
+ bundle
105
+ ```
102
106
 
103
- $ bundle
107
+ Alternatively, install RemoteRuby in your gemset with the following command:
108
+ ```bash
109
+ gem install remote_ruby
110
+ ```
104
111
 
105
112
  ## Usage
106
113
 
@@ -1,3 +1,3 @@
1
1
  module RemoteRuby
2
- VERSION = '0.1'.freeze
2
+ VERSION = '0.1.1'.freeze
3
3
  end
data/remote_ruby.gemspec CHANGED
@@ -18,8 +18,6 @@ Gem::Specification.new do |spec|
18
18
  f.match(%r{^(test|spec|features)/})
19
19
  end
20
20
 
21
- spec.bindir = 'bin'
22
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
23
21
  spec.require_paths = ['lib']
24
22
 
25
23
  spec.add_runtime_dependency 'colorize', '~> 0.8'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: remote_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.1'
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nikita Chernukhin
@@ -69,9 +69,7 @@ dependencies:
69
69
  description: Execute Ruby code on the remote servers from local Ruby script.
70
70
  email:
71
71
  - nuinuhin@gmail.com
72
- executables:
73
- - console
74
- - setup
72
+ executables: []
75
73
  extensions: []
76
74
  extra_rdoc_files: []
77
75
  files:
@@ -82,8 +80,6 @@ files:
82
80
  - Gemfile
83
81
  - LICENSE.txt
84
82
  - README.md
85
- - bin/console
86
- - bin/setup
87
83
  - lib/remote_ruby.rb
88
84
  - lib/remote_ruby/code_templates/compiler/main.rb.erb
89
85
  - lib/remote_ruby/compiler.rb
data/bin/console DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require 'bundler/setup'
4
- require 'remote_ruby'
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require 'irb'
14
- IRB.start(__FILE__)
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here