bigpipe-rails 0.0.2 → 0.1.0
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.
- data/VERSION +1 -1
- data/bigpipe-rails.gemspec +1 -1
- data/lib/engines.rb +5 -4
- data/spec/dummy_app/Gemfile +1 -1
- data/spec/dummy_app/Gemfile.lock +3 -0
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0
|
1
|
+
0.1.0
|
data/bigpipe-rails.gemspec
CHANGED
data/lib/engines.rb
CHANGED
@@ -8,9 +8,10 @@ module BigpipeRails
|
|
8
8
|
# include our helper
|
9
9
|
ActionView::Base.send(:include, BigpipeRails::Helper)
|
10
10
|
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
11
|
+
initializer("bigpipe_rails.add_bigpipe_js") do
|
12
|
+
# copy over our bigpipe
|
13
|
+
FileUtils.mkdir_p(File.join(Rails.root, "public", "javascripts"))
|
14
|
+
FileUtils.cp(File.join(BigpipeRails.root, "assets", "bigpipe.js"), File.join(Rails.root, "public", "javascripts"))
|
15
|
+
end
|
15
16
|
end
|
16
17
|
end
|
data/spec/dummy_app/Gemfile
CHANGED
data/spec/dummy_app/Gemfile.lock
CHANGED
@@ -34,6 +34,8 @@ GEM
|
|
34
34
|
archive-tar-minitar (0.5.2)
|
35
35
|
arel (2.1.3)
|
36
36
|
bcrypt-ruby (2.1.4)
|
37
|
+
bigpipe-rails (0.0.2)
|
38
|
+
rails (= 3.1.0.rc4)
|
37
39
|
builder (3.0.0)
|
38
40
|
columnize (0.3.4)
|
39
41
|
diff-lcs (1.1.2)
|
@@ -131,6 +133,7 @@ PLATFORMS
|
|
131
133
|
ruby
|
132
134
|
|
133
135
|
DEPENDENCIES
|
136
|
+
bigpipe-rails
|
134
137
|
factory_girl_rails
|
135
138
|
growl
|
136
139
|
guard-rspec
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: bigpipe-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.0
|
5
|
+
version: 0.1.0
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Dan Langevin
|
@@ -256,7 +256,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
256
256
|
requirements:
|
257
257
|
- - ">="
|
258
258
|
- !ruby/object:Gem::Version
|
259
|
-
hash:
|
259
|
+
hash: 863484909136685835
|
260
260
|
segments:
|
261
261
|
- 0
|
262
262
|
version: "0"
|