simple_form_fileinput 0.0.5 → 0.0.6

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: 3dca876a79cd021608978528d458a9737570c5c7
4
- data.tar.gz: a60ec3a64abb2d7953a6fb54fe3507a7377facab
3
+ metadata.gz: a957efb276db1ef6299cffbf91783689c3ffd538
4
+ data.tar.gz: 80119a273fbb8208c735c4157dcb95c4141c2daf
5
5
  SHA512:
6
- metadata.gz: 28d3e7c7a965d3616e178aaddf8422aa44b7ecdd45950d925c2e23db4fdba749662e63473c6471b4d28178b7323452585f81c670c5d922f8bca61dc984ec6cb1
7
- data.tar.gz: 48a06ce5501e70717f80c58a6be167c5f3cb65f6a55cc76c5d07f3fce80d6858ea57c8fd9ac5eecffc1ad596a3fb9ac59a363201da3e1b902117b9f69ea9a6a4
6
+ metadata.gz: f4906fa8ef7a70cd1e37b87ee8cfa39fc012503e3c954a4d3ad6124ee7dc2a2e5732afcd1cd52f440da8cfb3ea0c3a1f781402f8d85637859e18334263b1579c
7
+ data.tar.gz: 04c82b63c9967840ad833d5fa3c2288f316178e3bd1d6ddecfd3407907f987af38df95bfe25201407906f580afeb099a98609bb6225988127133fa6e3a0e99f5
@@ -0,0 +1,6 @@
1
+ module SimpleFormFileinput
2
+ module CapybaraHelpers
3
+ def attach_file_to_sfi(locator, path, params = {})
4
+ end
5
+ end
6
+ end
@@ -1,3 +1,3 @@
1
1
  module SimpleFormFileinput
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_form_fileinput
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - smit1625
@@ -73,16 +73,12 @@ executables: []
73
73
  extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
- - ".gitignore"
77
- - Gemfile
78
- - LICENSE.txt
79
- - README.md
80
76
  - Rakefile
81
77
  - lib/generators/simple_form_fileinput/install/install_generator.rb
82
78
  - lib/generators/simple_form_fileinput/install/templates/simple_form_fileinput.rb
83
79
  - lib/simple_form_fileinput.rb
80
+ - lib/simple_form_fileinput/capybara_helpers.rb
84
81
  - lib/simple_form_fileinput/version.rb
85
- - simple_form_fileinput.gemspec
86
82
  - vendor/assets/javascripts/simple_form_fileinput/bootstrap.file-input.js
87
83
  - vendor/assets/javascripts/simple_form_fileinput/enhancements.js.coffee
88
84
  - vendor/assets/javascripts/simple_form_fileinput/init.js
data/.gitignore DELETED
@@ -1,18 +0,0 @@
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
18
- /.idea
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in simple_form_fileinput.gemspec
4
- gemspec
data/LICENSE.txt DELETED
@@ -1,22 +0,0 @@
1
- Copyright (c) 2014 smit1625
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.
data/README.md DELETED
@@ -1,29 +0,0 @@
1
- # SimpleFormFileinput
2
-
3
- TODO: Write a gem description
4
-
5
- ## Installation
6
-
7
- Add this line to your application's Gemfile:
8
-
9
- gem 'simple_form_fileinput'
10
-
11
- And then execute:
12
-
13
- $ bundle
14
-
15
- Or install it yourself as:
16
-
17
- $ gem install simple_form_fileinput
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
@@ -1,25 +0,0 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'simple_form_fileinput/version'
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "simple_form_fileinput"
8
- spec.version = SimpleFormFileinput::VERSION
9
- spec.authors = ["smit1625"]
10
- spec.email = ["smit1625@msu.edu"]
11
- spec.description = %q{Beautifies the default file input for SimpleForm}
12
- spec.summary = %q{Uses bootstrap-fileinput to enhance SimpleForm's default datetime input}
13
- spec.homepage = ""
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
- spec.add_dependency "railties"
24
- spec.add_dependency "simple_form"
25
- end