rwr-view_helpers 0.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.
Files changed (100) hide show
  1. checksums.yaml +7 -0
  2. data/.babelrc +3 -0
  3. data/.eslintrc +8 -0
  4. data/.gitignore +216 -0
  5. data/.travis.yml +48 -0
  6. data/CONTRIBUTING.md +17 -0
  7. data/Gemfile +14 -0
  8. data/LICENSE +22 -0
  9. data/README.md +69 -0
  10. data/Rakefile +7 -0
  11. data/docs/rwr-view_helpers.md +34 -0
  12. data/js/.eslintrc +12 -0
  13. data/js/src/index.js +2 -0
  14. data/js/src/version.js +1 -0
  15. data/js/test/index.spec.js +26 -0
  16. data/lib/assets/javascripts/rwr_view_helpers.js.erb +5 -0
  17. data/lib/react_webpack_rails/rwr_view_helpers/image_paths.rb +33 -0
  18. data/lib/react_webpack_rails/rwr_view_helpers/rails/engine.rb +8 -0
  19. data/lib/react_webpack_rails/rwr_view_helpers/version.rb +5 -0
  20. data/lib/rwr-view_helpers.rb +3 -0
  21. data/package.json +43 -0
  22. data/rwr-view_helpers/.gitignore +9 -0
  23. data/rwr-view_helpers/Gemfile +4 -0
  24. data/rwr-view_helpers/README.md +36 -0
  25. data/rwr-view_helpers/Rakefile +2 -0
  26. data/rwr-view_helpers/bin/console +14 -0
  27. data/rwr-view_helpers/bin/setup +8 -0
  28. data/rwr-view_helpers/lib/rwr/view_helpers/version.rb +5 -0
  29. data/rwr-view_helpers/lib/rwr/view_helpers.rb +7 -0
  30. data/rwr-view_helpers/rwr-view_helpers.gemspec +31 -0
  31. data/rwr-view_helpers.gemspec +28 -0
  32. data/spec/rails4_dummy_app/.babelrc +3 -0
  33. data/spec/rails4_dummy_app/.gitignore +216 -0
  34. data/spec/rails4_dummy_app/.nvmrc +1 -0
  35. data/spec/rails4_dummy_app/Gemfile +28 -0
  36. data/spec/rails4_dummy_app/Rakefile +6 -0
  37. data/spec/rails4_dummy_app/app/assets/images/.keep +0 -0
  38. data/spec/rails4_dummy_app/app/assets/images/spongebob.png +0 -0
  39. data/spec/rails4_dummy_app/app/assets/images/spongebob@2x.png +0 -0
  40. data/spec/rails4_dummy_app/app/assets/images/spongebob@3x.png +0 -0
  41. data/spec/rails4_dummy_app/app/assets/javascripts/application.js +20 -0
  42. data/spec/rails4_dummy_app/app/assets/stylesheets/application.css +15 -0
  43. data/spec/rails4_dummy_app/app/controllers/application_controller.rb +5 -0
  44. data/spec/rails4_dummy_app/app/controllers/concerns/.keep +0 -0
  45. data/spec/rails4_dummy_app/app/controllers/pages_controller.rb +4 -0
  46. data/spec/rails4_dummy_app/app/helpers/application_helper.rb +2 -0
  47. data/spec/rails4_dummy_app/app/mailers/.keep +0 -0
  48. data/spec/rails4_dummy_app/app/models/.keep +0 -0
  49. data/spec/rails4_dummy_app/app/models/concerns/.keep +0 -0
  50. data/spec/rails4_dummy_app/app/react/components/Spongebob.js +9 -0
  51. data/spec/rails4_dummy_app/app/react/components/Spongebob.spec.js +28 -0
  52. data/spec/rails4_dummy_app/app/react/index.js +5 -0
  53. data/spec/rails4_dummy_app/app/react/test/helpers/browser.js +20 -0
  54. data/spec/rails4_dummy_app/app/views/layouts/_react_hot_assets.html.erb +3 -0
  55. data/spec/rails4_dummy_app/app/views/layouts/application.html.erb +16 -0
  56. data/spec/rails4_dummy_app/app/views/pages/home.html.erb +7 -0
  57. data/spec/rails4_dummy_app/bin/bundle +3 -0
  58. data/spec/rails4_dummy_app/bin/rails +8 -0
  59. data/spec/rails4_dummy_app/bin/rake +8 -0
  60. data/spec/rails4_dummy_app/bin/setup +29 -0
  61. data/spec/rails4_dummy_app/bin/spring +15 -0
  62. data/spec/rails4_dummy_app/config/application.rb +26 -0
  63. data/spec/rails4_dummy_app/config/boot.rb +3 -0
  64. data/spec/rails4_dummy_app/config/database.yml +25 -0
  65. data/spec/rails4_dummy_app/config/environment.rb +5 -0
  66. data/spec/rails4_dummy_app/config/environments/development.rb +41 -0
  67. data/spec/rails4_dummy_app/config/environments/production.rb +79 -0
  68. data/spec/rails4_dummy_app/config/environments/test.rb +42 -0
  69. data/spec/rails4_dummy_app/config/initializers/assets.rb +11 -0
  70. data/spec/rails4_dummy_app/config/initializers/backtrace_silencers.rb +7 -0
  71. data/spec/rails4_dummy_app/config/initializers/cookies_serializer.rb +3 -0
  72. data/spec/rails4_dummy_app/config/initializers/filter_parameter_logging.rb +4 -0
  73. data/spec/rails4_dummy_app/config/initializers/inflections.rb +16 -0
  74. data/spec/rails4_dummy_app/config/initializers/mime_types.rb +4 -0
  75. data/spec/rails4_dummy_app/config/initializers/session_store.rb +3 -0
  76. data/spec/rails4_dummy_app/config/initializers/wrap_parameters.rb +14 -0
  77. data/spec/rails4_dummy_app/config/locales/en.yml +23 -0
  78. data/spec/rails4_dummy_app/config/routes.rb +58 -0
  79. data/spec/rails4_dummy_app/config.ru +4 -0
  80. data/spec/rails4_dummy_app/db/schema.rb +16 -0
  81. data/spec/rails4_dummy_app/db/seeds.rb +7 -0
  82. data/spec/rails4_dummy_app/forever/development.json +8 -0
  83. data/spec/rails4_dummy_app/forever/production.json +6 -0
  84. data/spec/rails4_dummy_app/karma.conf.js +32 -0
  85. data/spec/rails4_dummy_app/lib/assets/.keep +0 -0
  86. data/spec/rails4_dummy_app/lib/tasks/.keep +0 -0
  87. data/spec/rails4_dummy_app/package.json +55 -0
  88. data/spec/rails4_dummy_app/public/404.html +67 -0
  89. data/spec/rails4_dummy_app/public/422.html +67 -0
  90. data/spec/rails4_dummy_app/public/500.html +66 -0
  91. data/spec/rails4_dummy_app/public/favicon.ico +0 -0
  92. data/spec/rails4_dummy_app/public/robots.txt +5 -0
  93. data/spec/rails4_dummy_app/spec/rails_helper.rb +57 -0
  94. data/spec/rails4_dummy_app/spec/spec_helper.rb +92 -0
  95. data/spec/rails4_dummy_app/webpack/dev.config.js +7 -0
  96. data/spec/rails4_dummy_app/webpack/hot-dev.config.js +13 -0
  97. data/spec/rails4_dummy_app/webpack/production.config.js +3 -0
  98. data/spec/rails4_dummy_app/webpack/tests.config.js +2 -0
  99. data/spec/rails4_dummy_app/webpack.config.js +39 -0
  100. metadata +212 -0
