astronomy_engine 0.2.2 → 0.2.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 34993e3f3f2aea29ddebc373c9c629421bcb24f0
4
- data.tar.gz: 89244954458fb0fd67d643baa01c55ea8909beb0
3
+ metadata.gz: 0713de6fb7eacb951406f47593474483e2e313e9
4
+ data.tar.gz: 85ee8419f1c88a50fb0817a53d7d6760bcccab5f
5
5
  SHA512:
6
- metadata.gz: a7079b520e02ad0210c62e69d2d44e68b12ca0696ef42f5d805dd4132543f430fb97d6d74bb2da6257226e9f79b70e1be799a1f807208e33b5c12b11760d0b12
7
- data.tar.gz: 1271e8e01482973e30966bea0f815e4b3d254b2df5cf3583e32670680a48de13b1d81c2add0301cdb6b05434cf99ffe41ff87ddd450ce7387a9f0ef75541c90d
6
+ metadata.gz: c6734e5080800946ad3b03f501a9769d84e95d49f659b340b3a459a2501ee5399a4cb9c9a1c5f3468bccfbecb0978a80d663378d91f74a9e77d15b6ccd3c1689
7
+ data.tar.gz: 883406df3a94f1dd56775fd4fb2cc65cf9593bc8c3a577e190532f40e84f9038cd537f2cbb6ad2a87663a70ca0b42d31b6917958768e87786b64f4daaf00ebb9
data/.gitignore CHANGED
@@ -1,6 +1,5 @@
1
1
  /.bundle/
2
2
  /.yardoc
3
- /Gemfile.lock
4
3
  /_yardoc/
5
4
  /coverage/
6
5
  /doc/
data/Gemfile.lock ADDED
@@ -0,0 +1,61 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ astronomy_engine (0.2.3)
5
+ astronomy (~> 0.2)
6
+ sinatra (~> 1.4)
7
+ sinatra-assetpack (~> 0.3)
8
+ sinatra-contrib (~> 1.4)
9
+
10
+ GEM
11
+ remote: https://rubygems.org/
12
+ specs:
13
+ astronomy (0.2.3)
14
+ backports (3.6.4)
15
+ diff-lcs (1.2.5)
16
+ jsmin (1.0.1)
17
+ multi_json (1.10.1)
18
+ rack (1.6.0)
19
+ rack-protection (1.5.3)
20
+ rack
21
+ rack-test (0.6.3)
22
+ rack (>= 1.0)
23
+ rake (10.4.2)
24
+ rspec (3.1.0)
25
+ rspec-core (~> 3.1.0)
26
+ rspec-expectations (~> 3.1.0)
27
+ rspec-mocks (~> 3.1.0)
28
+ rspec-core (3.1.7)
29
+ rspec-support (~> 3.1.0)
30
+ rspec-expectations (3.1.2)
31
+ diff-lcs (>= 1.2.0, < 2.0)
32
+ rspec-support (~> 3.1.0)
33
+ rspec-mocks (3.1.3)
34
+ rspec-support (~> 3.1.0)
35
+ rspec-support (3.1.2)
36
+ sinatra (1.4.5)
37
+ rack (~> 1.4)
38
+ rack-protection (~> 1.4)
39
+ tilt (~> 1.3, >= 1.3.4)
40
+ sinatra-assetpack (0.3.3)
41
+ jsmin
42
+ rack-test
43
+ sinatra
44
+ tilt (>= 1.3.0, < 2.0)
45
+ sinatra-contrib (1.4.2)
46
+ backports (>= 2.0)
47
+ multi_json
48
+ rack-protection
49
+ rack-test
50
+ sinatra (~> 1.4.0)
51
+ tilt (~> 1.3)
52
+ tilt (1.4.1)
53
+
54
+ PLATFORMS
55
+ ruby
56
+
57
+ DEPENDENCIES
58
+ astronomy_engine!
59
+ bundler (~> 1.7)
60
+ rake (~> 10.0)
61
+ rspec (~> 3.0)
@@ -1,3 +1,3 @@
1
1
  module AstronomyEngine
2
- VERSION = '0.2.2'
2
+ VERSION = '0.2.3'
3
3
  end
@@ -29,7 +29,7 @@ $(document).ready(function () {
29
29
  var images = '<div>';
30
30
  for(var i in target.data('images')) {
31
31
  var image = target.data('images')[i];
32
- images += '<img src="' + image + '" class="image-padding image-height">';
32
+ images += '<a href=' + image + ' target="_blank"><img src="' + image + '" class="image-padding image-height"></a>';
33
33
  }
34
34
  images += '</div>';
35
35
  var description = addLineBreaks(target.data('description'));
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: astronomy_engine
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Aschenbach
@@ -118,6 +118,7 @@ extra_rdoc_files: []
118
118
  files:
119
119
  - ".gitignore"
120
120
  - Gemfile
121
+ - Gemfile.lock
121
122
  - LICENSE.txt
122
123
  - README.md
123
124
  - Rakefile