simple_form_select2 0.1.0
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.
- checksums.yaml +7 -0
- data/.gitignore +88 -0
- data/.rspec +2 -0
- data/.rubocop.yml +1309 -0
- data/.ruby-version +1 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +65 -0
- data/Rakefile +6 -0
- data/app/assets/javascripts/simple_form_select2/index.js +2 -0
- data/app/assets/javascripts/simple_form_select2/simple_form_select2.coffee +35 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/simple_form/inputs/select2_input.rb +23 -0
- data/lib/simple_form_select2/version.rb +3 -0
- data/lib/simple_form_select2.rb +8 -0
- data/simple_form_select2.gemspec +31 -0
- data/spec/simple_form_select2_spec.rb +7 -0
- data/spec/spec_helper.rb +19 -0
- metadata +171 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: e8e71e138a298ac7604c23416ca39e19ba99e5e9
|
4
|
+
data.tar.gz: bc5fbc6f8bcbb6d015346ae7156ddb5478631222
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 99f4f3c81fcf5e31ffb4f817f4d8aa1066dff317c71359a846bc41a41399e9bb2055034e596b4e17f4dc476a8b64b6eb47c2ae0aafb66453a10a9448251caa46
|
7
|
+
data.tar.gz: 6eff66352e023a0babbafd98b4b349898d11600f4e81e3720356f913777744b141418350a86ee8f55a6cd96173449b8ac2019d2c28d220355c1cb7ebd42ca08e
|
data/.gitignore
ADDED
@@ -0,0 +1,88 @@
|
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
/.bundle/
|
4
|
+
/.yardoc
|
5
|
+
/Gemfile.lock
|
6
|
+
/_yardoc/
|
7
|
+
/coverage/
|
8
|
+
/doc/
|
9
|
+
/pkg/
|
10
|
+
/spec/reports/
|
11
|
+
/tmp/
|
12
|
+
|
13
|
+
# Created by https://www.gitignore.io/api/rails,osx
|
14
|
+
|
15
|
+
### OSX ###
|
16
|
+
*.DS_Store
|
17
|
+
.AppleDouble
|
18
|
+
.LSOverride
|
19
|
+
|
20
|
+
# Icon must end with two \r
|
21
|
+
Icon
|
22
|
+
|
23
|
+
# Thumbnails
|
24
|
+
._*
|
25
|
+
|
26
|
+
# Files that might appear in the root of a volume
|
27
|
+
.DocumentRevisions-V100
|
28
|
+
.fseventsd
|
29
|
+
.Spotlight-V100
|
30
|
+
.TemporaryItems
|
31
|
+
.Trashes
|
32
|
+
.VolumeIcon.icns
|
33
|
+
.com.apple.timemachine.donotpresent
|
34
|
+
|
35
|
+
# Directories potentially created on remote AFP share
|
36
|
+
.AppleDB
|
37
|
+
.AppleDesktop
|
38
|
+
Network Trash Folder
|
39
|
+
Temporary Items
|
40
|
+
.apdisk
|
41
|
+
|
42
|
+
### Rails ###
|
43
|
+
*.rbc
|
44
|
+
capybara-*.html
|
45
|
+
.rspec
|
46
|
+
/log
|
47
|
+
/tmp
|
48
|
+
/db/*.sqlite3
|
49
|
+
/db/*.sqlite3-journal
|
50
|
+
/public/system
|
51
|
+
/coverage/
|
52
|
+
/spec/tmp
|
53
|
+
*.orig
|
54
|
+
rerun.txt
|
55
|
+
pickle-email-*.html
|
56
|
+
|
57
|
+
# TODO Comment out this rule if you are OK with secrets being uploaded to the repo
|
58
|
+
config/initializers/secret_token.rb
|
59
|
+
|
60
|
+
# Only include if you have production secrets in this file, which is no longer a Rails default
|
61
|
+
# config/secrets.yml
|
62
|
+
|
63
|
+
# dotenv
|
64
|
+
# TODO Comment out this rule if environment variables can be committed
|
65
|
+
.env
|
66
|
+
|
67
|
+
## Environment normalization:
|
68
|
+
/.bundle
|
69
|
+
/vendor/bundle
|
70
|
+
|
71
|
+
# these should all be checked in to normalize the environment:
|
72
|
+
# Gemfile.lock, .ruby-version, .ruby-gemset
|
73
|
+
|
74
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
75
|
+
.rvmrc
|
76
|
+
|
77
|
+
# if using bower-rails ignore default bower_components path bower.json files
|
78
|
+
/vendor/assets/bower_components
|
79
|
+
*.bowerrc
|
80
|
+
bower.json
|
81
|
+
|
82
|
+
# Ignore pow environment settings
|
83
|
+
.powenv
|
84
|
+
|
85
|
+
# Ignore Byebug command history file.
|
86
|
+
.byebug_history
|
87
|
+
|
88
|
+
# End of https://www.gitignore.io/api/rails,osx
|
data/.rspec
ADDED