string-irc 0.1.3 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +48 -0
- data/Gemfile +3 -13
- data/Gemfile.lock +18 -21
- data/{LICENSE.txt → LICENSE} +4 -2
- data/README.md +1 -1
- data/Rakefile +2 -49
- data/string-irc.gemspec +18 -61
- metadata +24 -48
- data/.document +0 -5
data/.gitignore
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
# rcov generated
|
2
|
+
coverage
|
3
|
+
|
4
|
+
# rdoc generated
|
5
|
+
rdoc
|
6
|
+
|
7
|
+
# yard generated
|
8
|
+
doc
|
9
|
+
.yardoc
|
10
|
+
|
11
|
+
# bundler
|
12
|
+
.bundle
|
13
|
+
|
14
|
+
# jeweler generated
|
15
|
+
pkg
|
16
|
+
|
17
|
+
# Have editor/IDE/OS specific files you need to ignore? Consider using a global gitignore:
|
18
|
+
#
|
19
|
+
# * Create a file at ~/.gitignore
|
20
|
+
# * Include files you want ignored
|
21
|
+
# * Run: git config --global core.excludesfile ~/.gitignore
|
22
|
+
#
|
23
|
+
# After doing this, these files will be ignored in all your git projects,
|
24
|
+
# saving you from having to 'pollute' every project you touch with them
|
25
|
+
#
|
26
|
+
# Not sure what to needs to be ignored for particular editors/OSes? Here's some ideas to get you started. (Remember, remove the leading # of the line)
|
27
|
+
#
|
28
|
+
# For MacOS:
|
29
|
+
#
|
30
|
+
#.DS_Store
|
31
|
+
|
32
|
+
# For TextMate
|
33
|
+
#*.tmproj
|
34
|
+
#tmtags
|
35
|
+
|
36
|
+
# For emacs:
|
37
|
+
#*~
|
38
|
+
#\#*
|
39
|
+
#.\#*
|
40
|
+
|
41
|
+
# For vim:
|
42
|
+
#*.swp
|
43
|
+
|
44
|
+
# For redcar:
|
45
|
+
#.redcar
|
46
|
+
|
47
|
+
# For rubinius:
|
48
|
+
#*.rbc
|
data/Gemfile
CHANGED
@@ -1,14 +1,4 @@
|
|
1
|
-
source
|
2
|
-
# Add dependencies required to use your gem here.
|
3
|
-
# Example:
|
4
|
-
# gem "activesupport", ">= 2.3.5"
|
1
|
+
source 'https://rubygems.org'
|
5
2
|
|
6
|
-
#
|
7
|
-
|
8
|
-
group :development do
|
9
|
-
gem "rspec", "2.6.0"
|
10
|
-
gem "bundler", "~> 1.0.0"
|
11
|
-
gem "jeweler", "~> 1.6.4"
|
12
|
-
gem "rcov", ">= 0"
|
13
|
-
gem "net-irc", "~> 0.0.9"
|
14
|
-
end
|
3
|
+
# Specify your gem's dependencies in string-irc.gemspec
|
4
|
+
gemspec
|
data/Gemfile.lock
CHANGED
@@ -1,30 +1,27 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
string-irc (0.2.0)
|
5
|
+
bundler (~> 1.1.3)
|
6
|
+
net-irc (~> 0.0.9)
|
7
|
+
rspec (~> 2.9.0)
|
8
|
+
|
1
9
|
GEM
|
2
|
-
remote:
|
10
|
+
remote: https://rubygems.org/
|
3
11
|
specs:
|
4
12
|
diff-lcs (1.1.3)
|
5
|
-
git (1.2.5)
|
6
|
-
jeweler (1.6.4)
|
7
|
-
bundler (~> 1.0)
|
8
|
-
git (>= 1.2.5)
|
9
|
-
rake
|
10
13
|
net-irc (0.0.9)
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
rspec-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
rspec-
|
19
|
-
diff-lcs (~> 1.1.2)
|
20
|
-
rspec-mocks (2.6.0)
|
14
|
+
rspec (2.9.0)
|
15
|
+
rspec-core (~> 2.9.0)
|
16
|
+
rspec-expectations (~> 2.9.0)
|
17
|
+
rspec-mocks (~> 2.9.0)
|
18
|
+
rspec-core (2.9.0)
|
19
|
+
rspec-expectations (2.9.1)
|
20
|
+
diff-lcs (~> 1.1.3)
|
21
|
+
rspec-mocks (2.9.0)
|
21
22
|
|
22
23
|
PLATFORMS
|
23
24
|
ruby
|
24
25
|
|
25
26
|
DEPENDENCIES
|
26
|
-
|
27
|
-
jeweler (~> 1.6.4)
|
28
|
-
net-irc (~> 0.0.9)
|
29
|
-
rcov
|
30
|
-
rspec (= 2.6.0)
|
27
|
+
string-irc!
|
data/{LICENSE.txt → LICENSE}
RENAMED
@@ -1,4 +1,6 @@
|
|
1
|
-
Copyright (c)
|
1
|
+
Copyright (c) 2012 Kohei Hasegawa
|
2
|
+
|
3
|
+
MIT License
|
2
4
|
|
3
5
|
Permission is hereby granted, free of charge, to any person obtaining
|
4
6
|
a copy of this software and associated documentation files (the
|
@@ -17,4 +19,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17
19
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
20
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
21
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# string-irc - Add color codes for mIRC compatible client.
|
2
2
|
|
3
3
|
[![Build Status](https://secure.travis-ci.org/banyan/string-irc.png)](http://travis-ci.org/banyan/string-irc)
|
4
|
-
|
4
|
+
[<img src="https://gemnasium.com/banyan/string-irc.png" />](https://gemnasium.com/banyan/string-irc)
|
5
5
|
Description
|
6
6
|
---
|
7
7
|
|
data/Rakefile
CHANGED
@@ -1,49 +1,2 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
require 'rubygems'
|
4
|
-
require 'bundler'
|
5
|
-
begin
|
6
|
-
Bundler.setup(:default, :development)
|
7
|
-
rescue Bundler::BundlerError => e
|
8
|
-
$stderr.puts e.message
|
9
|
-
$stderr.puts "Run `bundle install` to install missing gems"
|
10
|
-
exit e.status_code
|
11
|
-
end
|
12
|
-
require 'rake'
|
13
|
-
|
14
|
-
require 'jeweler'
|
15
|
-
Jeweler::Tasks.new do |gem|
|
16
|
-
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
17
|
-
gem.name = "string-irc"
|
18
|
-
gem.homepage = "http://github.com/banyan/string-irc"
|
19
|
-
gem.license = "MIT"
|
20
|
-
gem.summary = %Q{add color codes for mIRC compatible client}
|
21
|
-
gem.description = %Q{add color codes for mIRC compatible client}
|
22
|
-
gem.email = "ameutau@gmail.com"
|
23
|
-
gem.authors = ["banyan"]
|
24
|
-
# dependencies defined in Gemfile
|
25
|
-
end
|
26
|
-
Jeweler::RubygemsDotOrgTasks.new
|
27
|
-
|
28
|
-
require 'rspec/core'
|
29
|
-
require 'rspec/core/rake_task'
|
30
|
-
RSpec::Core::RakeTask.new(:spec) do |spec|
|
31
|
-
spec.pattern = FileList['spec/**/*_spec.rb']
|
32
|
-
end
|
33
|
-
|
34
|
-
RSpec::Core::RakeTask.new(:rcov) do |spec|
|
35
|
-
spec.pattern = 'spec/**/*_spec.rb'
|
36
|
-
spec.rcov = true
|
37
|
-
end
|
38
|
-
|
39
|
-
task :default => :spec
|
40
|
-
|
41
|
-
require 'rake/rdoctask'
|
42
|
-
Rake::RDocTask.new do |rdoc|
|
43
|
-
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
44
|
-
|
45
|
-
rdoc.rdoc_dir = 'rdoc'
|
46
|
-
rdoc.title = "string-irc #{version}"
|
47
|
-
rdoc.rdoc_files.include('README*')
|
48
|
-
rdoc.rdoc_files.include('lib/**/*.rb')
|
49
|
-
end
|
1
|
+
#!/usr/bin/env rake
|
2
|
+
require "bundler/gem_tasks"
|
data/string-irc.gemspec
CHANGED
@@ -1,65 +1,22 @@
|
|
1
|
-
# Generated by jeweler
|
2
|
-
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
1
|
# -*- encoding: utf-8 -*-
|
2
|
+
Gem::Specification.new do |gem|
|
3
|
+
gem.authors = ["Kohei Hasegawa"]
|
4
|
+
gem.email = ["ameutau@gmail.com"]
|
5
|
+
gem.description = %q{add color codes for mIRC compatible client}
|
6
|
+
gem.summary = %q{add color codes for mIRC compatible client}
|
7
|
+
gem.homepage = %q{http://github.com/banyan/string-irc}
|
8
|
+
gem.date = %q{2012-04-12}
|
9
|
+
gem.licenses = [%q{MIT}]
|
5
10
|
|
6
|
-
|
7
|
-
|
8
|
-
|
11
|
+
gem.files = `git ls-files`.split($\)
|
12
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
13
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
14
|
+
gem.name = "string-irc"
|
15
|
+
gem.require_paths = ["lib"]
|
16
|
+
gem.version = "0.2.0"
|
9
17
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
s.email = %q{ameutau@gmail.com}
|
15
|
-
s.extra_rdoc_files = [
|
16
|
-
"LICENSE.txt",
|
17
|
-
"README.md"
|
18
|
-
]
|
19
|
-
s.files = [
|
20
|
-
".document",
|
21
|
-
".rspec",
|
22
|
-
".travis.yml",
|
23
|
-
"Gemfile",
|
24
|
-
"Gemfile.lock",
|
25
|
-
"LICENSE.txt",
|
26
|
-
"README.md",
|
27
|
-
"Rakefile",
|
28
|
-
"VERSION",
|
29
|
-
"examples/client.rb",
|
30
|
-
"lib/string-irc.rb",
|
31
|
-
"spec/spec_helper.rb",
|
32
|
-
"spec/string-irc_spec.rb",
|
33
|
-
"string-irc.gemspec"
|
34
|
-
]
|
35
|
-
s.homepage = %q{http://github.com/banyan/string-irc}
|
36
|
-
s.licenses = [%q{MIT}]
|
37
|
-
s.require_paths = [%q{lib}]
|
38
|
-
s.rubygems_version = %q{1.8.6}
|
39
|
-
s.summary = %q{add color codes for mIRC compatible client}
|
40
|
-
|
41
|
-
if s.respond_to? :specification_version then
|
42
|
-
s.specification_version = 3
|
43
|
-
|
44
|
-
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
45
|
-
s.add_development_dependency(%q<rspec>, ["= 2.6.0"])
|
46
|
-
s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
|
47
|
-
s.add_development_dependency(%q<jeweler>, ["~> 1.6.4"])
|
48
|
-
s.add_development_dependency(%q<rcov>, [">= 0"])
|
49
|
-
s.add_development_dependency(%q<net-irc>, ["~> 0.0.9"])
|
50
|
-
else
|
51
|
-
s.add_dependency(%q<rspec>, ["= 2.6.0"])
|
52
|
-
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
53
|
-
s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
|
54
|
-
s.add_dependency(%q<rcov>, [">= 0"])
|
55
|
-
s.add_dependency(%q<net-irc>, ["~> 0.0.9"])
|
56
|
-
end
|
57
|
-
else
|
58
|
-
s.add_dependency(%q<rspec>, ["= 2.6.0"])
|
59
|
-
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
60
|
-
s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
|
61
|
-
s.add_dependency(%q<rcov>, [">= 0"])
|
62
|
-
s.add_dependency(%q<net-irc>, ["~> 0.0.9"])
|
63
|
-
end
|
18
|
+
# dependencies
|
19
|
+
gem.add_dependency 'rspec', "~> 2.9.0"
|
20
|
+
gem.add_dependency "bundler", "~> 1.1.3"
|
21
|
+
gem.add_dependency "net-irc", "~> 0.0.9"
|
64
22
|
end
|
65
|
-
|
metadata
CHANGED
@@ -1,85 +1,62 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: string-irc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
|
-
-
|
8
|
+
- Kohei Hasegawa
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2012-04-12 00:00:00.000000000Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rspec
|
16
|
-
requirement: &
|
17
|
-
none: false
|
18
|
-
requirements:
|
19
|
-
- - =
|
20
|
-
- !ruby/object:Gem::Version
|
21
|
-
version: 2.6.0
|
22
|
-
type: :development
|
23
|
-
prerelease: false
|
24
|
-
version_requirements: *2152095160
|
25
|
-
- !ruby/object:Gem::Dependency
|
26
|
-
name: bundler
|
27
|
-
requirement: &2152059700 !ruby/object:Gem::Requirement
|
16
|
+
requirement: &70216277992380 !ruby/object:Gem::Requirement
|
28
17
|
none: false
|
29
18
|
requirements:
|
30
19
|
- - ~>
|
31
20
|
- !ruby/object:Gem::Version
|
32
|
-
version:
|
33
|
-
type: :
|
21
|
+
version: 2.9.0
|
22
|
+
type: :runtime
|
34
23
|
prerelease: false
|
35
|
-
version_requirements: *
|
24
|
+
version_requirements: *70216277992380
|
36
25
|
- !ruby/object:Gem::Dependency
|
37
|
-
name:
|
38
|
-
requirement: &
|
26
|
+
name: bundler
|
27
|
+
requirement: &70216277991660 !ruby/object:Gem::Requirement
|
39
28
|
none: false
|
40
29
|
requirements:
|
41
30
|
- - ~>
|
42
31
|
- !ruby/object:Gem::Version
|
43
|
-
version: 1.
|
44
|
-
type: :
|
32
|
+
version: 1.1.3
|
33
|
+
type: :runtime
|
45
34
|
prerelease: false
|
46
|
-
version_requirements: *
|
47
|
-
- !ruby/object:Gem::Dependency
|
48
|
-
name: rcov
|
49
|
-
requirement: &2152047800 !ruby/object:Gem::Requirement
|
50
|
-
none: false
|
51
|
-
requirements:
|
52
|
-
- - ! '>='
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '0'
|
55
|
-
type: :development
|
56
|
-
prerelease: false
|
57
|
-
version_requirements: *2152047800
|
35
|
+
version_requirements: *70216277991660
|
58
36
|
- !ruby/object:Gem::Dependency
|
59
37
|
name: net-irc
|
60
|
-
requirement: &
|
38
|
+
requirement: &70216277990960 !ruby/object:Gem::Requirement
|
61
39
|
none: false
|
62
40
|
requirements:
|
63
41
|
- - ~>
|
64
42
|
- !ruby/object:Gem::Version
|
65
43
|
version: 0.0.9
|
66
|
-
type: :
|
44
|
+
type: :runtime
|
67
45
|
prerelease: false
|
68
|
-
version_requirements: *
|
46
|
+
version_requirements: *70216277990960
|
69
47
|
description: add color codes for mIRC compatible client
|
70
|
-
email:
|
48
|
+
email:
|
49
|
+
- ameutau@gmail.com
|
71
50
|
executables: []
|
72
51
|
extensions: []
|
73
|
-
extra_rdoc_files:
|
74
|
-
- LICENSE.txt
|
75
|
-
- README.md
|
52
|
+
extra_rdoc_files: []
|
76
53
|
files:
|
77
|
-
- .
|
54
|
+
- .gitignore
|
78
55
|
- .rspec
|
79
56
|
- .travis.yml
|
80
57
|
- Gemfile
|
81
58
|
- Gemfile.lock
|
82
|
-
- LICENSE
|
59
|
+
- LICENSE
|
83
60
|
- README.md
|
84
61
|
- Rakefile
|
85
62
|
- VERSION
|
@@ -101,9 +78,6 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
101
78
|
- - ! '>='
|
102
79
|
- !ruby/object:Gem::Version
|
103
80
|
version: '0'
|
104
|
-
segments:
|
105
|
-
- 0
|
106
|
-
hash: -365511161399464494
|
107
81
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
108
82
|
none: false
|
109
83
|
requirements:
|
@@ -112,8 +86,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
112
86
|
version: '0'
|
113
87
|
requirements: []
|
114
88
|
rubyforge_project:
|
115
|
-
rubygems_version: 1.8.
|
89
|
+
rubygems_version: 1.8.10
|
116
90
|
signing_key:
|
117
91
|
specification_version: 3
|
118
92
|
summary: add color codes for mIRC compatible client
|
119
|
-
test_files:
|
93
|
+
test_files:
|
94
|
+
- spec/spec_helper.rb
|
95
|
+
- spec/string-irc_spec.rb
|