spring-commands-rails_server 0.0.0 → 0.0.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 +4 -4
- data/Gemfile +2 -0
- data/Gemfile.lock +2 -0
- data/VERSION +1 -1
- data/lib/spring-commands-server.rb +2 -1
- data/lib/spring/commands/rails_server.rb +2 -3
- data/{.shippable.yml → shippable.yml} +0 -0
- metadata +18 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 26073fdfce1a34e0d5a2877238cd109dcf47fc85
|
4
|
+
data.tar.gz: fbde5eb3dbd1a8520737ad4e4f24b1e5cdf71f62
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 024293522178666ce55c3e6ff9d1d8d8f9b74ccff8d16ce8c0a1ea075c7e3044ad01eee05866feaa55b3551df504a8c9f9e3dd882a257a7ddd43e9e22133e42d
|
7
|
+
data.tar.gz: 1a16f4b33bfc58d47f2cd7216fa674471ae89c230c3d10f33fd24795bfafc24bc65c562ad73849d4251509f40e13195ac88459ecfefbf1fb13b7aacc3dca653f
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -56,6 +56,7 @@ GEM
|
|
56
56
|
ruby-progressbar (~> 1.7)
|
57
57
|
unicode-display_width (~> 1.0, >= 1.0.1)
|
58
58
|
ruby-progressbar (1.7.5)
|
59
|
+
spring (1.6.4)
|
59
60
|
thread_safe (0.3.5)
|
60
61
|
unicode-display_width (1.0.3)
|
61
62
|
|
@@ -66,6 +67,7 @@ DEPENDENCIES
|
|
66
67
|
bundler (~> 1.0)
|
67
68
|
jeweler (~> 2.0.1)
|
68
69
|
rubocop (>= 0.39.0)
|
70
|
+
spring (>= 0.0.0)
|
69
71
|
|
70
72
|
BUNDLED WITH
|
71
73
|
1.11.2
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.1
|
@@ -1 +1,2 @@
|
|
1
|
-
require "spring/commands
|
1
|
+
require "spring/commands"
|
2
|
+
require "spring/commands/rails_server" if Spring.respond_to?(:register_command)
|
@@ -1,5 +1,4 @@
|
|
1
|
-
|
2
|
-
module Spring::Commands; end
|
1
|
+
require "spring/commands"
|
3
2
|
|
4
3
|
class Spring::Commands::RailsServer
|
5
4
|
def env(*)
|
@@ -24,4 +23,4 @@ class Spring::Commands::RailsServer
|
|
24
23
|
end
|
25
24
|
end
|
26
25
|
|
27
|
-
Spring.register_command
|
26
|
+
Spring.register_command("rails_server", Spring::Commands::RailsServer.new) if Spring.respond_to?(:register_command)
|
File without changes
|
metadata
CHANGED
@@ -1,15 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spring-commands-rails_server
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- kaspernj
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-04-
|
11
|
+
date: 2016-04-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: spring
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.0.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 0.0.0
|
13
27
|
- !ruby/object:Gem::Dependency
|
14
28
|
name: bundler
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -63,7 +77,6 @@ files:
|
|
63
77
|
- ".document"
|
64
78
|
- ".rspec"
|
65
79
|
- ".rubocop.yml"
|
66
|
-
- ".shippable.yml"
|
67
80
|
- Gemfile
|
68
81
|
- Gemfile.lock
|
69
82
|
- LICENSE.txt
|
@@ -72,6 +85,7 @@ files:
|
|
72
85
|
- VERSION
|
73
86
|
- lib/spring-commands-server.rb
|
74
87
|
- lib/spring/commands/rails_server.rb
|
88
|
+
- shippable.yml
|
75
89
|
- spring-commands-rails_server.gemspec
|
76
90
|
homepage: http://github.com/kaspernj/spring-commands-rails_server
|
77
91
|
licenses:
|
@@ -93,7 +107,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
93
107
|
version: '0'
|
94
108
|
requirements: []
|
95
109
|
rubyforge_project:
|
96
|
-
rubygems_version: 2.
|
110
|
+
rubygems_version: 2.2.2
|
97
111
|
signing_key:
|
98
112
|
specification_version: 4
|
99
113
|
summary: The Rails server command for Spring
|