oop_rails_server 0.0.9 → 0.0.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES.md +6 -1
- data/lib/oop_rails_server/rails_server.rb +2 -2
- data/lib/oop_rails_server/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b7e5a3354ddd7b83ff33d1f57049f1d971f5452b
|
4
|
+
data.tar.gz: 3d1ac8c3ba0b0684670e31cc7bb63e3fc8ea6465
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 986c23a836163d80052864108a6f0688e239a75ec7d2706e24329521588c468f04e93d6796cf489138ce6e85eaecb8e3afa2e2b58143ac74810ab940fa0cfc05
|
7
|
+
data.tar.gz: 804bda7b280b4e0599c9726e63d318c7594ad465ecc5442abe283572ec9cc06283f8da3dff1288bb8c3bfec3b280be4850960946bc3328952198a3565c6cc498
|
data/CHANGES.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
# `oop_rails_server` Releases
|
2
2
|
|
3
|
-
## 0.0.
|
3
|
+
## 0.0.10, 4 October 2015
|
4
|
+
|
5
|
+
* Further tweaks to the regexp we use to detect "need remote access" error -- it seems as if JRuby sometimes
|
6
|
+
emits this with a newline in the middle.
|
7
|
+
|
8
|
+
## 0.0.9, 4 October 2015
|
4
9
|
|
5
10
|
* Fix issue with Ruby 1.8.x caused by trying to reference RUBY_ENGINE, which isn't defined in 1.8.x.
|
6
11
|
* Tweak regexp we use to detect "need remote access" error on "bundle install --local", since it apparently
|
@@ -475,8 +475,8 @@ and output:
|
|
475
475
|
end
|
476
476
|
|
477
477
|
def is_remote_flag_required_error?(command_failed_error)
|
478
|
-
command_failed_error.output =~ /could\s+not\s+find.*in\s+the\s+gems\s+available\s+on\s+this\s+machine/
|
479
|
-
command_failed_error.output =~ /could\s+not\s+find.*in\s+any\s+of\s+the.*\s+sources/
|
478
|
+
command_failed_error.output =~ /could\s+not\s+find.*in\s+the\s+gems\s+available\s+on\s+this\s+machine/mi ||
|
479
|
+
command_failed_error.output =~ /could\s+not\s+find.*in\s+any\s+of\s+the.*\s+sources/mi
|
480
480
|
end
|
481
481
|
|
482
482
|
def do_bundle_install!(name, allow_remote)
|