the_freemind_search 0.0.1

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: a873d7795f4b97233851d01aec91111f0f5bce4d
4
+ data.tar.gz: 1952eff208f93be3ec376ca62c8a03103c0fdff8
5
+ SHA512:
6
+ metadata.gz: 116a1ddae483dc93d0dffd4cf5af1c41f87af4fadf5557fe99f70ce480e97c10e8a758ac260fdb8802ed4f9f932a0823034028a3ec9c10f500a5e99a6d2639e5
7
+ data.tar.gz: 62b2339ab684539da70d266fd8271e20e3bee8442196efbfb6bc28c3218d3560ce25c90e97104ac2c4fe053b937ed1c0f4a71470a1618fde5e4451a1dc87fe95
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2014 Nikita Fedyashev
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,2 @@
1
+ the_freemind_search
2
+ ===================
@@ -0,0 +1,2 @@
1
+ require 'bundler'
2
+ Bundler::GemHelper.install_tasks
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'htmlentities'
4
+
5
+ coder = HTMLEntities.new
6
+ puts coder.encode(ARGV[0], :hexadecimal)
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.add_dependency 'htmlentities', '~> 4.3'
7
+ spec.add_development_dependency 'bundler', '~> 1.0'
8
+ spec.author = 'Nikita Fedyashev'
9
+ spec.bindir = 'bin'
10
+ spec.description = %q(A command-line tool for searching FreeMind documents.)
11
+ spec.email = 'nfedyashev@gmail.com'
12
+ spec.executables = %w[the_freemind_search]
13
+ spec.files = %w[LICENSE.md README.md Rakefile the_freemind_search.gemspec]
14
+ spec.files += Dir.glob('lib/**/*.rb')
15
+ spec.files += Dir.glob('bin/**/*')
16
+ spec.files += Dir.glob('spec/**/*')
17
+ spec.licenses = %w[MIT]
18
+ spec.name = 'the_freemind_search'
19
+ spec.require_paths = %w[lib]
20
+ spec.required_ruby_version = '>= 1.9.2'
21
+ spec.required_rubygems_version = '>= 1.3.5'
22
+ spec.summary = %q(CLI search for FreeMind)
23
+ spec.test_files = Dir.glob('spec/**/*')
24
+ spec.version = '0.0.1'
25
+ end
metadata ADDED
@@ -0,0 +1,78 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: the_freemind_search
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Nikita Fedyashev
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-04-26 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: htmlentities
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '4.3'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '4.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '1.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '1.0'
41
+ description: A command-line tool for searching FreeMind documents.
42
+ email: nfedyashev@gmail.com
43
+ executables:
44
+ - the_freemind_search
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - LICENSE.md
49
+ - README.md
50
+ - Rakefile
51
+ - the_freemind_search.gemspec
52
+ - bin/the_freemind_search
53
+ homepage:
54
+ licenses:
55
+ - MIT
56
+ metadata: {}
57
+ post_install_message:
58
+ rdoc_options: []
59
+ require_paths:
60
+ - lib
61
+ required_ruby_version: !ruby/object:Gem::Requirement
62
+ requirements:
63
+ - - '>='
64
+ - !ruby/object:Gem::Version
65
+ version: 1.9.2
66
+ required_rubygems_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - '>='
69
+ - !ruby/object:Gem::Version
70
+ version: 1.3.5
71
+ requirements: []
72
+ rubyforge_project:
73
+ rubygems_version: 2.0.2
74
+ signing_key:
75
+ specification_version: 4
76
+ summary: CLI search for FreeMind
77
+ test_files: []
78
+ has_rdoc: