simple_form_materialize 1.0.0.rc1

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.
Files changed (52) hide show
  1. checksums.yaml +7 -0
  2. data/.codeclimate.yml +18 -0
  3. data/.gitignore +55 -0
  4. data/.rubocop.yml +862 -0
  5. data/.ruby-version +1 -0
  6. data/.yardopts +1 -0
  7. data/CODE_OF_CONDUCT.md +74 -0
  8. data/Gemfile +14 -0
  9. data/Gemfile.lock +147 -0
  10. data/LICENSE.txt +21 -0
  11. data/README.md +33 -0
  12. data/Rakefile +31 -0
  13. data/bin/console +7 -0
  14. data/bin/setup +6 -0
  15. data/circle.yml +21 -0
  16. data/lib/generators/simple_form_materialize/install_generator.rb +17 -0
  17. data/lib/generators/templates/assets/javascripts/init_form_materialize.coffee +16 -0
  18. data/lib/generators/templates/config/initializers/simple_form_components.rb +18 -0
  19. data/lib/generators/templates/config/initializers/simple_form_materialize.rb +244 -0
  20. data/lib/simple_form_materialize/version.rb +4 -0
  21. data/lib/simple_form_materialize.rb +5 -0
  22. data/simple_form_materialize.gemspec +28 -0
  23. data/test/lib/install_generator_test.rb +19 -0
  24. data/test/rails_app/Rakefile +8 -0
  25. data/test/rails_app/app/controllers/application_controller.rb +7 -0
  26. data/test/rails_app/app/controllers/home_controller.rb +5 -0
  27. data/test/rails_app/app/helpers/application_helper.rb +4 -0
  28. data/test/rails_app/app/views/home/index.html.erb +1 -0
  29. data/test/rails_app/app/views/layouts/application.html.erb +13 -0
  30. data/test/rails_app/bin/bundle +4 -0
  31. data/test/rails_app/bin/rails +5 -0
  32. data/test/rails_app/bin/rake +5 -0
  33. data/test/rails_app/config/application.rb +13 -0
  34. data/test/rails_app/config/boot.rb +15 -0
  35. data/test/rails_app/config/database.yml +18 -0
  36. data/test/rails_app/config/environment.rb +6 -0
  37. data/test/rails_app/config/environments/development.rb +31 -0
  38. data/test/rails_app/config/environments/production.rb +87 -0
  39. data/test/rails_app/config/environments/test.rb +46 -0
  40. data/test/rails_app/config/initializers/backtrace_silencers.rb +8 -0
  41. data/test/rails_app/config/initializers/inflections.rb +3 -0
  42. data/test/rails_app/config/initializers/secret_token.rb +4 -0
  43. data/test/rails_app/config/initializers/session_store.rb +2 -0
  44. data/test/rails_app/config/routes.rb +4 -0
  45. data/test/rails_app/config.ru +5 -0
  46. data/test/rails_app/public/404.html +26 -0
  47. data/test/rails_app/public/422.html +26 -0
  48. data/test/rails_app/public/500.html +26 -0
  49. data/test/rails_app/public/favicon.ico +0 -0
  50. data/test/simple_form_materialize_test.rb +5 -0
  51. data/test/test_helper.rb +31 -0
  52. metadata +143 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: eb5e371787efc1a3cb9587fede2c30d147006e09
4
+ data.tar.gz: f5e2ee47bf67670a469eaa257dc93a18f4c4cf2d
5
+ SHA512:
6
+ metadata.gz: '08d656355614dc5aeca4d7d673564b4166037aa2d86e37c1d21702a36ed13a5bfd6bbde567819c1f496f6f519944fb10bd56883521c3ea10af245699da18eb6a'
7
+ data.tar.gz: c6244d7cbfc389d6c5457675ef68d3fe2a4bf844b0f4080298b5040a9c2d6bc24399158810403ff72ee242f397ecafe2d51918bde1d9acc09c64cec813c6a102
data/.codeclimate.yml ADDED
@@ -0,0 +1,18 @@
1
+ ---
2
+ engines:
3
+ duplication:
4
+ enabled: true
5
+ config:
6
+ languages:
7
+ - ruby
8
+ fixme:
9
+ enabled: true
10
+ rubocop:
11
+ enabled: true
12
+ ratings:
13
+ paths:
14
+ - "**.rb"
15
+ exclude_paths:
16
+ - vendor/
17
+ - test/rails_app
18
+ - lib/generators/templates
data/.gitignore ADDED
@@ -0,0 +1,55 @@
1
+ *.gem
2
+ *.rbc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /spec/examples.txt
9
+ /test/tmp/
10
+ /test/version_tmp/
11
+ /tmp/
12
+ /test/reports/
13
+
14
+ # Used by dotenv library to load environment variables.
15
+ # .env
16
+
17
+ ## Specific to RubyMotion:
18
+ .dat*
19
+ .repl_history
20
+ build/
21
+ *.bridgesupport
22
+ build-iPhoneOS/
23
+ build-iPhoneSimulator/
24
+
25
+ ## Specific to RubyMotion (use of CocoaPods):
26
+ #
27
+ # We recommend against adding the Pods directory to your .gitignore. However
28
+ # you should judge for yourself, the pros and cons are mentioned at:
29
+ # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
30
+ #
31
+ # vendor/Pods/
32
+
33
+ ## Documentation cache and generated files:
34
+ /.yardoc/
35
+ /_yardoc/
36
+ /doc/
37
+ /rdoc/
38
+
39
+ ## Environment normalization:
40
+ /.bundle/
41
+ /vendor/bundle
42
+ /lib/bundler/man/
43
+
44
+ # for a library or gem, you might want to ignore these files since the code is
45
+ # intended to run in multiple environments; otherwise, check them in:
46
+ # Gemfile.lock
47
+ # .ruby-version
48
+ # .ruby-gemset
49
+
50
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
51
+ .rvmrc
52
+
53
+
54
+ # Linter outputs
55
+ rubocop-results.html