oop_rails_server 0.0.9 → 0.0.10

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: baeae98e1c1927a4cb6ba88a7ee9b82f003c7a1c
4
- data.tar.gz: 2cb51f544a8dfada43b1df36337df4751fb87334
3
+ metadata.gz: b7e5a3354ddd7b83ff33d1f57049f1d971f5452b
4
+ data.tar.gz: 3d1ac8c3ba0b0684670e31cc7bb63e3fc8ea6465
5
5
  SHA512:
6
- metadata.gz: 0970040e07086c8d3b94daefc922f2ff70a7e6a203b3a84eda4c5091581dfa475ce1ad99ce6b459a790d31c892bc19c528cb7ea1b2de2a7934ef32e0e9f9d6a5
7
- data.tar.gz: 9c03e04f07c0919541d890be7394244a8127c236574390001f56de002a2d2d556cb07d7208babd7b8aa23735084fc43bc9682500054713a2a7953f386f7774f4
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.9,
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/i ||
479
- command_failed_error.output =~ /could\s+not\s+find.*in\s+any\s+of\s+the.*\s+sources/i
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)
@@ -1,3 +1,3 @@
1
1
  module OopRailsServer
2
- VERSION = "0.0.9"
2
+ VERSION = "0.0.10"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oop_rails_server
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Geweke