require_reloader 0.1.1 → 0.1.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.
- data/README.md +5 -3
- data/lib/require_reloader/version.rb +1 -1
- data/require_reloader.gemspec +2 -2
- metadata +4 -4
data/README.md
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
# RequireReloader
|
2
2
|
|
3
|
-
Auto-reload
|
4
|
-
|
3
|
+
Auto-reload `require` files or local gems without restarting server
|
4
|
+
during Rails development.
|
5
5
|
|
6
6
|
Currently, it supports Rails 3+ and above, including 3.1 and 3.2.
|
7
7
|
|
8
8
|
It uses `ActionDispatch::Callbacks.to_prepare` to reload the
|
9
|
-
`require`
|
9
|
+
`require` files before each request. In Rails 3.2, it uses
|
10
10
|
`watchable_dirs` to reload only when you modify a file.
|
11
11
|
|
12
12
|
## Usage
|
@@ -78,5 +78,7 @@ This gem is forked from Colin Young's [gem_reloader](https://github.com/colinyou
|
|
78
78
|
|
79
79
|
## Changelog
|
80
80
|
|
81
|
+
- v0.1.2: Minor rephrase on gem's description and summary.
|
82
|
+
- v0.1.1: Use Bundler to fetch local gems info, instead of parsing Gemfile by hand.
|
81
83
|
- v0.1.0: Forked colinyoung/gem_reloader, renamed & major rewrite to support Rails 3.2 and new features.
|
82
84
|
- v0.0.2: Added "vendor/gems" to the config.autoload_paths so the user doesn't have to.
|
data/require_reloader.gemspec
CHANGED
@@ -4,8 +4,8 @@ require File.expand_path('../lib/require_reloader/version', __FILE__)
|
|
4
4
|
Gem::Specification.new do |gem|
|
5
5
|
gem.authors = ["Colin Young", "Huiming Teo"]
|
6
6
|
gem.email = ["me@colinyoung.com", "teohuiming@gmail.com"]
|
7
|
-
gem.description = %q{Auto-reload
|
8
|
-
gem.summary = %q{Auto-reload
|
7
|
+
gem.description = %q{Auto-reload require files or local gems without restarting server during Rails development.}
|
8
|
+
gem.summary = %q{Auto-reload require files or local gems without restarting Rails server.}
|
9
9
|
gem.homepage = "https://github.com/teohm/require_reloader"
|
10
10
|
|
11
11
|
gem.files = `git ls-files`.split($\)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: require_reloader
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -12,7 +12,8 @@ bindir: bin
|
|
12
12
|
cert_chain: []
|
13
13
|
date: 2013-01-10 00:00:00.000000000 Z
|
14
14
|
dependencies: []
|
15
|
-
description: Auto-reload
|
15
|
+
description: Auto-reload require files or local gems without restarting server during
|
16
|
+
Rails development.
|
16
17
|
email:
|
17
18
|
- me@colinyoung.com
|
18
19
|
- teohuiming@gmail.com
|
@@ -52,6 +53,5 @@ rubyforge_project:
|
|
52
53
|
rubygems_version: 1.8.23
|
53
54
|
signing_key:
|
54
55
|
specification_version: 3
|
55
|
-
summary: Auto-reload
|
56
|
-
server during Rails app development.
|
56
|
+
summary: Auto-reload require files or local gems without restarting Rails server.
|
57
57
|
test_files: []
|