sprockets-traceur 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/.gitignore +22 -0
- data/.rspec +1 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/Gemfile +6 -0
- data/Guardfile +5 -0
- data/LICENSE.txt +22 -0
- data/README.md +75 -0
- data/Rakefile +2 -0
- data/lib/sprockets-traceur.rb +1 -0
- data/lib/sprockets/traceur.rb +46 -0
- data/lib/sprockets/traceur/version.rb +5 -0
- data/spec/rails4/Gemfile +6 -0
- data/spec/rails4/README.rdoc +28 -0
- data/spec/rails4/Rakefile +6 -0
- data/spec/rails4/app/assets/images/.keep +0 -0
- data/spec/rails4/app/assets/javascripts/application.js +4 -0
- data/spec/rails4/app/assets/javascripts/bind_polyfill.js +24 -0
- data/spec/rails4/app/assets/javascripts/init.js.next +7 -0
- data/spec/rails4/app/assets/javascripts/my_app/greeter.js.next +9 -0
- data/spec/rails4/app/assets/stylesheets/application.css +15 -0
- data/spec/rails4/app/controllers/application_controller.rb +5 -0
- data/spec/rails4/app/controllers/concerns/.keep +0 -0
- data/spec/rails4/app/controllers/welcome_controller.rb +4 -0
- data/spec/rails4/app/helpers/application_helper.rb +2 -0
- data/spec/rails4/app/mailers/.keep +0 -0
- data/spec/rails4/app/models/.keep +0 -0
- data/spec/rails4/app/models/concerns/.keep +0 -0
- data/spec/rails4/app/views/layouts/application.html.erb +14 -0
- data/spec/rails4/app/views/welcome/index.html.erb +1 -0
- data/spec/rails4/bin/bundle +3 -0
- data/spec/rails4/bin/rails +4 -0
- data/spec/rails4/bin/rake +4 -0
- data/spec/rails4/config.ru +4 -0
- data/spec/rails4/config/application.rb +30 -0
- data/spec/rails4/config/boot.rb +4 -0
- data/spec/rails4/config/environment.rb +5 -0
- data/spec/rails4/config/environments/development.rb +34 -0
- data/spec/rails4/config/environments/production.rb +80 -0
- data/spec/rails4/config/environments/test.rb +39 -0
- data/spec/rails4/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/rails4/config/initializers/cookies_serializer.rb +3 -0
- data/spec/rails4/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/rails4/config/initializers/inflections.rb +16 -0
- data/spec/rails4/config/initializers/mime_types.rb +4 -0
- data/spec/rails4/config/initializers/session_store.rb +3 -0
- data/spec/rails4/config/initializers/wrap_parameters.rb +9 -0
- data/spec/rails4/config/locales/en.yml +23 -0
- data/spec/rails4/config/routes.rb +3 -0
- data/spec/rails4/config/secrets.yml +22 -0
- data/spec/rails4/db/seeds.rb +7 -0
- data/spec/rails4/lib/assets/.keep +0 -0
- data/spec/rails4/lib/tasks/.keep +0 -0
- data/spec/rails4/log/.keep +0 -0
- data/spec/rails4/log/development.log +58 -0
- data/spec/rails4/log/test.log +6 -0
- data/spec/rails4/public/404.html +67 -0
- data/spec/rails4/public/422.html +67 -0
- data/spec/rails4/public/500.html +66 -0
- data/spec/rails4/public/favicon.ico +0 -0
- data/spec/rails4/public/robots.txt +5 -0
- data/spec/rails4/vendor/assets/javascripts/.keep +0 -0
- data/spec/rails4/vendor/assets/stylesheets/.keep +0 -0
- data/spec/rails_integration_spec.rb +13 -0
- data/spec/sinatra/app.rb +24 -0
- data/spec/sinatra/config.ru +3 -0
- data/spec/sinatra/js/application.js +4 -0
- data/spec/sinatra/js/bind_polyfill.js +24 -0
- data/spec/sinatra/js/init.js.next +7 -0
- data/spec/sinatra/js/my_app/greeter.js.next +9 -0
- data/spec/sinatra/sinatra_integration_spec.rb +13 -0
- data/spec/sinatra/views/index.erb +9 -0
- data/spec/spec_helper.rb +5 -0
- data/sprockets-traceur.gemspec +33 -0
- metadata +319 -0
@@ -0,0 +1,66 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body>
|
58
|
+
<!-- This file lives in public/500.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>We're sorry, but something went wrong.</h1>
|
62
|
+
</div>
|
63
|
+
<p>If you are the application owner check the logs for more information.</p>
|
64
|
+
</div>
|
65
|
+
</body>
|
66
|
+
</html>
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,13 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
|
3
|
+
require_relative "rails4/config/environment"
|
4
|
+
|
5
|
+
describe "Integrating with Rails", type: :feature, js: true do
|
6
|
+
it "compiles the javascript" do
|
7
|
+
Capybara.app = Rails.application
|
8
|
+
|
9
|
+
visit "/"
|
10
|
+
|
11
|
+
expect(page).to have_content("Hello, World!")
|
12
|
+
end
|
13
|
+
end
|
data/spec/sinatra/app.rb
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
require "sinatra"
|
2
|
+
require "sprockets/traceur"
|
3
|
+
|
4
|
+
class SinatraApplication < Sinatra::Base
|
5
|
+
set :raise_errors, true
|
6
|
+
set :show_exceptions, false
|
7
|
+
|
8
|
+
get "/" do
|
9
|
+
erb :index
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
SinatraSample = Rack::Builder.new do
|
14
|
+
map "/assets" do
|
15
|
+
root = File.dirname(__FILE__)
|
16
|
+
environment = Sprockets::Environment.new
|
17
|
+
environment.append_path root + '/js'
|
18
|
+
run environment
|
19
|
+
end
|
20
|
+
|
21
|
+
map "/" do
|
22
|
+
run SinatraApplication
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
if (!Function.prototype.bind) {
|
2
|
+
Function.prototype.bind = function (oThis) {
|
3
|
+
if (typeof this !== "function") {
|
4
|
+
// closest thing possible to the ECMAScript 5
|
5
|
+
// internal IsCallable function
|
6
|
+
throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable");
|
7
|
+
}
|
8
|
+
|
9
|
+
var aArgs = Array.prototype.slice.call(arguments, 1),
|
10
|
+
fToBind = this,
|
11
|
+
fNOP = function () {},
|
12
|
+
fBound = function () {
|
13
|
+
return fToBind.apply(this instanceof fNOP && oThis
|
14
|
+
? this
|
15
|
+
: oThis,
|
16
|
+
aArgs.concat(Array.prototype.slice.call(arguments)));
|
17
|
+
};
|
18
|
+
|
19
|
+
fNOP.prototype = this.prototype;
|
20
|
+
fBound.prototype = new fNOP();
|
21
|
+
|
22
|
+
return fBound;
|
23
|
+
};
|
24
|
+
}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
|
3
|
+
require_relative "app"
|
4
|
+
|
5
|
+
describe "Integrating with Sinatra", type: :feature, js: true do
|
6
|
+
it "compiles the javascript" do
|
7
|
+
Capybara.app = SinatraSample
|
8
|
+
|
9
|
+
visit "/"
|
10
|
+
|
11
|
+
expect(page).to have_content("Hello, World!")
|
12
|
+
end
|
13
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'sprockets/traceur/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "sprockets-traceur"
|
8
|
+
spec.version = Sprockets::Traceur::VERSION
|
9
|
+
spec.authors = ["Adam Pohorecki"]
|
10
|
+
spec.email = ["adam@pohorecki.pl"]
|
11
|
+
spec.summary = %q{Sprockets plugin for Google Traceur.}
|
12
|
+
spec.description = %q{Transpile ES6 files with Google Traceur.}
|
13
|
+
spec.homepage = "https://github.com/gunpowderlabs/sprockets-traceur"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_dependency "sprockets"
|
22
|
+
spec.add_dependency "traceur-rb"
|
23
|
+
|
24
|
+
spec.add_development_dependency "bundler", "~> 1.6"
|
25
|
+
spec.add_development_dependency "rake"
|
26
|
+
|
27
|
+
spec.add_development_dependency "rspec"
|
28
|
+
spec.add_development_dependency "capybara"
|
29
|
+
spec.add_development_dependency "capybara-webkit"
|
30
|
+
spec.add_development_dependency "guard-rspec"
|
31
|
+
spec.add_development_dependency "sinatra"
|
32
|
+
spec.add_development_dependency "rails", "~> 4.1"
|
33
|
+
end
|
metadata
ADDED
@@ -0,0 +1,319 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: sprockets-traceur
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Adam Pohorecki
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-06-20 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: sprockets
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ! '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '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'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: traceur-rb
|
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.6'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.6'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
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: capybara
|
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
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: capybara-webkit
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ! '>='
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ! '>='
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: guard-rspec
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ! '>='
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ! '>='
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: sinatra
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ! '>='
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ! '>='
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: rails
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - ~>
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '4.1'
|
146
|
+
type: :development
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - ~>
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '4.1'
|
153
|
+
description: Transpile ES6 files with Google Traceur.
|
154
|
+
email:
|
155
|
+
- adam@pohorecki.pl
|
156
|
+
executables: []
|
157
|
+
extensions: []
|
158
|
+
extra_rdoc_files: []
|
159
|
+
files:
|
160
|
+
- .gitignore
|
161
|
+
- .rspec
|
162
|
+
- .ruby-gemset
|
163
|
+
- .ruby-version
|
164
|
+
- Gemfile
|
165
|
+
- Guardfile
|
166
|
+
- LICENSE.txt
|
167
|
+
- README.md
|
168
|
+
- Rakefile
|
169
|
+
- lib/sprockets-traceur.rb
|
170
|
+
- lib/sprockets/traceur.rb
|
171
|
+
- lib/sprockets/traceur/version.rb
|
172
|
+
- spec/rails4/Gemfile
|
173
|
+
- spec/rails4/README.rdoc
|
174
|
+
- spec/rails4/Rakefile
|
175
|
+
- spec/rails4/app/assets/images/.keep
|
176
|
+
- spec/rails4/app/assets/javascripts/application.js
|
177
|
+
- spec/rails4/app/assets/javascripts/bind_polyfill.js
|
178
|
+
- spec/rails4/app/assets/javascripts/init.js.next
|
179
|
+
- spec/rails4/app/assets/javascripts/my_app/greeter.js.next
|
180
|
+
- spec/rails4/app/assets/stylesheets/application.css
|
181
|
+
- spec/rails4/app/controllers/application_controller.rb
|
182
|
+
- spec/rails4/app/controllers/concerns/.keep
|
183
|
+
- spec/rails4/app/controllers/welcome_controller.rb
|
184
|
+
- spec/rails4/app/helpers/application_helper.rb
|
185
|
+
- spec/rails4/app/mailers/.keep
|
186
|
+
- spec/rails4/app/models/.keep
|
187
|
+
- spec/rails4/app/models/concerns/.keep
|
188
|
+
- spec/rails4/app/views/layouts/application.html.erb
|
189
|
+
- spec/rails4/app/views/welcome/index.html.erb
|
190
|
+
- spec/rails4/bin/bundle
|
191
|
+
- spec/rails4/bin/rails
|
192
|
+
- spec/rails4/bin/rake
|
193
|
+
- spec/rails4/config.ru
|
194
|
+
- spec/rails4/config/application.rb
|
195
|
+
- spec/rails4/config/boot.rb
|
196
|
+
- spec/rails4/config/environment.rb
|
197
|
+
- spec/rails4/config/environments/development.rb
|
198
|
+
- spec/rails4/config/environments/production.rb
|
199
|
+
- spec/rails4/config/environments/test.rb
|
200
|
+
- spec/rails4/config/initializers/backtrace_silencers.rb
|
201
|
+
- spec/rails4/config/initializers/cookies_serializer.rb
|
202
|
+
- spec/rails4/config/initializers/filter_parameter_logging.rb
|
203
|
+
- spec/rails4/config/initializers/inflections.rb
|
204
|
+
- spec/rails4/config/initializers/mime_types.rb
|
205
|
+
- spec/rails4/config/initializers/session_store.rb
|
206
|
+
- spec/rails4/config/initializers/wrap_parameters.rb
|
207
|
+
- spec/rails4/config/locales/en.yml
|
208
|
+
- spec/rails4/config/routes.rb
|
209
|
+
- spec/rails4/config/secrets.yml
|
210
|
+
- spec/rails4/db/seeds.rb
|
211
|
+
- spec/rails4/lib/assets/.keep
|
212
|
+
- spec/rails4/lib/tasks/.keep
|
213
|
+
- spec/rails4/log/.keep
|
214
|
+
- spec/rails4/log/development.log
|
215
|
+
- spec/rails4/log/test.log
|
216
|
+
- spec/rails4/public/404.html
|
217
|
+
- spec/rails4/public/422.html
|
218
|
+
- spec/rails4/public/500.html
|
219
|
+
- spec/rails4/public/favicon.ico
|
220
|
+
- spec/rails4/public/robots.txt
|
221
|
+
- spec/rails4/vendor/assets/javascripts/.keep
|
222
|
+
- spec/rails4/vendor/assets/stylesheets/.keep
|
223
|
+
- spec/rails_integration_spec.rb
|
224
|
+
- spec/sinatra/app.rb
|
225
|
+
- spec/sinatra/config.ru
|
226
|
+
- spec/sinatra/js/application.js
|
227
|
+
- spec/sinatra/js/bind_polyfill.js
|
228
|
+
- spec/sinatra/js/init.js.next
|
229
|
+
- spec/sinatra/js/my_app/greeter.js.next
|
230
|
+
- spec/sinatra/sinatra_integration_spec.rb
|
231
|
+
- spec/sinatra/views/index.erb
|
232
|
+
- spec/spec_helper.rb
|
233
|
+
- sprockets-traceur.gemspec
|
234
|
+
homepage: https://github.com/gunpowderlabs/sprockets-traceur
|
235
|
+
licenses:
|
236
|
+
- MIT
|
237
|
+
metadata: {}
|
238
|
+
post_install_message:
|
239
|
+
rdoc_options: []
|
240
|
+
require_paths:
|
241
|
+
- lib
|
242
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
243
|
+
requirements:
|
244
|
+
- - ! '>='
|
245
|
+
- !ruby/object:Gem::Version
|
246
|
+
version: '0'
|
247
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
248
|
+
requirements:
|
249
|
+
- - ! '>='
|
250
|
+
- !ruby/object:Gem::Version
|
251
|
+
version: '0'
|
252
|
+
requirements: []
|
253
|
+
rubyforge_project:
|
254
|
+
rubygems_version: 2.2.2
|
255
|
+
signing_key:
|
256
|
+
specification_version: 4
|
257
|
+
summary: Sprockets plugin for Google Traceur.
|
258
|
+
test_files:
|
259
|
+
- spec/rails4/Gemfile
|
260
|
+
- spec/rails4/README.rdoc
|
261
|
+
- spec/rails4/Rakefile
|
262
|
+
- spec/rails4/app/assets/images/.keep
|
263
|
+
- spec/rails4/app/assets/javascripts/application.js
|
264
|
+
- spec/rails4/app/assets/javascripts/bind_polyfill.js
|
265
|
+
- spec/rails4/app/assets/javascripts/init.js.next
|
266
|
+
- spec/rails4/app/assets/javascripts/my_app/greeter.js.next
|
267
|
+
- spec/rails4/app/assets/stylesheets/application.css
|
268
|
+
- spec/rails4/app/controllers/application_controller.rb
|
269
|
+
- spec/rails4/app/controllers/concerns/.keep
|
270
|
+
- spec/rails4/app/controllers/welcome_controller.rb
|
271
|
+
- spec/rails4/app/helpers/application_helper.rb
|
272
|
+
- spec/rails4/app/mailers/.keep
|
273
|
+
- spec/rails4/app/models/.keep
|
274
|
+
- spec/rails4/app/models/concerns/.keep
|
275
|
+
- spec/rails4/app/views/layouts/application.html.erb
|
276
|
+
- spec/rails4/app/views/welcome/index.html.erb
|
277
|
+
- spec/rails4/bin/bundle
|
278
|
+
- spec/rails4/bin/rails
|
279
|
+
- spec/rails4/bin/rake
|
280
|
+
- spec/rails4/config.ru
|
281
|
+
- spec/rails4/config/application.rb
|
282
|
+
- spec/rails4/config/boot.rb
|
283
|
+
- spec/rails4/config/environment.rb
|
284
|
+
- spec/rails4/config/environments/development.rb
|
285
|
+
- spec/rails4/config/environments/production.rb
|
286
|
+
- spec/rails4/config/environments/test.rb
|
287
|
+
- spec/rails4/config/initializers/backtrace_silencers.rb
|
288
|
+
- spec/rails4/config/initializers/cookies_serializer.rb
|
289
|
+
- spec/rails4/config/initializers/filter_parameter_logging.rb
|
290
|
+
- spec/rails4/config/initializers/inflections.rb
|
291
|
+
- spec/rails4/config/initializers/mime_types.rb
|
292
|
+
- spec/rails4/config/initializers/session_store.rb
|
293
|
+
- spec/rails4/config/initializers/wrap_parameters.rb
|
294
|
+
- spec/rails4/config/locales/en.yml
|
295
|
+
- spec/rails4/config/routes.rb
|
296
|
+
- spec/rails4/config/secrets.yml
|
297
|
+
- spec/rails4/db/seeds.rb
|
298
|
+
- spec/rails4/lib/assets/.keep
|
299
|
+
- spec/rails4/lib/tasks/.keep
|
300
|
+
- spec/rails4/log/.keep
|
301
|
+
- spec/rails4/log/development.log
|
302
|
+
- spec/rails4/log/test.log
|
303
|
+
- spec/rails4/public/404.html
|
304
|
+
- spec/rails4/public/422.html
|
305
|
+
- spec/rails4/public/500.html
|
306
|
+
- spec/rails4/public/favicon.ico
|
307
|
+
- spec/rails4/public/robots.txt
|
308
|
+
- spec/rails4/vendor/assets/javascripts/.keep
|
309
|
+
- spec/rails4/vendor/assets/stylesheets/.keep
|
310
|
+
- spec/rails_integration_spec.rb
|
311
|
+
- spec/sinatra/app.rb
|
312
|
+
- spec/sinatra/config.ru
|
313
|
+
- spec/sinatra/js/application.js
|
314
|
+
- spec/sinatra/js/bind_polyfill.js
|
315
|
+
- spec/sinatra/js/init.js.next
|
316
|
+
- spec/sinatra/js/my_app/greeter.js.next
|
317
|
+
- spec/sinatra/sinatra_integration_spec.rb
|
318
|
+
- spec/sinatra/views/index.erb
|
319
|
+
- spec/spec_helper.rb
|