@@ -0,0 +1,5 @@
1
+ # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
2
+ #
3
+ # To ban all spiders from the entire site uncomment the next two lines:
4
+ # User-agent: *
5
+ # Disallow: /
@@ -0,0 +1,57 @@
1
+ # This file is copied to spec/ when you run 'rails generate rspec:install'
2
+ ENV['RAILS_ENV'] ||= 'test'
3
+ require File.expand_path('../../config/environment', __FILE__)
4
+ # Prevent database truncation if the environment is production
5
+ abort("The Rails environment is running in production mode!") if Rails.env.production?
6
+ require 'spec_helper'
7
+ require 'rspec/rails'
8
+ require 'capybara/rspec'
9
+ # Add additional requires below this line. Rails is not loaded until this point!
10
+
11
+ # Requires supporting ruby files with custom matchers and macros, etc, in
12
+ # spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are
13
+ # run as spec files by default. This means that files in spec/support that end
14
+ # in _spec.rb will both be required and run as specs, causing the specs to be
15
+ # run twice. It is recommended that you do not name files matching this glob to
16
+ # end with _spec.rb. You can configure this pattern with the --pattern
17
+ # option on the command line or in ~/.rspec, .rspec or `.rspec-local`.
18
+ #
19
+ # The following line is provided for convenience purposes. It has the downside
20
+ # of increasing the boot-up time by auto-requiring all files in the support
21
+ # directory. Alternatively, in the individual `*_spec.rb` files, manually
22
+ # require only the support files necessary.
23
+ #
24
+ # Dir[Rails.root.join('spec/support/**/*.rb')].each { |f| require f }
25
+
26
+ # Checks for pending migrations before tests are run.
27
+ # If you are not using ActiveRecord, you can remove this line.
28
+ ActiveRecord::Migration.maintain_test_schema!
29
+
30
+ Capybara.register_driver :selenium do |app|
31
+ Capybara::Selenium::Driver.new(app, :browser => :chrome)
32
+ end
33
+
34
+ RSpec.configure do |config|
35
+ # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
36
+ config.fixture_path = "#{::Rails.root}/spec/fixtures"
37
+
38
+ # If you're not using ActiveRecord, or you'd prefer not to run each of your
39
+ # examples within a transaction, remove the following line or assign false
40
+ # instead of true.
41
+ config.use_transactional_fixtures = true
42
+
43
+ # RSpec Rails can automatically mix in different behaviours to your tests
44
+ # based on their file location, for example enabling you to call `get` and
45
+ # `post` in specs under `spec/controllers`.
46
+ #
47
+ # You can disable this behaviour by removing the line below, and instead
48
+ # explicitly tag your specs with their type, e.g.:
49
+ #
50
+ # RSpec.describe UsersController, :type => :controller do
51
+ # # ...
52
+ # end
53
+ #
54
+ # The different available types are documented in the features, such as in
55
+ # https://relishapp.com/rspec/rspec-rails/docs
56
+ config.infer_spec_type_from_file_location!
57
+ end
@@ -0,0 +1,92 @@
1
+ # This file was generated by the `rails generate rspec:install` command. Conventionally, all
2
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3
+ # The generated `.rspec` file contains `--require spec_helper` which will cause
4
+ # this file to always be loaded, without a need to explicitly require it in any
5
+ # files.
6
+ #
7
+ # Given that it is always loaded, you are encouraged to keep this file as
8
+ # light-weight as possible. Requiring heavyweight dependencies from this file
9
+ # will add to the boot time of your test suite on EVERY test run, even for an
10
+ # individual file that may not need all of that loaded. Instead, consider making
11
+ # a separate helper file that requires the additional dependencies and performs
12
+ # the additional setup, and require it from the spec files that actually need
13
+ # it.
14
+ #
15
+ # The `.rspec` file also contains a few flags that are not defaults but that
16
+ # users commonly want.
17
+ #
18
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
19
+ RSpec.configure do |config|
20
+ # rspec-expectations config goes here. You can use an alternate
21
+ # assertion/expectation library such as wrong or the stdlib/minitest
22
+ # assertions if you prefer.
23
+ config.expect_with :rspec do |expectations|
24
+ # This option will default to `true` in RSpec 4. It makes the `description`
25
+ # and `failure_message` of custom matchers include text for helper methods
26
+ # defined using `chain`, e.g.:
27
+ # be_bigger_than(2).and_smaller_than(4).description
28
+ # # => "be bigger than 2 and smaller than 4"
29
+ # ...rather than:
30
+ # # => "be bigger than 2"
31
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
32
+ end
33
+
34
+ # rspec-mocks config goes here. You can use an alternate test double
35
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
36
+ config.mock_with :rspec do |mocks|
37
+ # Prevents you from mocking or stubbing a method that does not exist on
38
+ # a real object. This is generally recommended, and will default to
39
+ # `true` in RSpec 4.
40
+ mocks.verify_partial_doubles = true
41
+ end
42
+
43
+ # The settings below are suggested to provide a good initial experience
44
+ # with RSpec, but feel free to customize to your heart's content.
45
+ =begin
46
+ # These two settings work together to allow you to limit a spec run
47
+ # to individual examples or groups you care about by tagging them with
48
+ # `:focus` metadata. When nothing is tagged with `:focus`, all examples
49
+ # get run.
50
+ config.filter_run :focus
51
+ config.run_all_when_everything_filtered = true
52
+
53
+ # Allows RSpec to persist some state between runs in order to support
54
+ # the `--only-failures` and `--next-failure` CLI options. We recommend
55
+ # you configure your source control system to ignore this file.
56
+ config.example_status_persistence_file_path = "spec/examples.txt"
57
+
58
+ # Limits the available syntax to the non-monkey patched syntax that is
59
+ # recommended. For more details, see:
60
+ # - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
61
+ # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
62
+ # - http://myronmars.to/n/dev-blog/2014/05/notable-changes-in-rspec-3#new__config_option_to_disable_rspeccore_monkey_patching
63
+ config.disable_monkey_patching!
64
+
65
+ # Many RSpec users commonly either run the entire suite or an individual
66
+ # file, and it's useful to allow more verbose output when running an
67
+ # individual spec file.
68
+ if config.files_to_run.one?
69
+ # Use the documentation formatter for detailed output,
70
+ # unless a formatter has already been configured
71
+ # (e.g. via a command-line flag).
72
+ config.default_formatter = 'doc'
73
+ end
74
+
75
+ # Print the 10 slowest examples and example groups at the
76
+ # end of the spec run, to help surface which specs are running
77
+ # particularly slow.
78
+ config.profile_examples = 10
79
+
80
+ # Run specs in random order to surface order dependencies. If you find an
81
+ # order dependency and want to debug it, you can fix the order by providing
82
+ # the seed, which is printed after each run.
83
+ # --seed 1234
84
+ config.order = :random
85
+
86
+ # Seed global randomization in this process using the `--seed` CLI option.
87
+ # Setting this allows you to use `--seed` to deterministically reproduce
88
+ # test failures related to randomization by passing the same `--seed` value
89
+ # as the one that triggered the failure.
90
+ Kernel.srand config.seed
91
+ =end
92
+ end
@@ -0,0 +1,7 @@
1
+ const WebpackNotifierPlugin = require('webpack-notifier');
2
+ const config = require('./../webpack.config');
3
+
4
+ config.plugins.push(new WebpackNotifierPlugin());
5
+ config.devtool = 'eval-source-map';
6
+
7
+ module.exports = config;
@@ -0,0 +1,13 @@
1
+ var config = require('./dev.config');
2
+
3
+ var jsxLoader = config.module.loaders.filter(function(loader) { return loader.key == 'jsx' })[0]
4
+ jsxLoader.loaders.unshift('react-hot');
5
+
6
+ config.output.publicPath = 'http://localhost:8080/assets/'
7
+
8
+ config.entry.main.push(
9
+ 'webpack/hot/only-dev-server',
10
+ 'webpack-dev-server/client?http://localhost:8080'
11
+ )
12
+
13
+ module.exports = config;
@@ -0,0 +1,3 @@
1
+ const config = require('./../webpack.config');
2
+
3
+ module.exports = config;
@@ -0,0 +1,2 @@
1
+ var context = require.context('./../app/react', true, /\.spec\.jsx?$/);
2
+ context.keys().forEach(context);
@@ -0,0 +1,39 @@
1
+ var ExtractTextPlugin = require('extract-text-webpack-plugin');
2
+
3
+ module.exports = {
4
+ entry: {
5
+ main: ['./app/react/index.js']
6
+ },
7
+ output: {
8
+ path: __dirname + '/app/assets/javascripts',
9
+ filename: 'react_bundle.js'
10
+ },
11
+ module: {
12
+ loaders: [
13
+ {
14
+ key: 'jsx',
15
+ test: /\.jsx?$/,
16
+ exclude: /(node_modules)/,
17
+ loaders: ['babel']
18
+ },
19
+ {
20
+ key: 'scss',
21
+ test: /\.scss$/,
22
+ loader: ExtractTextPlugin.extract('css!sass')
23
+ },
24
+ {
25
+ key: 'css',
26
+ test: /\.css$/,
27
+ loader: ExtractTextPlugin.extract('css!sass')
28
+ }
29
+ ]
30
+ },
31
+ resolve: {
32
+ extensions: ['', '.js', '.jsx', '.js.jsx']
33
+ },
34
+ plugins: [
35
+ new ExtractTextPlugin('../stylesheets/react_bundle.css', {
36
+ allChunks: true
37
+ })
38
+ ]
39
+ };
metadata ADDED
@@ -0,0 +1,212 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rwr-view_helpers
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Oskar Cieslik
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-08-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: react_webpack_rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 0.1.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 0.1.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: rails
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: sprockets
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.10'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.10'
69
+ - !ruby/object:Gem::Dependency
70
+ name: yard
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: ''
84
+ email:
85
+ - react@netguru.co
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - ".babelrc"
91
+ - ".eslintrc"
92
+ - ".gitignore"
93
+ - ".travis.yml"
94
+ - CONTRIBUTING.md
95
+ - Gemfile
96
+ - LICENSE
97
+ - README.md
98
+ - Rakefile
99
+ - docs/rwr-view_helpers.md
100
+ - js/.eslintrc
101
+ - js/src/index.js
102
+ - js/src/version.js
103
+ - js/test/index.spec.js
104
+ - lib/assets/javascripts/rwr_view_helpers.js.erb
105
+ - lib/react_webpack_rails/rwr_view_helpers/image_paths.rb
106
+ - lib/react_webpack_rails/rwr_view_helpers/rails/engine.rb
107
+ - lib/react_webpack_rails/rwr_view_helpers/version.rb
108
+ - lib/rwr-view_helpers.rb
109
+ - package.json
110
+ - rwr-view_helpers.gemspec
111
+ - rwr-view_helpers/.gitignore
112
+ - rwr-view_helpers/Gemfile
113
+ - rwr-view_helpers/README.md
114
+ - rwr-view_helpers/Rakefile
115
+ - rwr-view_helpers/bin/console
116
+ - rwr-view_helpers/bin/setup
117
+ - rwr-view_helpers/lib/rwr/view_helpers.rb
118
+ - rwr-view_helpers/lib/rwr/view_helpers/version.rb
119
+ - rwr-view_helpers/rwr-view_helpers.gemspec
120
+ - spec/rails4_dummy_app/.babelrc
121
+ - spec/rails4_dummy_app/.gitignore
122
+ - spec/rails4_dummy_app/.nvmrc
123
+ - spec/rails4_dummy_app/Gemfile
124
+ - spec/rails4_dummy_app/Rakefile
125
+ - spec/rails4_dummy_app/app/assets/images/.keep
126
+ - spec/rails4_dummy_app/app/assets/images/spongebob.png
127
+ - spec/rails4_dummy_app/app/assets/images/spongebob@2x.png
128
+ - spec/rails4_dummy_app/app/assets/images/spongebob@3x.png
129
+ - spec/rails4_dummy_app/app/assets/javascripts/application.js
130
+ - spec/rails4_dummy_app/app/assets/stylesheets/application.css
131
+ - spec/rails4_dummy_app/app/controllers/application_controller.rb
132
+ - spec/rails4_dummy_app/app/controllers/concerns/.keep
133
+ - spec/rails4_dummy_app/app/controllers/pages_controller.rb
134
+ - spec/rails4_dummy_app/app/helpers/application_helper.rb
135
+ - spec/rails4_dummy_app/app/mailers/.keep
136
+ - spec/rails4_dummy_app/app/models/.keep
137
+ - spec/rails4_dummy_app/app/models/concerns/.keep
138
+ - spec/rails4_dummy_app/app/react/components/Spongebob.js
139
+ - spec/rails4_dummy_app/app/react/components/Spongebob.spec.js
140
+ - spec/rails4_dummy_app/app/react/index.js
141
+ - spec/rails4_dummy_app/app/react/test/helpers/browser.js
142
+ - spec/rails4_dummy_app/app/views/layouts/_react_hot_assets.html.erb
143
+ - spec/rails4_dummy_app/app/views/layouts/application.html.erb
144
+ - spec/rails4_dummy_app/app/views/pages/home.html.erb
145
+ - spec/rails4_dummy_app/bin/bundle
146
+ - spec/rails4_dummy_app/bin/rails
147
+ - spec/rails4_dummy_app/bin/rake
148
+ - spec/rails4_dummy_app/bin/setup
149
+ - spec/rails4_dummy_app/bin/spring
150
+ - spec/rails4_dummy_app/config.ru
151
+ - spec/rails4_dummy_app/config/application.rb
152
+ - spec/rails4_dummy_app/config/boot.rb
153
+ - spec/rails4_dummy_app/config/database.yml
154
+ - spec/rails4_dummy_app/config/environment.rb
155
+ - spec/rails4_dummy_app/config/environments/development.rb
156
+ - spec/rails4_dummy_app/config/environments/production.rb
157
+ - spec/rails4_dummy_app/config/environments/test.rb
158
+ - spec/rails4_dummy_app/config/initializers/assets.rb
159
+ - spec/rails4_dummy_app/config/initializers/backtrace_silencers.rb
160
+ - spec/rails4_dummy_app/config/initializers/cookies_serializer.rb
161
+ - spec/rails4_dummy_app/config/initializers/filter_parameter_logging.rb
162
+ - spec/rails4_dummy_app/config/initializers/inflections.rb
163
+ - spec/rails4_dummy_app/config/initializers/mime_types.rb
164
+ - spec/rails4_dummy_app/config/initializers/session_store.rb
165
+ - spec/rails4_dummy_app/config/initializers/wrap_parameters.rb
166
+ - spec/rails4_dummy_app/config/locales/en.yml
167
+ - spec/rails4_dummy_app/config/routes.rb
168
+ - spec/rails4_dummy_app/db/schema.rb
169
+ - spec/rails4_dummy_app/db/seeds.rb
170
+ - spec/rails4_dummy_app/forever/development.json
171
+ - spec/rails4_dummy_app/forever/production.json
172
+ - spec/rails4_dummy_app/karma.conf.js
173
+ - spec/rails4_dummy_app/lib/assets/.keep
174
+ - spec/rails4_dummy_app/lib/tasks/.keep
175
+ - spec/rails4_dummy_app/package.json
176
+ - spec/rails4_dummy_app/public/404.html
177
+ - spec/rails4_dummy_app/public/422.html
178
+ - spec/rails4_dummy_app/public/500.html
179
+ - spec/rails4_dummy_app/public/favicon.ico
180
+ - spec/rails4_dummy_app/public/robots.txt
181
+ - spec/rails4_dummy_app/spec/rails_helper.rb
182
+ - spec/rails4_dummy_app/spec/spec_helper.rb
183
+ - spec/rails4_dummy_app/webpack.config.js
184
+ - spec/rails4_dummy_app/webpack/dev.config.js
185
+ - spec/rails4_dummy_app/webpack/hot-dev.config.js
186
+ - spec/rails4_dummy_app/webpack/production.config.js
187
+ - spec/rails4_dummy_app/webpack/tests.config.js
188
+ homepage: https://github.com/netguru/rwr-view_helpers
189
+ licenses:
190
+ - MIT
191
+ metadata: {}
192
+ post_install_message:
193
+ rdoc_options: []
194
+ require_paths:
195
+ - lib
196
+ required_ruby_version: !ruby/object:Gem::Requirement
197
+ requirements:
198
+ - - ">="
199
+ - !ruby/object:Gem::Version
200
+ version: '0'
201
+ required_rubygems_version: !ruby/object:Gem::Requirement
202
+ requirements:
203
+ - - ">="
204
+ - !ruby/object:Gem::Version
205
+ version: '0'
206
+ requirements: []
207
+ rubyforge_project:
208
+ rubygems_version: 2.4.5.1
209
+ signing_key:
210
+ specification_version: 4
211
+ summary: ''
212
+ test_files: []