httplz 1.0.1 → 1.0.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.
Files changed (5) hide show
  1. data/.gitignore +1 -46
  2. data/bin/httplz +3 -1
  3. data/httplz.gemspec +1 -1
  4. metadata +2 -3
  5. data/.rvmrc +0 -1
data/.gitignore CHANGED
@@ -1,48 +1,3 @@
1
- # rcov generated
2
- coverage
3
-
4
- # rdoc generated
5
- rdoc
6
-
7
- # yard generated
8
- doc
9
- .yardoc
10
-
11
- # bundler
12
1
  .bundle
13
-
14
- # jeweler generated
15
2
  pkg
16
-
17
- # Have editor/IDE/OS specific files you need to ignore? Consider using a global gitignore:
18
- #
19
- # * Create a file at ~/.gitignore
20
- # * Include files you want ignored
21
- # * Run: git config --global core.excludesfile ~/.gitignore
22
- #
23
- # After doing this, these files will be ignored in all your git projects,
24
- # saving you from having to 'pollute' every project you touch with them
25
- #
26
- # Not sure what to needs to be ignored for particular editors/OSes? Here's some ideas to get you started. (Remember, remove the leading # of the line)
27
- #
28
- # For MacOS:
29
- #
30
- #.DS_Store
31
-
32
- # For TextMate
33
- #*.tmproj
34
- #tmtags
35
-
36
- # For emacs:
37
- #*~
38
- #\#*
39
- #.\#*
40
-
41
- # For vim:
42
- #*.swp
43
-
44
- # For redcar:
45
- #.redcar
46
-
47
- # For rubinius:
48
- #*.rbc
3
+ .DS_Store
data/bin/httplz CHANGED
@@ -19,7 +19,9 @@ end
19
19
  abort "No directory #{doc_root}, exiting..." unless File.directory?(doc_root)
20
20
  puts "Document root is #{doc_root}, using port #{port}"
21
21
 
22
- server = WEBrick::HTTPServer.new(:DocumentRoot => doc_root, :Port => port)
22
+ mime_types = WEBrick::HTTPUtils::DefaultMimeTypes
23
+ mime_types.store 'js', 'application/javascript'
24
+ server = WEBrick::HTTPServer.new(:DocumentRoot => doc_root, :Port => port, :MimeTypes => mime_types)
23
25
  ['INT', 'TERM'].each { |signal| trap(signal) { server.shutdown } }
24
26
 
25
27
  server.start
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "httplz"
5
- s.version = "1.0.1"
5
+ s.version = "1.0.2"
6
6
  s.date = Time.now.strftime('%Y-%m-%d')
7
7
  s.platform = Gem::Platform::RUBY
8
8
  s.authors = ["Sean Moon"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: httplz
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-07-22 00:00:00.000000000 -04:00
12
+ date: 2011-07-29 00:00:00.000000000 -04:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
  description: serve the files in the specified directory over http with a simple command
@@ -21,7 +21,6 @@ extensions: []
21
21
  extra_rdoc_files: []
22
22
  files:
23
23
  - .gitignore
24
- - .rvmrc
25
24
  - LICENSE.txt
26
25
  - README.md
27
26
  - Rakefile
data/.rvmrc DELETED
@@ -1 +0,0 @@
1
- rvm gemset use httplz