spring 1.3.6 → 1.7.2
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 +4 -4
- data/LICENSE.txt +2 -2
- data/README.md +59 -6
- data/bin/spring +2 -1
- data/lib/spring/application/boot.rb +2 -1
- data/lib/spring/application.rb +25 -6
- data/lib/spring/application_manager.rb +6 -4
- data/lib/spring/boot.rb +2 -0
- data/lib/spring/client/binstub.rb +23 -11
- data/lib/spring/client/run.rb +62 -39
- data/lib/spring/client/server.rb +18 -0
- data/lib/spring/client.rb +11 -1
- data/lib/spring/configuration.rb +3 -1
- data/lib/spring/env.rb +15 -8
- data/lib/spring/failsafe_thread.rb +14 -0
- data/lib/spring/process_title_updater.rb +1 -1
- data/lib/spring/server.rb +28 -8
- data/lib/spring/test/acceptance_test.rb +249 -56
- data/lib/spring/test/application.rb +9 -4
- data/lib/spring/test/application_generator.rb +22 -4
- data/lib/spring/version.rb +1 -1
- data/lib/spring/watcher/polling.rb +0 -2
- data/lib/spring/watcher.rb +1 -1
- metadata +22 -6
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spring
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jon Leighton
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-07-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -38,7 +38,22 @@ dependencies:
|
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
|
-
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bump
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
description: Preloads your application so things like console, rake and tests run
|
56
|
+
faster
|
42
57
|
email:
|
43
58
|
- j@jonathanleighton.com
|
44
59
|
executables:
|
@@ -60,6 +75,7 @@ files:
|
|
60
75
|
- lib/spring/client/help.rb
|
61
76
|
- lib/spring/client/rails.rb
|
62
77
|
- lib/spring/client/run.rb
|
78
|
+
- lib/spring/client/server.rb
|
63
79
|
- lib/spring/client/status.rb
|
64
80
|
- lib/spring/client/stop.rb
|
65
81
|
- lib/spring/client/version.rb
|
@@ -70,6 +86,7 @@ files:
|
|
70
86
|
- lib/spring/configuration.rb
|
71
87
|
- lib/spring/env.rb
|
72
88
|
- lib/spring/errors.rb
|
89
|
+
- lib/spring/failsafe_thread.rb
|
73
90
|
- lib/spring/json.rb
|
74
91
|
- lib/spring/process_title_updater.rb
|
75
92
|
- lib/spring/server.rb
|
@@ -84,7 +101,7 @@ files:
|
|
84
101
|
- lib/spring/watcher.rb
|
85
102
|
- lib/spring/watcher/abstract.rb
|
86
103
|
- lib/spring/watcher/polling.rb
|
87
|
-
homepage:
|
104
|
+
homepage: https://github.com/rails/spring
|
88
105
|
licenses:
|
89
106
|
- MIT
|
90
107
|
metadata: {}
|
@@ -104,9 +121,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
104
121
|
version: '0'
|
105
122
|
requirements: []
|
106
123
|
rubyforge_project:
|
107
|
-
rubygems_version: 2.
|
124
|
+
rubygems_version: 2.5.1
|
108
125
|
signing_key:
|
109
126
|
specification_version: 4
|
110
127
|
summary: Rails application preloader
|
111
128
|
test_files: []
|
112
|
-
has_rdoc:
|