auto_reload 0.0.0 → 0.1.0
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/Rakefile +2 -2
- data/VERSION +1 -1
- data/auto_reload.gemspec +53 -0
- metadata +4 -3
data/Rakefile
CHANGED
|
@@ -6,8 +6,8 @@ begin
|
|
|
6
6
|
Jeweler::Tasks.new do |gem|
|
|
7
7
|
gem.name = "auto_reload"
|
|
8
8
|
gem.summary = %Q{auto reloads changed files in your irb session}
|
|
9
|
-
gem.description = %Q{
|
|
10
|
-
gem.email = "james
|
|
9
|
+
gem.description = %Q{require this gem to enable rails-style reloading of all changed files loaded by your project}
|
|
10
|
+
gem.email = "james@level4.net.au"
|
|
11
11
|
gem.authors = ["James Tippett"]
|
|
12
12
|
gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
|
|
13
13
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.1.0
|
data/auto_reload.gemspec
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{auto_reload}
|
|
8
|
+
s.version = "0.1.0"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["James Tippett"]
|
|
12
|
+
s.date = %q{2010-02-12}
|
|
13
|
+
s.description = %q{require this gem to enable rails-style reloading of all changed files loaded by your project}
|
|
14
|
+
s.email = %q{james@level4.net.au}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"README.rdoc"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
".document",
|
|
21
|
+
".gitignore",
|
|
22
|
+
"LICENSE",
|
|
23
|
+
"README.rdoc",
|
|
24
|
+
"Rakefile",
|
|
25
|
+
"VERSION",
|
|
26
|
+
"auto_reload.gemspec",
|
|
27
|
+
"lib/auto_reload.rb",
|
|
28
|
+
"test/helper.rb",
|
|
29
|
+
"test/test_auto_reload.rb"
|
|
30
|
+
]
|
|
31
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
32
|
+
s.require_paths = ["lib"]
|
|
33
|
+
s.rubygems_version = %q{1.3.5}
|
|
34
|
+
s.summary = %q{auto reloads changed files in your irb session}
|
|
35
|
+
s.test_files = [
|
|
36
|
+
"test/helper.rb",
|
|
37
|
+
"test/test_auto_reload.rb"
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
if s.respond_to? :specification_version then
|
|
41
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
42
|
+
s.specification_version = 3
|
|
43
|
+
|
|
44
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
45
|
+
s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
46
|
+
else
|
|
47
|
+
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
48
|
+
end
|
|
49
|
+
else
|
|
50
|
+
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: auto_reload
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- James Tippett
|
|
@@ -22,8 +22,8 @@ dependencies:
|
|
|
22
22
|
- !ruby/object:Gem::Version
|
|
23
23
|
version: "0"
|
|
24
24
|
version:
|
|
25
|
-
description:
|
|
26
|
-
email: james
|
|
25
|
+
description: require this gem to enable rails-style reloading of all changed files loaded by your project
|
|
26
|
+
email: james@level4.net.au
|
|
27
27
|
executables: []
|
|
28
28
|
|
|
29
29
|
extensions: []
|
|
@@ -38,6 +38,7 @@ files:
|
|
|
38
38
|
- README.rdoc
|
|
39
39
|
- Rakefile
|
|
40
40
|
- VERSION
|
|
41
|
+
- auto_reload.gemspec
|
|
41
42
|
- lib/auto_reload.rb
|
|
42
43
|
- test/helper.rb
|
|
43
44
|
- test/test_auto_reload.rb
|