spektacular 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/README.md +35 -0
  2. data/VERSION +1 -1
  3. data/spektacular.gemspec +3 -3
  4. metadata +4 -4
  5. data/README.rdoc +0 -17
data/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # spektacular #
2
+
3
+ In order to install this gem:
4
+
5
+ gem install spektacular
6
+
7
+ Make sure to add the gem to the Gemfile file located in your project directory:
8
+
9
+ gem 'spektacular'
10
+
11
+ ## Usage ##
12
+
13
+ This is a preliminary version, and at this moment it overrides the old rspec html formatter. To generate the new report just do:
14
+
15
+ rspec -I . -f h spec/
16
+
17
+ This command will print out the result. If you want to save the output in a file, you can just do:
18
+
19
+ rspec -I . -f h spec/ > index.html
20
+
21
+ This will create a new _index.html_ file in the root of your project directory.
22
+
23
+ ## Note on Patches/Pull Requests ##
24
+
25
+ * Fork the project.
26
+ * Make your feature addition or bug fix.
27
+ * Add tests for it. This is important so I don't break it in a
28
+ future version unintentionally.
29
+ * Commit, do not mess with rakefile, version, or history.
30
+ (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
31
+ * Send me a pull request. Bonus points for topic branches.
32
+
33
+ ## Copyright ##
34
+
35
+ Copyright (c) 2010 damselem. See LICENSE for details.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.0.2
data/spektacular.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{spektacular}
8
- s.version = "0.0.1"
8
+ s.version = "0.0.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["damselem"]
@@ -14,13 +14,13 @@ Gem::Specification.new do |s|
14
14
  s.email = %q{damselem@gmail.com}
15
15
  s.extra_rdoc_files = [
16
16
  "LICENSE",
17
- "README.rdoc"
17
+ "README.md"
18
18
  ]
19
19
  s.files = [
20
20
  ".document",
21
21
  ".gitignore",
22
22
  "LICENSE",
23
- "README.rdoc",
23
+ "README.md",
24
24
  "Rakefile",
25
25
  "VERSION",
26
26
  "lib/spektacular.rb",
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 1
9
- version: 0.0.1
8
+ - 2
9
+ version: 0.0.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - damselem
@@ -26,12 +26,12 @@ extensions: []
26
26
 
27
27
  extra_rdoc_files:
28
28
  - LICENSE
29
- - README.rdoc
29
+ - README.md
30
30
  files:
31
31
  - .document
32
32
  - .gitignore
33
33
  - LICENSE
34
- - README.rdoc
34
+ - README.md
35
35
  - Rakefile
36
36
  - VERSION
37
37
  - lib/spektacular.rb
data/README.rdoc DELETED
@@ -1,17 +0,0 @@
1
- = spektacular
2
-
3
- Description goes here.
4
-
5
- == Note on Patches/Pull Requests
6
-
7
- * Fork the project.
8
- * Make your feature addition or bug fix.
9
- * Add tests for it. This is important so I don't break it in a
10
- future version unintentionally.
11
- * Commit, do not mess with rakefile, version, or history.
12
- (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
13
- * Send me a pull request. Bonus points for topic branches.
14
-
15
- == Copyright
16
-
17
- Copyright (c) 2010 damselem. See LICENSE for details.