fm 0.0.1.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (9) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +0 -0
  3. data/COPYING +21 -0
  4. data/Gemfile +2 -0
  5. data/bin/fm +14 -0
  6. data/fm.gemspec +26 -0
  7. data/lib/fm/version.rb +3 -0
  8. data/lib/fm.rb +1 -0
  9. metadata +81 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 7d0f4d34c704b38b5d784fe3997b9091baf88a98
4
+ data.tar.gz: 29584d1d119fb84b545ffbcdaef0b0cd8889e519
5
+ SHA512:
6
+ metadata.gz: cfa1ff8a82c72590c3107be92a483ac155478afe26a6d87ba3b6e99da42466faec71bd6f20e94e1fe4ba4c47eaae2207e9afc125242fb5d3c5468ce732e6471f
7
+ data.tar.gz: c600dc7a08dcb26ace4c6f0886689e19fa35ea09b0e93116fb402bb924051f158bf1730ea80f02422d04ed0ef4c3497134dc8a857b5b079b7bb0bb56a93cc0dc
data/.gitignore ADDED
File without changes
data/COPYING ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 SpeedGo Computing
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
13
+ all 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
21
+ THE SOFTWARE.
data/Gemfile ADDED
@@ -0,0 +1,2 @@
1
+ source "https://rubygems.org"
2
+ gemspec
data/bin/fm ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'fm'
4
+
5
+
6
+ def usage
7
+ <<EOS
8
+ fm #{FM::VERSION}
9
+ EOS
10
+
11
+ end
12
+
13
+
14
+ puts usage
data/fm.gemspec ADDED
@@ -0,0 +1,26 @@
1
+ lib = File.expand_path("../lib", __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require 'fm/version'
4
+
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'fm'
8
+ spec.version = FM::VERSION
9
+ spec.summary = %q{Managing files over multiple storage resources.}
10
+ spec.description = %q{FM indexes folders, searches for duplicated files, replicates files for backup.}
11
+
12
+ spec.authors = ['ShinYee']
13
+ spec.email = ['shinyee@speedgocomputing.com']
14
+ spec.homepage = 'http://github.com/xman/ruby-fm'
15
+ spec.licenses = ['MIT']
16
+
17
+ spec.required_ruby_version = '>= 2.0.0'
18
+
19
+ spec.files = `git ls-files`.split($/)
20
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
21
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
22
+ spec.require_paths = ["lib"]
23
+
24
+ spec.add_development_dependency "bundler", "~> 1.9"
25
+ spec.add_development_dependency "rake", "~> 10.1"
26
+ end
data/lib/fm/version.rb ADDED
@@ -0,0 +1,3 @@
1
+ module FM
2
+ VERSION = '0.0.1.rc1'
3
+ end
data/lib/fm.rb ADDED
@@ -0,0 +1 @@
1
+ require 'fm/version'
metadata ADDED
@@ -0,0 +1,81 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fm
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1.rc1
5
+ platform: ruby
6
+ authors:
7
+ - ShinYee
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-06-28 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.9'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.9'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.1'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.1'
41
+ description: FM indexes folders, searches for duplicated files, replicates files for
42
+ backup.
43
+ email:
44
+ - shinyee@speedgocomputing.com
45
+ executables:
46
+ - fm
47
+ extensions: []
48
+ extra_rdoc_files: []
49
+ files:
50
+ - ".gitignore"
51
+ - COPYING
52
+ - Gemfile
53
+ - bin/fm
54
+ - fm.gemspec
55
+ - lib/fm.rb
56
+ - lib/fm/version.rb
57
+ homepage: http://github.com/xman/ruby-fm
58
+ licenses:
59
+ - MIT
60
+ metadata: {}
61
+ post_install_message:
62
+ rdoc_options: []
63
+ require_paths:
64
+ - lib
65
+ required_ruby_version: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: 2.0.0
70
+ required_rubygems_version: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ">"
73
+ - !ruby/object:Gem::Version
74
+ version: 1.3.1
75
+ requirements: []
76
+ rubyforge_project:
77
+ rubygems_version: 2.4.5
78
+ signing_key:
79
+ specification_version: 4
80
+ summary: Managing files over multiple storage resources.
81
+ test_files: []