fancybox-rails 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 593fc7bdce36968b37934d2e07af121754b8fd21
4
- data.tar.gz: 67b03ea15a3ca681bf6aec00ea1ba0ba5ede86a9
3
+ metadata.gz: 736ee8a527ed498b864899b42e89195ab71703ba
4
+ data.tar.gz: 6bfd353ee8cc601f35d35e7288091e4d227e55d5
5
5
  SHA512:
6
- metadata.gz: a85dd6c34b36299f125f529e011ca6c2864513d7a2f6eeaeefb85f0d7b871e7e0896b46ffb96bdb6e2bc7b60a473cd52330148d1f96d2929d01c98e590f2abd6
7
- data.tar.gz: 207ad5319f29f7bef578401cc0fc5836bd4c673854eed2dfddeb3f6110ea582424fcd3e7a28b1caa01d1508196a4faf16703b4e55f2521df9e2a40ade322a4df
6
+ metadata.gz: 78cda1c08c8780a027bfd6cd040641f52552ab1b204e46db14eb6ef39d97a1f93a47754ae6e6a87eb21a169442bfd7fc5f6043d50c1b2967ef4a4af18eddc55a
7
+ data.tar.gz: 714ccb539fe00002f90f3f2a4c61186f5b0c04209b68e420be087af647974d25eb64daa0800ddda45f11bdaf80f55687eb8ccf0d21b65700787b776005a126bc
@@ -0,0 +1,7 @@
1
+ .bundle/
2
+ log/*.log
3
+ pkg/
4
+ test/dummy/db/*.sqlite3
5
+ test/dummy/log/*.log
6
+ test/dummy/tmp/
7
+ Gemfile.lock
@@ -0,0 +1,5 @@
1
+ language: ruby
2
+ sudo: false
3
+ before_install:
4
+ - "export DISPLAY=:99.0"
5
+ - "sh -e /etc/init.d/xvfb start"
@@ -0,0 +1,20 @@
1
+ # 0.2.1 / 2013-03-09
2
+
3
+ * Add generator for copying FancyBox assets for customization.
4
+
5
+ # 0.2.0 / 2013-03-09
6
+
7
+ * Shim `$.browser` if it's missing for jQuery 1.9 compatibility
8
+
9
+ # 0.1.3 / 2011-08-11
10
+
11
+ * Fixed asset paths for use in production environment
12
+
13
+ # 0.1.0 / 2011-05-24
14
+
15
+ * Added support for `require fancybox`, which is just an alias for
16
+ `require jquery.fancybox`.
17
+
18
+ # 0.0.1 / 2011-05-19
19
+
20
+ * Initial release
data/README.md CHANGED
@@ -85,11 +85,11 @@ commercial purposes.
85
85
 
86
86
  ### Build status
87
87
 
88
- [![Build Status](https://travis-ci.org/hecticjeff/fancybox-rails.png?branch=master)](https://travis-ci.org/hecticjeff/fancybox-rails)
88
+ [![Build Status](https://travis-ci.org/chrismytton/fancybox-rails.svg?branch=master)](https://travis-ci.org/chrismytton/fancybox-rails)
89
89
 
90
90
  ### Useful links
91
91
 
92
- * [Contributors](https://github.com/hecticjeff/fancybox-rails/contributors)
92
+ * [Contributors](https://github.com/chrismytton/fancybox-rails/contributors)
93
93
  * [DHH's RailsConf 2011 talk on the rails 3.1 asset pipeline](http://www.youtube.com/watch?v=cGdCI2HhfAU)
94
94
 
95
95
  Copyright (c) Chris Mytton
@@ -0,0 +1,15 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = "fancybox-rails"
5
+ s.authors = ["Chris Mytton", "Les Hill", "Dennis Reimann", "Mattias Svedhem", "Greg Reinacker"]
6
+ s.email = ["chrismytton@gmail.com"]
7
+ s.homepage = "https://github.com/chrismytton/fancybox-rails"
8
+
9
+ s.summary = "Use FancyBox with the Rails asset pipeline"
10
+ s.description = "This gem provides jQuery FancyBox for your Rails application."
11
+ s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
12
+ s.version = "0.3.1"
13
+
14
+ s.add_dependency "railties", ">= 3.1.0"
15
+ end
metadata CHANGED
@@ -1,16 +1,18 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fancybox-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Mytton
8
8
  - Les Hill
9
9
  - Dennis Reimann
10
+ - Mattias Svedhem
11
+ - Greg Reinacker
10
12
  autorequire:
11
13
  bindir: bin
12
14
  cert_chain: []
13
- date: 2015-09-01 00:00:00.000000000 Z
15
+ date: 2015-11-19 00:00:00.000000000 Z
14
16
  dependencies:
15
17
  - !ruby/object:Gem::Dependency
16
18
  name: railties
@@ -26,17 +28,41 @@ dependencies:
26
28
  - - ">="
27
29
  - !ruby/object:Gem::Version
28
30
  version: 3.1.0
29
- description: This gem provides jQuery FancyBox for your Rails 3.1 application.
31
+ description: This gem provides jQuery FancyBox for your Rails application.
30
32
  email:
31
- - self@hecticjeff.net
33
+ - chrismytton@gmail.com
32
34
  executables: []
33
35
  extensions: []
34
36
  extra_rdoc_files: []
35
37
  files:
38
+ - ".gitignore"
39
+ - ".travis.yml"
40
+ - CHANGELOG.md
36
41
  - Gemfile
37
42
  - MIT-LICENSE
38
43
  - README.md
39
44
  - Rakefile
45
+ - app/assets/images/blank.gif
46
+ - app/assets/images/fancy_close.png
47
+ - app/assets/images/fancy_loading.png
48
+ - app/assets/images/fancy_nav_left.png
49
+ - app/assets/images/fancy_nav_right.png
50
+ - app/assets/images/fancy_shadow_e.png
51
+ - app/assets/images/fancy_shadow_n.png
52
+ - app/assets/images/fancy_shadow_ne.png
53
+ - app/assets/images/fancy_shadow_nw.png
54
+ - app/assets/images/fancy_shadow_s.png
55
+ - app/assets/images/fancy_shadow_se.png
56
+ - app/assets/images/fancy_shadow_sw.png
57
+ - app/assets/images/fancy_shadow_w.png
58
+ - app/assets/images/fancy_title_left.png
59
+ - app/assets/images/fancy_title_main.png
60
+ - app/assets/images/fancy_title_over.png
61
+ - app/assets/images/fancy_title_right.png
62
+ - app/assets/images/fancybox-x.png
63
+ - app/assets/images/fancybox-y.png
64
+ - app/assets/images/fancybox.png
65
+ - fancybox-rails.gemspec
40
66
  - lib/fancybox-rails.rb
41
67
  - lib/fancybox-rails/engine.rb
42
68
  - lib/generators/fancybox_rails_generator.rb
@@ -45,7 +71,7 @@ files:
45
71
  - vendor/assets/javascripts/jquery.fancybox.js
46
72
  - vendor/assets/stylesheets/fancybox.css
47
73
  - vendor/assets/stylesheets/jquery.fancybox.css.erb
48
- homepage: https://github.com/hecticjeff/fancybox-rails
74
+ homepage: https://github.com/chrismytton/fancybox-rails
49
75
  licenses: []
50
76
  metadata: {}
51
77
  post_install_message:
@@ -64,8 +90,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
64
90
  version: '0'
65
91
  requirements: []
66
92
  rubyforge_project:
67
- rubygems_version: 2.4.5
93
+ rubygems_version: 2.4.5.1
68
94
  signing_key:
69
95
  specification_version: 4
70
- summary: Use FancyBox with Rails 3.1+
96
+ summary: Use FancyBox with the Rails asset pipeline
71
97
  test_files: []