tattle 1.0.0 → 1.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.
data/CHANGELOG CHANGED
@@ -0,0 +1,7 @@
1
+ 2006-12-08 Chad Fowler <chad@chadfowler.com>
2
+
3
+ * lib/tattle.rb: Fixed problem with home directory on Windows.
4
+
5
+ 2006-12-08 Chad Fowler <chad@chadfowler.com>
6
+
7
+ Initial release of 1.0.0
@@ -5,7 +5,7 @@ require 'rbconfig'
5
5
  require 'fileutils'
6
6
  module Tattle
7
7
  class Collector
8
- KEY_FILE = File.expand_path('~/.tattle/key')
8
+ KEY_FILE = File.join(Gem.user_home, '.tattle/key')
9
9
  REPORTING_URL = if ENV['LOCAL']
10
10
  URI.parse('http://localhost:3000/reports/create')
11
11
  else
@@ -2,7 +2,7 @@ module Tattle #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 1
4
4
  MINOR = 0
5
- TINY = 0
5
+ TINY = 1
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.0
3
3
  specification_version: 1
4
4
  name: tattle
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.0.0
6
+ version: 1.0.1
7
7
  date: 2006-12-08 00:00:00 -07:00
8
8
  summary: Tattle is a little reporting script used for collecting system information from the Ruby community.
9
9
  require_paths: