fcfinder 1.0.0 → 1.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.
data/bin/console CHANGED
@@ -1,14 +1,14 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "fcfinder"
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require "irb"
14
- IRB.start
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "fcfinder"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup CHANGED
@@ -1,7 +1,7 @@
1
- #!/bin/bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
-
5
- bundle install
6
-
7
- # Do any other automated setup that you need to do here
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
data/fcfinder.gemspec CHANGED
@@ -1,31 +1,31 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'fcfinder/version'
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "fcfinder"
8
- spec.version = Fcfinder::VERSION
9
- spec.authors = ["Furkan \xC3\x87elik"]
10
- spec.email = ["furkan.celik32@gmail.com"]
11
-
12
- spec.summary = %q{Rails icin web dosya gezgini}
13
- spec.description = %q{Dosya yukleme klasor olusturma gibi islemleri hızlıbir şekilde yapabileceginiz cke tinymce gibi editorlerle entegreli kullanacieceginiz dosya gezgini}
14
- spec.homepage = "https://github.com/furkancelik/fcfinder"
15
- spec.license = "MIT"
16
-
17
-
18
- spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
19
- spec.bindir = "exe"
20
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
- spec.require_paths = ["lib"]
22
-
23
- spec.add_development_dependency "bundler", "~> 1.9"
24
- spec.add_development_dependency "rake", "~> 10.0"
25
- spec.add_dependency "mini_magick", "~> 4.2"
26
- spec.add_dependency "rubyzip", "~> 1.1"
27
-
28
- #spec.requirements << "zip"
29
- #spec.requirements << "mini_magick"
30
-
31
- end
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'fcfinder/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "fcfinder"
8
+ spec.version = Fcfinder::VERSION
9
+ spec.authors = ["Furkan \xC3\x87elik"]
10
+ spec.email = ["furkan.celik32@gmail.com"]
11
+
12
+ spec.summary = %q{Rails icin web dosya gezgini}
13
+ spec.description = %q{Dosya yukleme klasor olusturma gibi islemleri hızlıbir şekilde yapabileceginiz cke tinymce gibi editorlerle entegreli kullanacieceginiz dosya gezgini}
14
+ spec.homepage = "https://github.com/furkancelik/fcfinder.git"
15
+ spec.license = "MIT"
16
+
17
+
18
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
19
+ spec.bindir = "exe"
20
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
+ spec.require_paths = ["lib"]
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.9"
24
+ spec.add_development_dependency "rake", "~> 10.0"
25
+ spec.add_dependency "mini_magick", "~> 4.2"
26
+ spec.add_dependency "rubyzip", "~> 1.1"
27
+
28
+ #spec.requirements << "zip"
29
+ #spec.requirements << "mini_magick"
30
+
31
+ end
@@ -1,3 +1,3 @@
1
1
  module Fcfinder
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end