boned 0.2.4 → 0.2.5

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 (6) hide show
  1. data/CHANGES.txt +6 -0
  2. data/README.md +1 -1
  3. data/Rakefile +7 -3
  4. data/boned.gemspec +4 -2
  5. data/lib/boned.rb +1 -1
  6. metadata +14 -5
@@ -1,5 +1,11 @@
1
1
  BONED, CHANGES
2
2
 
3
+ #### 0.2.5 (2010-02-20) ###############################
4
+
5
+ * CHANGE: Remove hanna dependency
6
+ * ADDED: bone dependency
7
+
8
+
3
9
  #### 0.2.4 (2010-01-25) ###############################
4
10
 
5
11
  * CHANGE: URI path starts with /bone/v1 instead of just /v1
data/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
  ## Running
7
7
 
8
8
  $ redis-server config/redis-server.conf
9
- $ export BONED_REDIS=redis://localhost:4111/1
9
+ $ export BONED_REDIS=redis://localhost:8045/1
10
10
  $ boned start
11
11
 
12
12
 
data/Rakefile CHANGED
@@ -1,13 +1,17 @@
1
1
 
2
2
  require 'rake/clean'
3
3
  require 'rake/gempackagetask'
4
- require 'hanna/rdoctask'
5
4
  require 'rake/testtask'
6
- require 'shoulda/tasks'
7
5
  require 'rake/runtest'
8
6
  require 'fileutils'
9
7
  include FileUtils
10
-
8
+
9
+ begin
10
+ require 'hanna/rdoctask'
11
+ rescue LoadError
12
+ require 'rake/rdoctask'
13
+ end
14
+
11
15
  task :default => :test
12
16
 
13
17
 
@@ -1,18 +1,20 @@
1
1
  @spec = Gem::Specification.new do |s|
2
2
  s.name = "boned"
3
3
  s.rubyforge_project = 'boned'
4
- s.version = "0.2.4"
4
+ s.version = "0.2.5"
5
5
  s.summary = "The bone daemon"
6
6
  s.description = s.summary
7
7
  s.author = "Delano Mandelbaum"
8
8
  s.email = "delano@solutious.com"
9
- s.homepage = ""
9
+ s.homepage = "http://github.com/solutious/boned"
10
10
 
11
11
  s.extra_rdoc_files = %w[README.md LICENSE.txt CHANGES.txt]
12
12
  s.has_rdoc = true
13
13
  s.rdoc_options = ["--line-numbers", "--title", s.summary, "--main", "README.md"]
14
14
  s.require_paths = %w[lib]
15
15
 
16
+ s.add_dependency 'bone', '= 0.2.6'
17
+
16
18
  s.executables = %w[boned]
17
19
 
18
20
  # = MANIFEST =
@@ -23,7 +23,7 @@ module Boned
23
23
  module VERSION
24
24
  MAJOR = 0
25
25
  MINOR = 2
26
- TINY = 4
26
+ TINY = 5
27
27
  PATCH = '001'
28
28
  def self.inspect; [to_s, PATCH].join('.'); end
29
29
  def self.to_s; [MAJOR, MINOR, TINY].join('.'); end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: boned
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Delano Mandelbaum
@@ -9,10 +9,19 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-01-25 00:00:00 -05:00
12
+ date: 2010-02-20 00:00:00 -05:00
13
13
  default_executable:
14
- dependencies: []
15
-
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: bone
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - "="
22
+ - !ruby/object:Gem::Version
23
+ version: 0.2.6
24
+ version:
16
25
  description: The bone daemon
17
26
  email: delano@solutious.com
18
27
  executables:
@@ -47,7 +56,7 @@ files:
47
56
  - try/10_bone_model.rb
48
57
  - views/redisviewer/keys.erb
49
58
  has_rdoc: true
50
- homepage: ""
59
+ homepage: http://github.com/solutious/boned
51
60
  licenses: []
52
61
 
53
62
  post_install_message: