backlog 0.0.5 → 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/History.txt CHANGED
@@ -8,7 +8,7 @@
8
8
  * Last backlog centric release. Next release will be user/group centric
9
9
  * Released gem, but still requires external database.
10
10
 
11
- == 0.0.0 14/6/2007
11
+ == 0.0.0 2007-06-14
12
12
 
13
13
  * First release on RubyForge
14
14
  * Now running at backlog.kubosch.no and datek.no (internal)
data/README.txt ADDED
@@ -0,0 +1,5 @@
1
+ == Backlog
2
+
3
+ Welcome to Backlog!
4
+
5
+ Backlog is a tool to help you collect and organize all your tasks, wether you are a singler persion or a small or large group.
File without changes
data/Rakefile CHANGED
@@ -11,10 +11,12 @@ require 'tasks/rails'
11
11
 
12
12
  require 'hoe'
13
13
 
14
- Hoe.new("backlog", '0.0.5') do |p|
14
+ Hoe.new("backlog", '0.1.0') do |p|
15
15
  p.rubyforge_name = "backlog"
16
+ p.description = p.paragraphs_of('README.txt', 0..-1).join("\n\n")
16
17
  p.remote_rdoc_dir = '' # Release to root
18
+ p.changes = p.paragraphs_of('History.txt', 0..-1).join("\n\n")
17
19
  p.spec_extras = {
18
- :files => Dir['**/*'].reject{|file_name| file_name =~ /^log|pkg/}
20
+ :files => Dir['**/*'].reject{|file_name| file_name =~ /^log|pkg|tmp/}
19
21
  }
20
22
  end
data/bin/backlog CHANGED
@@ -11,7 +11,7 @@ require 'fileutils'
11
11
  APPLICATION = 'backlog'
12
12
  GEM = Gem::searcher.find(APPLICATION)
13
13
  if GEM
14
- INSTALL_DIR = "/usr/lib/ruby/gems/1.8/gems/#{APPLICATION}-#{Gem.version}"
14
+ INSTALL_DIR = "/usr/lib/ruby/gems/1.8/gems/#{APPLICATION}-#{GEM.version}"
15
15
  else
16
16
  INSTALL_DIR = "/usr/local/backlog/current"
17
17
  end
data/config/database.yml CHANGED
@@ -1,15 +1,7 @@
1
1
  development:
2
2
  adapter: postgresql
3
3
  database: backlog_development
4
- username: uwe
5
- # password:
6
- host: localhost
7
-
8
- development_mysql:
9
- adapter: mysql
10
- database: backlog_development
11
- username: root
12
- password: mithrandir
4
+ username: #{`whoami`}
13
5
  host: localhost
14
6
 
15
7
  # Warning: The database defined as 'test' will be erased and
@@ -19,26 +11,10 @@ test:
19
11
  adapter: postgresql
20
12
  database: backlog_test
21
13
  username: postgres
22
- # password:
23
14
  host: localhost
24
15
 
25
- kubosch_production:
16
+ production:
26
17
  adapter: postgresql
27
18
  database: backlog_production
28
- username: donv
19
+ username: #{`whoami`}
29
20
  host: localhost
30
-
31
- kubosch_production_mysql:
32
- adapter: mysql
33
- database: backlog_development
34
- username: root
35
- password: mithrandir
36
- host: localhost
37
-
38
- datek_production:
39
- adapter: postgresql
40
- database: backlog_production
41
- username: capistrano
42
- password: capistrano123
43
- host: sandra
44
-
metadata CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: backlog
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.0.5
6
+ version: 0.1.0
7
7
  date: 2007-07-29 00:00:00 +02:00
8
8
  summary: The author was too lazy to write a summary
9
9
  require_paths:
@@ -11,7 +11,7 @@ require_paths:
11
11
  email: ryand-ruby@zenspider.com
12
12
  homepage: http://www.zenspider.com/ZSS/Products/backlog/
