ember_script-rails-newest-version-thanks 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. checksums.yaml +7 -0
  2. data/.document +5 -0
  3. data/.gitignore +4 -0
  4. data/.travis.yml +7 -0
  5. data/Appraisals +8 -0
  6. data/Gemfile +2 -0
  7. data/LICENSE.txt +20 -0
  8. data/README.md +25 -0
  9. data/Rakefile +21 -0
  10. data/VERSION +1 -0
  11. data/ember_script-rails.gemspec +28 -0
  12. data/gemfiles/rails3.gemfile +7 -0
  13. data/gemfiles/rails3.gemfile.lock +124 -0
  14. data/gemfiles/rails4.gemfile +8 -0
  15. data/gemfiles/rails4.gemfile.lock +134 -0
  16. data/lib/ember_script-rails.rb +3 -0
  17. data/lib/ember_script/rails/engine.rb +18 -0
  18. data/lib/ember_script/rails/version.rb +5 -0
  19. data/spec/requests/assets_spec.rb +10 -0
  20. data/spec/spec_helper.rb +33 -0
  21. data/spec/support/dummy_app/.gitignore +15 -0
  22. data/spec/support/dummy_app/Gemfile +39 -0
  23. data/spec/support/dummy_app/Gemfile.lock +115 -0
  24. data/spec/support/dummy_app/Rakefile +7 -0
  25. data/spec/support/dummy_app/app/assets/images/rails.png +0 -0
  26. data/spec/support/dummy_app/app/assets/javascripts/application.js.em +1 -0
  27. data/spec/support/dummy_app/app/assets/stylesheets/application.css +13 -0
  28. data/spec/support/dummy_app/app/controllers/application_controller.rb +3 -0
  29. data/spec/support/dummy_app/app/controllers/home_controller.rb +4 -0
  30. data/spec/support/dummy_app/app/helpers/application_helper.rb +2 -0
  31. data/spec/support/dummy_app/app/views/home/index.html.erb +0 -0
  32. data/spec/support/dummy_app/app/views/layouts/application.html.erb +14 -0
  33. data/spec/support/dummy_app/config.ru +4 -0
  34. data/spec/support/dummy_app/config/application.rb +37 -0
  35. data/spec/support/dummy_app/config/boot.rb +6 -0
  36. data/spec/support/dummy_app/config/database.yml +25 -0
  37. data/spec/support/dummy_app/config/environment.rb +5 -0
  38. data/spec/support/dummy_app/config/environments/development.rb +27 -0
  39. data/spec/support/dummy_app/config/environments/test.rb +28 -0
  40. data/spec/support/dummy_app/config/initializers/backtrace_silencers.rb +7 -0
  41. data/spec/support/dummy_app/config/initializers/inflections.rb +15 -0
  42. data/spec/support/dummy_app/config/initializers/mime_types.rb +5 -0
  43. data/spec/support/dummy_app/config/initializers/secret_token.rb +9 -0
  44. data/spec/support/dummy_app/config/initializers/session_store.rb +8 -0
  45. data/spec/support/dummy_app/config/initializers/wrap_parameters.rb +14 -0
  46. data/spec/support/dummy_app/config/locales/en.yml +5 -0
  47. data/spec/support/dummy_app/config/routes.rb +3 -0
  48. data/spec/support/dummy_app/lib/assets/.gitkeep +0 -0
  49. data/spec/support/dummy_app/lib/tasks/.gitkeep +0 -0
  50. data/spec/support/dummy_app/log/.gitkeep +0 -0
  51. data/spec/support/dummy_app/public/favicon.ico +0 -0
  52. data/spec/support/dummy_app/script/rails +6 -0
  53. metadata +212 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 48931aea8863d8220f20982020df13a6d4a9b02b
