simple_form_select2 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color