13
13
  rubyforge_project: backlog
14
- description: The author was too lazy to write a description
14
+ description: == Backlog Welcome to Backlog! Backlog is a tool to help you collect and organize all your tasks, wether you are a singler persion or a small or large group.
15
15
  autorequire:
16
16
  default_executable:
17
17
  bindir: bin
@@ -176,6 +176,7 @@ files:
176
176
  - lib/user_system.rb
177
177
  - lib/array_helper.rb
178
178
  - lib/localization.rb
179
+ - README_RAILS
179
180
  - bin
180
181
  - bin/backlog_init.d_kubosch_production
181
182
  - bin/copy_production2development.rb
@@ -222,14 +223,9 @@ files:
222
223
  - config/environments/test.rb
223
224
  - config/environments/localization_environment.rb
224
225
  - config/environments/datek_production.rb
225
- - tmp
226
- - tmp/sockets
227
- - tmp/pids
228
- - tmp/sessions
229
- - tmp/sessions/ruby_sess.8037e0ab58cbcf1a
230
- - tmp/sessions/ruby_sess.22dec3e9df47fb4e
231
- - tmp/cache
232
226
  - LICENSE_LOCALIZATION
227
+ - README.txt
228
+ - doc
233
229
  - Manifest.txt
234
230
  - vendor
235
231
  - vendor/plugins
@@ -1152,7 +1148,6 @@ files:
1152
1148
  - vendor/rails/railties/lib/tasks/rails.rb
1153
1149
  - vendor/rails/railties/lib/tasks/statistics.rake
1154
1150
  - vendor/rails/railties/lib/tasks/log.rake
1155
- - vendor/rails/railties/lib/tasks/tmp.rake
1156
1151
  - vendor/rails/railties/lib/fcgi_handler.rb
1157
1152
  - vendor/rails/railties/lib/console_sandbox.rb
1158
1153
  - vendor/rails/railties/lib/commands
@@ -1752,7 +1747,6 @@ files:
1752
1747
  - app/views/periods/edit.rhtml
1753
1748
  - app/views/periods/_title.rhtml
1754
1749
  - app/views/periods/_burn_down_chart.rhtml
1755
- - README
1756
1750
  test_files:
1757
1751
  - test/test_helper.rb
1758
1752
  rdoc_options:
@@ -1776,5 +1770,5 @@ dependencies:
1776
1770
  requirements:
1777
1771
  - - ">="
1778
1772
  - !ruby/object:Gem::Version
1779
- version: 1.2.1
1773
+ version: 1.2.2
1780
1774
  version:
@@ -1,37 +0,0 @@
1
- namespace :tmp do
2
- desc "Clear session, cache, and socket files from tmp/"
3
- task :clear => [ "tmp:sessions:clear", "tmp:cache:clear", "tmp:sockets:clear"]
4
-
5
- desc "Creates tmp directories for sessions, cache, and sockets"
6
- task :create do
7
- FileUtils.mkdir_p(%w( tmp/sessions tmp/cache tmp/sockets tmp/pids ))
8
- end
9
-
10
- namespace :sessions do
11
- desc "Clears all files in tmp/sessions"
12
- task :clear do
13
- FileUtils.rm(Dir['tmp/sessions/[^.]*'])
14
- end
15
- end
16
-
17
- namespace :cache do
18
- desc "Clears all files and directories in tmp/cache"
19
- task :clear do
20
- FileUtils.rm_rf(Dir['tmp/cache/[^.]*'])
21
- end
22
- end
23
-
24
- namespace :sockets do
25
- desc "Clears all files in tmp/sockets"
26
- task :clear do
27
- FileUtils.rm(Dir['tmp/sockets/[^.]*'])
28
- end
29
- end
30
-
31
- namespace :pids do
32
- desc "Clears all files in tmp/pids"
33
- task :clear do
34
- FileUtils.rm(Dir['tmp/pids/[^.]*'])
35
- end
36
- end
37
- end