andhapp-decoct 1.2.0 → 1.3.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.
Files changed (5) hide show
  1. data/README.markdown +29 -25
  2. data/VERSION.yml +1 -1
  3. data/bin/decoct +2 -2
  4. data/decoct.gemspec +1 -1
  5. metadata +1 -1
data/README.markdown CHANGED
@@ -1,25 +1,29 @@
1
- # Decoct: Quick start Sinatra with Rspec
2
-
3
- Decoct is a simple gem that creates a sinatra app directory structure and hooks it up with Rspec.
4
-
5
- ## Installing
6
-
7
- # Install the gem:
8
- gem install andhapp-decoct -s http://gems.github.com (on Windows)
9
-
10
- ## Caveat
11
-
12
- The gem has only been tested on Windows and the reason that could be a problem is because it depends upon other gems to work properly. I have a workaround in my mind but it has not been implemented as yet.
13
-
14
-
15
- ## Dependencies
16
-
17
- The gem depends on the following libraries:
18
- * rspec
19
- * ZenTest
20
- * ruby-snarl
21
- * redgreen
22
- * rcov
23
-
24
- Also, in order to use ruby-snarl you should have [Snarl][http://www.fullphat.net/index.php] installed on your machine. Snarl is a messaging system for windows. This would give you nice visual messages on the status of your tests. [Here's][http://thewebfellas.com/blog/2007/12/10/rspec-autotest-and-snarl-on-windows] a nice article if you would like to incorporate that into rails projects. Hence, the caveat above.
25
-
1
+ # Decoct: Quick start Sinatra with Rspec
2
+
3
+ Decoct is a simple gem that creates a sinatra app directory structure and hooks it up with Rspec.
4
+
5
+ ## Installing
6
+
7
+ # Install the gem:
8
+ gem install andhapp-decoct -s http://gems.github.com (on Windows)
9
+
10
+ ## Caveat
11
+
12
+ The gem has only been tested on Windows and the reason that could be a problem is because it depends upon other
13
+ gems to work properly. I have a workaround in my mind but it has not been implemented as yet.
14
+
15
+ ## Dependencies
16
+
17
+ The gem depends on the following libraries:
18
+ * rspec
19
+ * ZenTest
20
+ * ruby-snarl
21
+ * redgreen
22
+ * rcov
23
+
24
+ Also, in order to use ruby-snarl you should have [Snarl](http://www.fullphat.net/index.php) installed on
25
+ your machine.
26
+ Snarl is a messaging system for windows. This would give you nice visual messages on the status of your tests.
27
+ [Here's](http://thewebfellas.com/blog/2007/12/10/rspec-autotest-and-snarl-on-windows) a nice article if you
28
+ would like to incorporate that into rails projects. Hence, the caveat above.
29
+
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :patch: 0
3
3
  :major: 1
4
- :minor: 2
4
+ :minor: 3
data/bin/decoct CHANGED
@@ -3,5 +3,5 @@ app_path = ARGV.first
3
3
  $LOAD_PATH.unshift File.dirname(__FILE__) + '/../lib'
4
4
  require 'dscript'
5
5
 
6
- dedoct = Dedoct::Dscript.new(app_path)
7
- dedoct.run
6
+ decoct = Decoct::Dscript.new(app_path)
7
+ decoct.run
data/decoct.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{decoct}
5
- s.version = "1.2.0"
5
+ s.version = "1.3.0"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Anuj Dutta"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: andhapp-decoct
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anuj Dutta