4
+ data.tar.gz: 21687a2e7c30a9e1ca6bc696f1bc13d750427903
5
+ SHA512:
6
+ metadata.gz: 776e87bbca3317f590819f779d84b793fa55c8986aee26b36bcb2aa80b9512957f29dbfd819f41413539a5c4a356a2b277e033151ab88ac03c60163dc5f1bdda
7
+ data.tar.gz: cc1b915b6215ec9200817f19b077286cd25f39c86b630dc481b73d0b82dee5df63459eb7140ba0dc75b5919b6b4f9b606a67bb1bc0cab5991bf60290be84dc67
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/.gitignore ADDED
@@ -0,0 +1,4 @@
1
+ .bundle
2
+ .DS_Store
3
+ Gemfile.lock
4
+ *.gem
data/.travis.yml ADDED
@@ -0,0 +1,7 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
4
+ before_install:
5
+ - gem install bundler --version '>= 1.2.2'
6
+ before_script: "bundle exec rake appraisal:install"
7
+ script: "bundle exec rake appraisal spec"
data/Appraisals ADDED
@@ -0,0 +1,8 @@
1
+ appraise "rails3" do
2
+ gem 'rails', '~> 3.1'
3
+ end
4
+
5
+ appraise "rails4" do
6
+ gem 'rails', :git => 'https://github.com/rails/rails.git'
7
+ gem 'activerecord-deprecated_finders', :git => 'https://github.com/rails/activerecord-deprecated_finders.git'
8
+ end
data/Gemfile ADDED
@@ -0,0 +1,2 @@
1
+ source :rubygems
2
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2012 Gordon L. Hempton
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,25 @@
1
+ # EmberScript-Rails
2
+
3
+ Provides integration with Rail's asset pipeline. Any javascript files with the extension `.em` will automatically be compiled by [EmberScript](https://github.com/ghempton/ember-script).
4
+
5
+ ## Installation
6
+
7
+ ```
8
+ gem 'ember_script-rails'
9
+ ```
10
+
11
+ ## Contributing to ember-script-rails
12
+
13
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
14
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
15
+ * Fork the project.
16
+ * Start a feature/bugfix branch.
17
+ * Commit and push until you are happy with your contribution.
18
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
19
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
20
+
21
+ ## Copyright
22
+
23
+ Copyright (c) 2012 Gordon L. Hempton. See LICENSE.txt for
24
+ further details.
25
+
data/Rakefile ADDED
@@ -0,0 +1,21 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ require 'rspec/core/rake_task'
6
+ begin
7
+ Bundler.setup(:default, :development)
8
+ rescue Bundler::BundlerError => e
9
+ $stderr.puts e.message
10
+ $stderr.puts "Run `bundle install` to install missing gems"
11
+ exit e.status_code
12
+ end
13
+ require 'rake'
14
+
15
+ RSpec::Core::RakeTask.new do |t|
16
+ t.pattern = "spec/**/*_spec.rb"
17
+ t.rspec_opts = '--color --format progress'
18
+ t.verbose = false
19
+ end
20
+
21
+ require 'appraisal'
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.1
@@ -0,0 +1,28 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require 'date'
3
+ require File.expand_path("../lib/ember_script/rails/version", __FILE__)
4
+
5
+ Gem::Specification.new do |gem|
6
+ gem.name = "ember_script-rails-newest-version-thanks"
7
+ gem.version = EmberScript::Rails::VERSION
8
+ gem.authors = ["Gordon L. Hempton"]
9
+ gem.email = ["ghempton@gmail.com"]
10
+ gem.date = Date.today
11
+ gem.description = "Asset pipeline support for EmberScript files. Uses a .em file extension."
12
+ gem.summary = "EmberScript Rails integration"
13
+ gem.homepage = "http://github.com/ghempton/ember-script-rails"
14
+
15
+ gem.files = `git ls-files`.split($/)
16
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
17
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
+ gem.require_paths = ["lib"]
19
+
20
+ gem.add_dependency "ember_script", ">= 0.0.8"
21
+ gem.add_dependency "rails"
22
+
23
+ gem.add_development_dependency "bundler", [">= 1.2.2"]
24
+ gem.add_development_dependency "appraisal"
25
+ gem.add_development_dependency "rspec"
26
+ gem.add_development_dependency "rspec-rails"
27
+ end
28
+
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source :rubygems
4
+
5
+ gem "rails", "~> 3.1"
6
+
7
+ gemspec :path=>"../"
@@ -0,0 +1,124 @@
1
+ PATH
2
+ remote: /Users/ghempton/projects/oss/ember-script-rails
3
+ specs:
4
+ ember_script-rails (0.0.3)
5
+ ember_script (>= 0.0.4)
6
+ rails
7
+
8
+ GEM
9
+ remote: http://rubygems.org/
10
+ specs:
11
+ actionmailer (3.2.9)
12
+ actionpack (= 3.2.9)
13
+ mail (~> 2.4.4)
14
+ actionpack (3.2.9)
15
+ activemodel (= 3.2.9)
16
+ activesupport (= 3.2.9)
17
+ builder (~> 3.0.0)
18
+ erubis (~> 2.7.0)
19
+ journey (~> 1.0.4)
20
+ rack (~> 1.4.0)
21
+ rack-cache (~> 1.2)
22
+ rack-test (~> 0.6.1)
23
+ sprockets (~> 2.2.1)
24
+ activemodel (3.2.9)
25
+ activesupport (= 3.2.9)
26
+ builder (~> 3.0.0)
27
+ activerecord (3.2.9)
28
+ activemodel (= 3.2.9)
29
+ activesupport (= 3.2.9)
30
+ arel (~> 3.0.2)
31
+ tzinfo (~> 0.3.29)
32
+ activeresource (3.2.9)
33
+ activemodel (= 3.2.9)
34
+ activesupport (= 3.2.9)
35
+ activesupport (3.2.9)
36
+ i18n (~> 0.6)
37
+ multi_json (~> 1.0)
38
+ appraisal (0.5.1)
39
+ bundler
40
+ rake
41
+ arel (3.0.2)
42
+ builder (3.0.4)
43
+ diff-lcs (1.1.3)
44
+ ember_script (0.0.4)
45
+ ember_script-source (>= 0.0.2)
46
+ execjs
47
+ tilt
48
+ ember_script-source (0.0.2)
49
+ erubis (2.7.0)
50
+ execjs (1.4.0)
51
+ multi_json (~> 1.0)
52
+ hike (1.2.1)
53
+ i18n (0.6.1)
54
+ journey (1.0.4)
55
+ json (1.7.5)
56
+ mail (2.4.4)
57
+ i18n (>= 0.4.0)
58
+ mime-types (~> 1.16)
59
+ treetop (~> 1.4.8)
60
+ mime-types (1.19)
61
+ multi_json (1.5.0)
62
+ polyglot (0.3.3)
63
+ rack (1.4.1)
64
+ rack-cache (1.2)
65
+ rack (>= 0.4)
66
+ rack-ssl (1.3.2)
67
+ rack
68
+ rack-test (0.6.2)
69
+ rack (>= 1.0)
70
+ rails (3.2.9)
71
+ actionmailer (= 3.2.9)
72
+ actionpack (= 3.2.9)
73
+ activerecord (= 3.2.9)
74
+ activeresource (= 3.2.9)
75
+ activesupport (= 3.2.9)
76
+ bundler (~> 1.0)
77
+ railties (= 3.2.9)
78
+ railties (3.2.9)
79
+ actionpack (= 3.2.9)
80
+ activesupport (= 3.2.9)
81
+ rack-ssl (~> 1.3.2)
82
+ rake (>= 0.8.7)
83
+ rdoc (~> 3.4)
84
+ thor (>= 0.14.6, < 2.0)
85
+ rake (10.0.3)
86
+ rdoc (3.12)
87
+ json (~> 1.4)
88
+ rspec (2.12.0)
89
+ rspec-core (~> 2.12.0)
90
+ rspec-expectations (~> 2.12.0)
91
+ rspec-mocks (~> 2.12.0)
92
+ rspec-core (2.12.1)
93
+ rspec-expectations (2.12.0)
94
+ diff-lcs (~> 1.1.3)
95
+ rspec-mocks (2.12.0)
96
+ rspec-rails (2.12.0)
97
+ actionpack (>= 3.0)
98
+ activesupport (>= 3.0)
99
+ railties (>= 3.0)
100
+ rspec-core (~> 2.12.0)
101
+ rspec-expectations (~> 2.12.0)
102
+ rspec-mocks (~> 2.12.0)
103
+ sprockets (2.2.2)
104
+ hike (~> 1.2)
105
+ multi_json (~> 1.0)
106
+ rack (~> 1.0)
107
+ tilt (~> 1.1, != 1.3.0)
108
+ thor (0.16.0)
109
+ tilt (1.3.3)
110
+ treetop (1.4.12)
111
+ polyglot
112
+ polyglot (>= 0.3.1)
113
+ tzinfo (0.3.35)
114
+
115
+ PLATFORMS
116
+ ruby
117
+
118
+ DEPENDENCIES
119
+ appraisal
120
+ bundler (>= 1.2.2)
121
+ ember_script-rails!
122
+ rails (~> 3.1)
123
+ rspec
124
+ rspec-rails
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source :rubygems
4
+
5
+ gem "rails", :git=>"https://github.com/rails/rails.git"
6
+ gem "activerecord-deprecated_finders", :git=>"https://github.com/rails/activerecord-deprecated_finders.git"
7
+
8
+ gemspec :path=>"../"
@@ -0,0 +1,134 @@
1
+ GIT
2
+ remote: https://github.com/rails/activerecord-deprecated_finders.git
3
+ revision: 2c4ebb2e79095efdd189c08861e3e7f694c52215
4
+ specs:
5
+ activerecord-deprecated_finders (0.0.1)
6
+
7
+ GIT
8
+ remote: https://github.com/rails/rails.git
9
+ revision: 899cae25ecd0f5b187cfc1a56c55ed2936885c21
10
+ specs:
11
+ actionmailer (4.0.0.beta)
12
+ actionpack (= 4.0.0.beta)
13
+ mail (~> 2.5.3)
14
+ actionpack (4.0.0.beta)
15
+ activesupport (= 4.0.0.beta)
16
+ builder (~> 3.1.0)
17
+ erubis (~> 2.7.0)
18
+ rack (~> 1.4.1)
19
+ rack-test (~> 0.6.1)
20
+ activemodel (4.0.0.beta)
21
+ activesupport (= 4.0.0.beta)
22
+ builder (~> 3.1.0)
23
+ activerecord (4.0.0.beta)
24
+ activemodel (= 4.0.0.beta)
25
+ activerecord-deprecated_finders (= 0.0.1)
26
+ activesupport (= 4.0.0.beta)
27
+ arel (~> 3.0.2)
28
+ activesupport (4.0.0.beta)
29
+ i18n (~> 0.6)
30
+ minitest (~> 4.1)
31
+ multi_json (~> 1.3)
32
+ thread_safe (~> 0.1)
33
+ tzinfo (~> 0.3.33)
34
+ rails (4.0.0.beta)
35
+ actionmailer (= 4.0.0.beta)
36
+ actionpack (= 4.0.0.beta)
37
+ activerecord (= 4.0.0.beta)
38
+ activesupport (= 4.0.0.beta)
39
+ bundler (>= 1.2.2, < 2.0)
40
+ railties (= 4.0.0.beta)
41
+ sprockets-rails (~> 2.0.0.rc1)
42
+ railties (4.0.0.beta)
43
+ actionpack (= 4.0.0.beta)
44
+ activesupport (= 4.0.0.beta)
45
+ rake (>= 0.8.7)
46
+ rdoc (~> 3.4)
47
+ thor (>= 0.15.4, < 2.0)
48
+
49
+ PATH
50
+ remote: /Users/ghempton/projects/oss/ember-script-rails
51
+ specs:
52
+ ember_script-rails (0.0.3)
53
+ ember_script (>= 0.0.4)
54
+ rails
55
+
56
+ GEM
57
+ remote: http://rubygems.org/
58
+ specs:
59
+ appraisal (0.5.1)
60
+ bundler
61
+ rake
62
+ arel (3.0.2)
63
+ atomic (1.0.1)
64
+ builder (3.1.4)
65
+ diff-lcs (1.1.3)
66
+ ember_script (0.0.4)
67
+ ember_script-source (>= 0.0.2)
68
+ execjs
69
+ tilt
70
+ ember_script-source (0.0.2)
71
+ erubis (2.7.0)
72
+ execjs (1.4.0)
73
+ multi_json (~> 1.0)
74
+ hike (1.2.1)
75
+ i18n (0.6.1)
76
+ json (1.7.5)
77
+ mail (2.5.3)
78
+ i18n (>= 0.4.0)
79
+ mime-types (~> 1.16)
80
+ treetop (~> 1.4.8)
81
+ mime-types (1.19)
82
+ minitest (4.3.3)
83
+ multi_json (1.5.0)
84
+ polyglot (0.3.3)
85
+ rack (1.4.1)
86
+ rack-test (0.6.2)
87
+ rack (>= 1.0)
88
+ rake (10.0.3)
89
+ rdoc (3.12)
90
+ json (~> 1.4)
91
+ rspec (2.12.0)
92
+ rspec-core (~> 2.12.0)
93
+ rspec-expectations (~> 2.12.0)
94
+ rspec-mocks (~> 2.12.0)
95
+ rspec-core (2.12.1)
96
+ rspec-expectations (2.12.0)
97
+ diff-lcs (~> 1.1.3)
98
+ rspec-mocks (2.12.0)
99
+ rspec-rails (2.12.0)
100
+ actionpack (>= 3.0)
101
+ activesupport (>= 3.0)
102
+ railties (>= 3.0)
103
+ rspec-core (~> 2.12.0)
104
+ rspec-expectations (~> 2.12.0)
105
+ rspec-mocks (~> 2.12.0)
106
+ sprockets (2.8.2)
107
+ hike (~> 1.2)
108
+ multi_json (~> 1.0)
109
+ rack (~> 1.0)
110
+ tilt (~> 1.1, != 1.3.0)
111
+ sprockets-rails (2.0.0.rc1)
112
+ actionpack (>= 3.0)
113
+ activesupport (>= 3.0)
114
+ sprockets (~> 2.8)
115
+ thor (0.16.0)
116
+ thread_safe (0.1.0)
117
+ atomic
118
+ tilt (1.3.3)
119
+ treetop (1.4.12)
120
+ polyglot
121
+ polyglot (>= 0.3.1)
122
+ tzinfo (0.3.35)
123
+
124
+ PLATFORMS
125
+ ruby
126
+
127
+ DEPENDENCIES
128
+ activerecord-deprecated_finders!
129
+ appraisal
130
+ bundler (>= 1.2.2)
131
+ ember_script-rails!
132
+ rails!
133
+ rspec
134
+ rspec-rails
@@ -0,0 +1,3 @@
1
+ require 'ember_script'
2
+ require 'ember_script/rails/version'
3
+ require 'ember_script/rails/engine'
@@ -0,0 +1,18 @@
1
+ module EmberScript
2
+ module Rails
3
+ class Engine < ::Rails::Engine
4
+ config.ember_script = ActiveSupport::OrderedOptions.new
5
+
6
+ initializer "ember_script.setup", :after => :'load_environment_config', :group => :all do |app|
7
+ if app.config.assets.enabled
8
+ sprockets = if ::Rails::VERSION::MAJOR == 4
9
+ Sprockets.respond_to?('register_engine') ? Sprockets : app.assets
10
+ else
11
+ app.assets
12
+ end
13
+ sprockets.register_engine '.em', EmberScript::EmberScriptTemplate
14
+ end
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,5 @@
1
+ module EmberScript
2
+ module Rails
3
+ VERSION = "0.0.8"
4
+ end
5
+ end
@@ -0,0 +1,10 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'assets' do
4
+
5
+ it 'compiles EmberScript assets' do
6
+ get '/assets/application.js'
7
+ response.body.should =~ /Ember\.Object\.extend/
8
+ end
9
+
10
+ end
@@ -0,0 +1,33 @@
1
+ ENV["RAILS_ENV"] = "test"
2
+
3
+ require 'bundler'
4
+ Bundler.require(:default, :test)
5
+
6
+ require 'ember_script-rails'
7
+
8
+ PROJECT_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..')).freeze
9
+ $LOAD_PATH << File.join(PROJECT_ROOT, 'lib')
10
+
11
+ require File.expand_path("../support/dummy_app/config/environment.rb", __FILE__)
12
+
13
+
14
+ # require 'rspec/rails'
15
+
16
+ require 'rspec/core'
17
+
18
+ RSpec::configure do |c|
19
+ c.backtrace_clean_patterns << /vendor\//
20
+ c.backtrace_clean_patterns << /lib\/rspec\/rails/
21
+ end
22
+
23
+ # Extensions break w/ rails edge
24
+ #require 'rspec/rails/extensions'
25
+ require 'rspec/rails/view_rendering'
26
+ require 'rspec/rails/adapters'
27
+ require 'rspec/rails/matchers'
28
+ require 'rspec/rails/fixture_support'
29
+ require 'rspec/rails/mocks'
30
+ require 'rspec/rails/module_inclusion'
31
+ require 'rspec/rails/example'
32
+ require 'rspec/rails/vendor/capybara'
33
+ require 'rspec/rails/vendor/webrat'
@@ -0,0 +1,15 @@
1
+ # See http://help.github.com/ignore-files/ for more about ignoring files.
2
+ #
3
+ # If you find yourself ignoring temporary files generated by your text editor
4
+ # or operating system, you probably want to add a global ignore instead:
5
+ # git config --global core.excludesfile ~/.gitignore_global
6
+
7
+ # Ignore bundler config
8
+ /.bundle
9
+
10
+ # Ignore the default SQLite database.
11
+ /db/*.sqlite3
12
+
13
+ # Ignore all logfiles and tempfiles.
14
+ /log/*.log
15
+ /tmp
@@ -0,0 +1,39 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'rails', '3.2.9'
4
+
5
+ # Bundle edge Rails instead:
6
+ # gem 'rails', :git => 'git://github.com/rails/rails.git'
7
+
8
+ gem 'sqlite3'
9
+
10
+ gem 'ember_script'
11
+
12
+ # Gems used only for assets and not required
13
+ # in production environments by default.
14
+ group :assets do
15
+ gem 'sass-rails', '~> 3.2.3'
16
+ gem 'coffee-rails', '~> 3.2.1'
17
+
18
+ # See https://github.com/sstephenson/execjs#readme for more supported runtimes
19
+ # gem 'therubyracer', :platforms => :ruby
20
+
21
+ gem 'uglifier', '>= 1.0.3'
22
+ end
23
+
24
+ gem 'jquery-rails'
25
+
26
+ # To use ActiveModel has_secure_password
27
+ # gem 'bcrypt-ruby', '~> 3.0.0'
28
+
29
+ # To use Jbuilder templates for JSON
30
+ # gem 'jbuilder'
31
+
32
+ # Use unicorn as the app server
33
+ # gem 'unicorn'
34
+
35
+ # Deploy with Capistrano
36
+ # gem 'capistrano'
37
+
38
+ # To use debugger
39
+ # gem 'debugger'
@@ -0,0 +1,115 @@
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ actionmailer (3.2.9)
5
+ actionpack (= 3.2.9)
6
+ mail (~> 2.4.4)
7
+ actionpack (3.2.9)
8
+ activemodel (= 3.2.9)
9
+ activesupport (= 3.2.9)
10
+ builder (~> 3.0.0)
11
+ erubis (~> 2.7.0)
12
+ journey (~> 1.0.4)
13
+ rack (~> 1.4.0)
14
+ rack-cache (~> 1.2)
15
+ rack-test (~> 0.6.1)
16
+ sprockets (~> 2.2.1)
17
+ activemodel (3.2.9)
18
+ activesupport (= 3.2.9)
19
+ builder (~> 3.0.0)
20
+ activerecord (3.2.9)
21
+ activemodel (= 3.2.9)
22
+ activesupport (= 3.2.9)
23
+ arel (~> 3.0.2)
24
+ tzinfo (~> 0.3.29)
25
+ activeresource (3.2.9)
26
+ activemodel (= 3.2.9)
27
+ activesupport (= 3.2.9)
28
+ activesupport (3.2.9)
29
+ i18n (~> 0.6)
30
+ multi_json (~> 1.0)
31
+ arel (3.0.2)
32
+ builder (3.0.4)
33
+ coffee-rails (3.2.2)
34
+ coffee-script (>= 2.2.0)
35
+ railties (~> 3.2.0)
36
+ coffee-script (2.2.0)
37
+ coffee-script-source
38
+ execjs
39
+ coffee-script-source (1.4.0)
40
+ ember_script (0.0.3)
41
+ tilt
42
+ erubis (2.7.0)
43
+ execjs (1.4.0)
44
+ multi_json (~> 1.0)
45
+ hike (1.2.1)
46
+ i18n (0.6.1)
47
+ journey (1.0.4)
48
+ jquery-rails (2.1.4)
49
+ railties (>= 3.0, < 5.0)
50
+ thor (>= 0.14, < 2.0)
51
+ json (1.7.5)
52
+ mail (2.4.4)
53
+ i18n (>= 0.4.0)
54
+ mime-types (~> 1.16)
55
+ treetop (~> 1.4.8)
56
+ mime-types (1.19)
57
+ multi_json (1.5.0)
58
+ polyglot (0.3.3)
59
+ rack (1.4.1)
60
+ rack-cache (1.2)
61
+ rack (>= 0.4)
62
+ rack-ssl (1.3.2)
63
+ rack
64
+ rack-test (0.6.2)
65
+ rack (>= 1.0)
66
+ rails (3.2.9)
67
+ actionmailer (= 3.2.9)
68
+ actionpack (= 3.2.9)
69
+ activerecord (= 3.2.9)
70
+ activeresource (= 3.2.9)
71
+ activesupport (= 3.2.9)
72
+ bundler (~> 1.0)
73
+ railties (= 3.2.9)
74
+ railties (3.2.9)
75
+ actionpack (= 3.2.9)
76
+ activesupport (= 3.2.9)
77
+ rack-ssl (~> 1.3.2)
78
+ rake (>= 0.8.7)
79
+ rdoc (~> 3.4)
80
+ thor (>= 0.14.6, < 2.0)
81
+ rake (10.0.3)
82
+ rdoc (3.12)
83
+ json (~> 1.4)
84
+ sass (3.2.4)
85
+ sass-rails (3.2.5)
86
+ railties (~> 3.2.0)
87
+ sass (>= 3.1.10)
88
+ tilt (~> 1.3)
89
+ sprockets (2.2.2)
90
+ hike (~> 1.2)
91
+ multi_json (~> 1.0)
92
+ rack (~> 1.0)
93
+ tilt (~> 1.1, != 1.3.0)
94
+ sqlite3 (1.3.6)
95
+ thor (0.16.0)
96
+ tilt (1.3.3)
97
+ treetop (1.4.12)
98
+ polyglot
99
+ polyglot (>= 0.3.1)
100
+ tzinfo (0.3.35)
101
+ uglifier (1.3.0)
102
+ execjs (>= 0.3.0)
103
+ multi_json (~> 1.0, >= 1.0.2)
104
+
105
+ PLATFORMS
106
+ ruby
107
+
108
+ DEPENDENCIES
109
+ coffee-rails (~> 3.2.1)
110
+ ember_script
111
+ jquery-rails
112
+ rails (= 3.2.9)
113
+ sass-rails (~> 3.2.3)
114
+ sqlite3
115
+ uglifier (>= 1.0.3)
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env rake
2
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
3
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
4
+
5
+ require File.expand_path('../config/application', __FILE__)
6
+
7
+ DummyApp::Application.load_tasks
@@ -0,0 +1,13 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the top of the
9
+ * compiled file, but it's generally better to create a new file per style scope.
10
+ *
11
+ *= require_self
12
+ *= require_tree .
13
+ */
@@ -0,0 +1,3 @@
1
+ class ApplicationController < ActionController::Base
2
+ protect_from_forgery
3
+ end
@@ -0,0 +1,4 @@
1
+ class HomeController < ApplicationController
2
+ def index
3
+ end
4
+ end
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Dummy</title>
5
+ <%= stylesheet_link_tag "application" %>
6
+ <%= javascript_include_tag "application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run DummyApp::Application
@@ -0,0 +1,37 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ require "active_model/railtie"
4
+ require "action_controller/railtie"
5
+ require 'sprockets/railtie'
6
+
7
+ if defined?(Bundler)
8
+ # If you precompile assets before deploying to production, use this line
9
+ Bundler.require(*Rails.groups(:assets => %w(development test)))
10
+ # If you want your assets lazily compiled in production, use this line
11
+ # Bundler.require(:default, :assets, Rails.env)
12
+ end
13
+
14
+ if Rails.env.development?
15
+ PROJECT_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '../../../..')).freeze
16
+ $LOAD_PATH << File.join(PROJECT_ROOT, 'lib')
17
+ require 'ember_script-rails'
18
+ end
19
+
20
+ module DummyApp
21
+ class Application < Rails::Application
22
+ # Configure the default encoding used in templates for Ruby 1.9.
23
+ config.encoding = "utf-8"
24
+
25
+ # Configure sensitive parameters which will be filtered from the log file.
26
+ config.filter_parameters += [:password]
27
+
28
+ # Enable escaping HTML in JSON.
29
+ config.active_support.escape_html_entities_in_json = true
30
+
31
+ # Enable the asset pipeline
32
+ config.assets.enabled = true
33
+
34
+ # Version of your assets, change this if you want to expire all your assets
35
+ config.assets.version = '1.0'
36
+ end
37
+ end
@@ -0,0 +1,6 @@
1
+ require 'rubygems'
2
+
3
+ # Set up gems listed in the Gemfile.
4
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
5
+
6
+ require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
@@ -0,0 +1,25 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ #
4
+ # Ensure the SQLite 3 gem is defined in your Gemfile
5
+ # gem 'sqlite3'
6
+ development:
7
+ adapter: sqlite3
8
+ database: db/development.sqlite3
9
+ pool: 5
10
+ timeout: 5000
11
+
12
+ # Warning: The database defined as "test" will be erased and
13
+ # re-generated from your development database when you run "rake".
14
+ # Do not set this db to the same as development or production.
15
+ test:
16
+ adapter: sqlite3
17
+ database: db/test.sqlite3
18
+ pool: 5
19
+ timeout: 5000
20
+
21
+ production:
22
+ adapter: sqlite3
23
+ database: db/production.sqlite3
24
+ pool: 5
25
+ timeout: 5000
@@ -0,0 +1,5 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ DummyApp::Application.initialize!
@@ -0,0 +1,27 @@
1
+ DummyApp::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Print deprecation notices to the Rails logger
17
+ config.active_support.deprecation = :log
18
+
19
+ # Only use best-standards-support built into browsers
20
+ config.action_dispatch.best_standards_support = :builtin
21
+
22
+ # Do not compress assets
23
+ config.assets.compress = false
24
+
25
+ # Expands the lines which load the assets
26
+ config.assets.debug = true
27
+ end
@@ -0,0 +1,28 @@
1
+ DummyApp::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_assets = true
12
+ config.static_cache_control = "public, max-age=3600"
13
+
14
+ # Show full error reports and disable caching
15
+ config.consider_all_requests_local = true
16
+ config.action_controller.perform_caching = false
17
+
18
+ # Raise exceptions instead of rendering exception templates
19
+ config.action_dispatch.show_exceptions = false
20
+
21
+ # Disable request forgery protection in test environment
22
+ config.action_controller.allow_forgery_protection = false
23
+
24
+ # Print deprecation notices to the stderr
25
+ config.active_support.deprecation = :stderr
26
+
27
+ config.eager_load = false
28
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,15 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
11
+ #
12
+ # These inflection rules are supported but not enabled by default:
13
+ # ActiveSupport::Inflector.inflections do |inflect|
14
+ # inflect.acronym 'RESTful'
15
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,9 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ DummyApp::Application.config.secret_token = '1f186a67e9c2eb4b363ff710de1e55269972364290d4bdfd72b58118d89bede3eb4fbeff7c80bc955034755a18ea77c8712e712a4282bc7a53fc70398e579fdf'
8
+
9
+ DummyApp::Application.config.secret_key_base = DummyApp::Application.config.secret_token
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ DummyApp::Application.config.session_store :cookie_store, key: '_dummy_app_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # DummyApp::Application.config.session_store :active_record_store
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,3 @@
1
+ DummyApp::Application.routes.draw do
2
+ get '/' => 'home#index'
3
+ end
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
metadata ADDED
@@ -0,0 +1,212 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ember_script-rails-newest-version-thanks
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.8
5
+ platform: ruby
6
+ authors:
7
+ - Gordon L. Hempton
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-05-30 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: ember_script
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
19
+ version: 0.0.8
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: 0.0.8
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: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: 1.2.2
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: 1.2.2
55
+ - !ruby/object:Gem::Dependency
56
+ name: appraisal
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rspec
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
+ - !ruby/object:Gem::Dependency
84
+ name: rspec-rails
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - '>='
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - '>='
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ description: Asset pipeline support for EmberScript files. Uses a .em file extension.
98
+ email:
99
+ - ghempton@gmail.com
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - .document
105
+ - .gitignore
106
+ - .travis.yml
107
+ - Appraisals
108
+ - Gemfile
109
+ - LICENSE.txt
110
+ - README.md
111
+ - Rakefile
112
+ - VERSION
113
+ - ember_script-rails.gemspec
114
+ - gemfiles/rails3.gemfile
115
+ - gemfiles/rails3.gemfile.lock
116
+ - gemfiles/rails4.gemfile
117
+ - gemfiles/rails4.gemfile.lock
118
+ - lib/ember_script-rails.rb
119
+ - lib/ember_script/rails/engine.rb
120
+ - lib/ember_script/rails/version.rb
121
+ - spec/requests/assets_spec.rb
122
+ - spec/spec_helper.rb
123
+ - spec/support/dummy_app/.gitignore
124
+ - spec/support/dummy_app/Gemfile
125
+ - spec/support/dummy_app/Gemfile.lock
126
+ - spec/support/dummy_app/Rakefile
127
+ - spec/support/dummy_app/app/assets/images/rails.png
128
+ - spec/support/dummy_app/app/assets/javascripts/application.js.em
129
+ - spec/support/dummy_app/app/assets/stylesheets/application.css
130
+ - spec/support/dummy_app/app/controllers/application_controller.rb
131
+ - spec/support/dummy_app/app/controllers/home_controller.rb
132
+ - spec/support/dummy_app/app/helpers/application_helper.rb
133
+ - spec/support/dummy_app/app/views/home/index.html.erb
134
+ - spec/support/dummy_app/app/views/layouts/application.html.erb
135
+ - spec/support/dummy_app/config.ru
136
+ - spec/support/dummy_app/config/application.rb
137
+ - spec/support/dummy_app/config/boot.rb
138
+ - spec/support/dummy_app/config/database.yml
139
+ - spec/support/dummy_app/config/environment.rb
140
+ - spec/support/dummy_app/config/environments/development.rb
141
+ - spec/support/dummy_app/config/environments/test.rb
142
+ - spec/support/dummy_app/config/initializers/backtrace_silencers.rb
143
+ - spec/support/dummy_app/config/initializers/inflections.rb
144
+ - spec/support/dummy_app/config/initializers/mime_types.rb
145
+ - spec/support/dummy_app/config/initializers/secret_token.rb
146
+ - spec/support/dummy_app/config/initializers/session_store.rb
147
+ - spec/support/dummy_app/config/initializers/wrap_parameters.rb
148
+ - spec/support/dummy_app/config/locales/en.yml
149
+ - spec/support/dummy_app/config/routes.rb
150
+ - spec/support/dummy_app/lib/assets/.gitkeep
151
+ - spec/support/dummy_app/lib/tasks/.gitkeep
152
+ - spec/support/dummy_app/log/.gitkeep
153
+ - spec/support/dummy_app/public/favicon.ico
154
+ - spec/support/dummy_app/script/rails
155
+ homepage: http://github.com/ghempton/ember-script-rails
156
+ licenses: []
157
+ metadata: {}
158
+ post_install_message:
159
+ rdoc_options: []
160
+ require_paths:
161
+ - lib
162
+ required_ruby_version: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - '>='
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ required_rubygems_version: !ruby/object:Gem::Requirement
168
+ requirements:
169
+ - - '>='
170
+ - !ruby/object:Gem::Version
171
+ version: '0'
172
+ requirements: []
173
+ rubyforge_project:
174
+ rubygems_version: 2.0.3
175
+ signing_key:
176
+ specification_version: 4
177
+ summary: EmberScript Rails integration
178
+ test_files:
179
+ - spec/requests/assets_spec.rb
180
+ - spec/spec_helper.rb
181
+ - spec/support/dummy_app/.gitignore
182
+ - spec/support/dummy_app/Gemfile
183
+ - spec/support/dummy_app/Gemfile.lock
184
+ - spec/support/dummy_app/Rakefile
185
+ - spec/support/dummy_app/app/assets/images/rails.png
186
+ - spec/support/dummy_app/app/assets/javascripts/application.js.em
187
+ - spec/support/dummy_app/app/assets/stylesheets/application.css
188
+ - spec/support/dummy_app/app/controllers/application_controller.rb
189
+ - spec/support/dummy_app/app/controllers/home_controller.rb
190
+ - spec/support/dummy_app/app/helpers/application_helper.rb
191
+ - spec/support/dummy_app/app/views/home/index.html.erb
192
+ - spec/support/dummy_app/app/views/layouts/application.html.erb
193
+ - spec/support/dummy_app/config.ru
194
+ - spec/support/dummy_app/config/application.rb
195
+ - spec/support/dummy_app/config/boot.rb
196
+ - spec/support/dummy_app/config/database.yml
197
+ - spec/support/dummy_app/config/environment.rb
198
+ - spec/support/dummy_app/config/environments/development.rb
199
+ - spec/support/dummy_app/config/environments/test.rb
200
+ - spec/support/dummy_app/config/initializers/backtrace_silencers.rb
201
+ - spec/support/dummy_app/config/initializers/inflections.rb
202
+ - spec/support/dummy_app/config/initializers/mime_types.rb
203
+ - spec/support/dummy_app/config/initializers/secret_token.rb
204
+ - spec/support/dummy_app/config/initializers/session_store.rb
205
+ - spec/support/dummy_app/config/initializers/wrap_parameters.rb
206
+ - spec/support/dummy_app/config/locales/en.yml
207
+ - spec/support/dummy_app/config/routes.rb
208
+ - spec/support/dummy_app/lib/assets/.gitkeep
209
+ - spec/support/dummy_app/lib/tasks/.gitkeep
210
+ - spec/support/dummy_app/log/.gitkeep
211
+ - spec/support/dummy_app/public/favicon.ico
212
+ - spec/support/dummy_app/script/rails