Titania 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fcb998f938a9cfd10c53438cabc5183a4cd76f75
4
- data.tar.gz: e01f5b07e1913155fae36ddeabe86d6c26069d7f
3
+ metadata.gz: c7c1bd27283cda261512f8ab9b74c166c39d8c43
4
+ data.tar.gz: 99b69004cbc4998e5daf297a2fc46138f6c30e47
5
5
  SHA512:
6
- metadata.gz: dd09d5a9f234decd4ee56cd28875036315a582b034d24082ec28642d9f099d2b87191241dba42d22f98d59ede4639f561327a2d128d3d0f52692858069dafa1e
7
- data.tar.gz: c7e7174f6471524fe82bc2053649116f6aa62fe9ce983a564a7c92645a8d44ae85824a32a4846f59791a95f6ca8224aeda3a5e236cfadda64e765a96e98581f5
6
+ metadata.gz: ffeb1428b3dba25cf02151bf2640226c025b297c8b2fa162f1b60b0685fcbfc8398f654f317e752844c20295c20f076673ed2f5a51c26d8d132354686ad9a775
7
+ data.tar.gz: 1b747f0410fe5d5e16cd48ec97814d071292e6ffb3fe454866baed4e56fbab2a0c2babc60163c11fb47a33e9ed75e01c4a0183fe9af25932b313b25d2369f266
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in Titania.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Sedat ÇİFTÇİ
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,29 @@
1
+ # Titania
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'Titania'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install Titania
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'Titania/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "Titania"
8
+ spec.version = Titania::VERSION
9
+ spec.authors = ["Sedat ÇİFTÇİ"]
10
+ spec.email = ["iamcodegrab@gmail.com"]
11
+ spec.description = %q{FTP Connection & Management System}
12
+ spec.summary = %q{Ruby FTP Connection & Management System}
13
+ spec.homepage = "https://github.com/sedatciftci/Titania"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.3"
22
+ spec.add_development_dependency "rake"
23
+ end
@@ -0,0 +1,2 @@
1
+ require "Titania/version"
2
+ require "Titania/connection"
@@ -0,0 +1,3 @@
1
+ module Titania
2
+ VERSION = "0.0.3"
3
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: Titania
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sedat ÇİFTÇİ
@@ -38,13 +38,21 @@ dependencies:
38
38
  - - '>='
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
- description: Titania SFTP Manager
41
+ description: FTP Connection & Management System
42
42
  email:
43
43
  - iamcodegrab@gmail.com
44
44
  executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files: []
47
- files: []
47
+ files:
48
+ - .gitignore
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - Titania.gemspec
54
+ - lib/Titania.rb
55
+ - lib/Titania/version.rb
48
56
  homepage: https://github.com/sedatciftci/Titania
49
57
  licenses:
50
58
  - MIT
@@ -68,5 +76,5 @@ rubyforge_project:
68
76
  rubygems_version: 2.2.0
69
77
  signing_key:
70
78
  specification_version: 4
71
- summary: Titania SFTP Connection and Management Gem
79
+ summary: Ruby FTP Connection & Management System
72
80
  test_files: []