rsense 0.5.11 → 0.5.12

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
  SHA1:
3
- metadata.gz: ec442a29560df18a630c76fc285cbe3a55d4a3d3
4
- data.tar.gz: c563b490f170176d5b29a69d2eecd819a217fa1d
3
+ metadata.gz: 70ed2fc848c9a9c8688d658d3d9f949c3e57b3f0
4
+ data.tar.gz: 0cb5d2e32472bb7e048aba765814d5164e06cfb5
5
5
  SHA512:
6
- metadata.gz: 503bbe40ef6d373e99abd2713147a5f0f50e9ee58325f15a55663403c6b058a458287e20f91fa5cae355cf08186d36f426b702295d3f1ce174362778a85bb78d
7
- data.tar.gz: f4399af94027ee674196bcfd8fa9d8aa7f6434e608fe2d8b9f17528b69a610d10e17bdcd804e8fe760a9e9c145802ca9eed9581cd2a1a9ad09e6bb784f268130
6
+ metadata.gz: bc6260fe8bbae7de679293da9a9f55cea6ea8e8d3f5d4d35e79a7b0b527257265b9a13d073469af020888dbf1934cee48ae20c00c89139e915554567426a6e7b
7
+ data.tar.gz: 3e678a3d8a20fb28854a45c0b6f9cd4ab62bc3a2f5d35ccda92565b05b88f3bdcda2fac47a7b9b1eaa258926e6ce54482a07309cd7ab2d234962d89c2788320b
data/README.md CHANGED
@@ -12,7 +12,7 @@ RSense is currently under heavy development and ready for testing. Currently we
12
12
 
13
13
 
14
14
  ## Installation
15
- RSense is installed via RubyGems. It works well installed via Bundler as that gives it access to your application's LOAD_PATH very easily, and ensures it's installed into the same Ruby as your other dependencies if you happen to be using a version management tool like `rbenv`. Otherwise, be sure to install it with the proper version of Ruby.
15
+ RSense is installed via RubyGems. It works well installed via Bundler as that gives it access to your application's LOAD_PATH very easily, and ensures it's installed into the same Ruby as your other dependencies if you happen to be using a version management tool like `rbenv`. Otherwise, be sure to install it with the proper version of Ruby (whichever ruby you are using for your project).
16
16
 
17
17
  Add this line to your application's Gemfile:
18
18
 
@@ -35,6 +35,18 @@ Install one of these plugins:
35
35
 
36
36
  Start RSense via the commandline with `rsense start`. Rsense can take two options, in case of a port conflict, you can set the port with `rsense start --port 12345`. It can also take a project path, like `rsense start --path /path/to/my/project`. When passed a project path, rsense attempts to preload the project's dependencies based on the `Gemfile.lock`.
37
37
 
38
+ ## Troubleshooting
39
+
40
+ You can view rsense's logs at /tmp/rsense.log. Sometimes I like to tail them, like so:
41
+
42
+ ```bash
43
+ $ less +F /tmp/rsense.log
44
+ ```
45
+
46
+ If you have trouble getting started with RSense, try [rsense/sample](https://github.com/rsense/sample) . It's a known working example, with startup instructions, that should let you test RSense and figure out if it is something you were doing, or more likely, an rsense bug.
47
+
48
+ Otherwise, come by our gitter chat: [![Gitter chat](https://badges.gitter.im/rsense/rsense.png)](https://gitter.im/rsense/rsense) or create an issue.
49
+
38
50
  ## Plugin Authors
39
51
 
40
52
  Rsense plugins are easy to implement. First your plugin will need to ensure the Rsense server has been started. It can do this by shelling out to the command line with `rsense start`. The server can optionally take a port number like this: `rsense start --port 12345`. The default port is `47367`. It also takes a project path, in case the user has a `.rsense` config file there. For now, this config file is not very useful, but it may become so in the future.
@@ -1,3 +1,3 @@
1
1
  module Rsense
2
- VERSION = "0.5.11"
2
+ VERSION = "0.5.12"
3
3
  end
data/rsense.gemspec CHANGED
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
19
19
  spec.require_paths = ["lib"]
20
20
 
21
21
  spec.add_dependency "rsense-core", "~> 0.6.6"
22
- spec.add_dependency "rsense-server", "~> 0.5.12"
22
+ spec.add_dependency "rsense-server", "~> 0.5.13"
23
23
  spec.add_dependency "spoon", "~> 0.0.4"
24
24
  spec.add_dependency "jruby-jars", "~> 1.7.4"
25
25
  spec.add_dependency "jruby-parser", "~> 0.5.4"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rsense
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.11
4
+ version: 0.5.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric West
@@ -31,14 +31,14 @@ dependencies:
31
31
  requirements:
32
32
  - - "~>"
33
33
  - !ruby/object:Gem::Version
34
- version: 0.5.12
34
+ version: 0.5.13
35
35
  type: :runtime
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
39
  - - "~>"
40
40
  - !ruby/object:Gem::Version
41
- version: 0.5.12
41
+ version: 0.5.13
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: spoon
44
44
  requirement: !ruby/object:Gem::Requirement