kagami 0.1.0 → 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.
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ ZmUzYzYwMTg2MzAwNWFlNjU5OWQ0NDhiMTRjMjg4Y2QyYWU5Y2UzNg==
5
+ data.tar.gz: !binary |-
6
+ YWVkMmNlMzA0ZGQzZGE5ZDA3YjI2ZmRhYmVhNzQ5MDI0MmRkYzRjMA==
7
+ !binary "U0hBNTEy":
8
+ metadata.gz: !binary |-
9
+ OTczMDJjOGUzZTI2YjljNTdmMTI0ZWNjYTAyNzEzNTVlMzQxNzk2NzdlNWJi
10
+ YzNkN2VkZDdmZTRjOThkYzc0ZDc3NDVlMmY3ZTYzOTc5OTYzMjllZjhmYmQx
11
+ YzFiNTU1MDNhNmE5MzVlOGYyMzQ3OGRlYTAxM2I5MWRjOWJmMjg=
12
+ data.tar.gz: !binary |-
13
+ NzllOTVjNTgzODMwMDgxN2VjYTI3M2U2NjM0YmM3YjVkMGE0NWRlOTRlY2Fj
14
+ NzgzNzRmYjk4NGFjODFlMzI4YzM2MjE3ODRkZjVhZGE0MWRiYTM0MzA2OTBl
15
+ MTIzYTM2OGE4MWQ0OTI1Yjk1MzFjMWQzMWU5N2FjNzhjZGRmZTc=
data/README.md CHANGED
@@ -1,4 +1,7 @@
1
- # Kagami [![Build Status](https://travis-ci.org/toooooooby/kagami.png)](https://travis-ci.org/toooooooby/kagami)
1
+ # Kagami
2
+
3
+ [![Gem Version](https://badge.fury.io/rb/kagami.png)](http://badge.fury.io/rb/kagami) [![Build Status](https://travis-ci.org/toooooooby/kagami.png?branch=master)](https://travis-ci.org/toooooooby/kagami) [![Coverage Status](https://coveralls.io/repos/toooooooby/kagami/badge.png?branch=master)](https://coveralls.io/r/toooooooby/kagami) [![Code Climate](https://codeclimate.com/github/toooooooby/kagami.png)](https://codeclimate.com/github/toooooooby/kagami) [![Dependency Status](https://gemnasium.com/toooooooby/kagami.png)](https://gemnasium.com/toooooooby/kagami)
4
+
2
5
 
3
6
  A tool for mirroring text and ascii art.
4
7
 
data/kagami.gemspec CHANGED
@@ -16,4 +16,7 @@ Gem::Specification.new do |gem|
16
16
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
17
17
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
18
  gem.require_paths = ["lib"]
19
+
20
+ gem.add_development_dependency("rake")
21
+ gem.add_development_dependency("coveralls")
19
22
  end
@@ -1,3 +1,3 @@
1
1
  module Kagami
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.3"
3
3
  end
data/test/test_kagami.rb CHANGED
@@ -1,8 +1,15 @@
1
1
  #!/usr/bin/env ruby
2
2
  # -*- coding: utf-8 -*-
3
+ require 'coveralls'
4
+ Coveralls.wear!
5
+
3
6
  $VERBOSE = true
4
7
  require 'minitest/autorun'
5
- require 'minitest/pride'
8
+ begin
9
+ require 'minitest/pride'
10
+ rescue LoadError
11
+ # ignore error for old ruby
12
+ end
6
13
  require 'kagami'
7
14
 
8
15
  describe "Kagami" do
metadata CHANGED
@@ -1,16 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kagami
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
5
- prerelease:
4
+ version: 0.1.3
6
5
  platform: ruby
7
6
  authors:
8
7
  - toooooooby
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-04-30 00:00:00.000000000 Z
13
- dependencies: []
11
+ date: 2013-05-01 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ! '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ! '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: coveralls
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ! '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ! '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
14
41
  description: A tool for mirroring text and ascii art
15
42
  email:
16
43
  - toby.net.info.mail+git@gmail.com
@@ -32,33 +59,26 @@ files:
32
59
  - test/test_kagami.rb
33
60
  homepage: https://github.com/toooooooby/kagami
34
61
  licenses: []
62
+ metadata: {}
35
63
  post_install_message:
36
64
  rdoc_options: []
37
65
  require_paths:
38
66
  - lib
39
67
  required_ruby_version: !ruby/object:Gem::Requirement
40
- none: false
41
68
  requirements:
42
69
  - - ! '>='
43
70
  - !ruby/object:Gem::Version
44
71
  version: '0'
45
- segments:
46
- - 0
47
- hash: -3233572995525603799
48
72
  required_rubygems_version: !ruby/object:Gem::Requirement
49
- none: false
50
73
  requirements:
51
74
  - - ! '>='
52
75
  - !ruby/object:Gem::Version
53
76
  version: '0'
54
- segments:
55
- - 0
56
- hash: -3233572995525603799
57
77
  requirements: []
58
78
  rubyforge_project:
59
- rubygems_version: 1.8.23
79
+ rubygems_version: 2.0.3
60
80
  signing_key:
61
- specification_version: 3
81
+ specification_version: 4
62
82
  summary: A tool for mirroring text and ascii art
63
83
  test_files:
64
84
  - test/test_kagami.rb