asmodai 0.1.2 → 0.1.3

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/.gitignore CHANGED
@@ -1,3 +1,4 @@
1
+ .bundle
1
2
  pkg/*
2
3
  *.gem
3
4
  play.rb
data/README.md CHANGED
@@ -50,8 +50,8 @@ This will redirect all the output from the process to log/foobar.log
50
50
 
51
51
  In order to check the status of the daemon run
52
52
 
53
- $ asmodai status
54
- => foobar runs with pid 75952
53
+ $ asmodai status
54
+ foobar runs with pid 75952
55
55
 
56
56
 
57
57
  Stop the daemon
@@ -67,7 +67,7 @@ Edit the Gemfile
67
67
 
68
68
  source 'http://rubygems.org'
69
69
 
70
- gem 'activesupport', ">= 3.0.0"
70
+ gem 'activesupport', ">= 3.0.3"
71
71
  gem 'eventmachine'
72
72
 
73
73
  Edit lib/server.rb
@@ -18,6 +18,7 @@ Gem::Specification.new do |s|
18
18
  s.add_development_dependency "bundler", ">= 1.0.0.rc.5"
19
19
  s.add_dependency 'thor', ">=0.14.6"
20
20
  s.add_dependency 'activesupport', ">=3.0.3"
21
+ s.add_dependency 'i18n', ">=0.5.0"
21
22
 
22
23
  s.files = (`git ls-files`.split("\n")+Dir['lib/asmodai/generator/templates/*']).uniq
23
24
  s.executables = ['asmodai']
@@ -1,3 +1,3 @@
1
1
  module Asmodai
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 2
9
- version: 0.1.2
8
+ - 3
9
+ version: 0.1.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - Sebastian Morawietz
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2011-01-21 00:00:00 +01:00
17
+ date: 2011-01-24 00:00:00 +01:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -64,6 +64,21 @@ dependencies:
64
64
  version: 3.0.3
65
65
  type: :runtime
66
66
  version_requirements: *id003
67
+ - !ruby/object:Gem::Dependency
68
+ name: i18n
69
+ prerelease: false
70
+ requirement: &id004 !ruby/object:Gem::Requirement
71
+ none: false
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ segments:
76
+ - 0
77
+ - 5
78
+ - 0
79
+ version: 0.5.0
80
+ type: :runtime
81
+ version_requirements: *id004
67
82
  description: A simple daemon generator
68
83
  email: []
69
84
 
@@ -74,7 +89,6 @@ extensions: []
74
89
  extra_rdoc_files: []
75
90
 
76
91
  files:
77
- - .bundle/config
78
92
  - .gitignore
79
93
  - Gemfile
80
94
  - README.md
@@ -1,2 +0,0 @@
1
- ---
2
- BUNDLE_DISABLE_SHARED_GEMS: "1"