epf-rails 1.0.0 → 1.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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 1ef2ee731a31d0c23b932736ecb8df708ec90b2b
4
+ data.tar.gz: a9d6a0b469912f6256ba69a41fb1238e070db533
5
+ SHA512:
6
+ metadata.gz: 0aeb9eb50fdfa415ce347a21706cbcd71efa68e705aaa7676838c431c3c07b562b80a2e1cbdcc249b8cf543d63d5965355464d15ee4127ebfbc51cf5db4aecc9
7
+ data.tar.gz: 49f652efaeb6e1db2662148259bcd4dcc1786e557b3544ea88189f3b7e7cdf3917a3dde822ec884a2e2e3fe2d2badea4213e7f45f7e5393841cc89e29a457f76
@@ -0,0 +1,3 @@
1
+ # 1.1.0 (27 Jul 2013)
2
+
3
+ * Included source map
@@ -9,6 +9,12 @@ module Epf
9
9
  initializer 'epf.setup-vendor', :group => :all do |app|
10
10
  app.assets.append_path \
11
11
  File.expand_path('../', ::Epf::Source.bundled_path)
12
+
13
+ # conditional for BC-compatible with pre-source-map versions
14
+ if ::Epf::Source.respond_to?(:bundled_map_path)
15
+ app.assets.append_path \
16
+ File.expand_path('../', ::Epf::Source.bundled_map_path)
17
+ end
12
18
  end
13
19
  end
14
20
  end
@@ -1,5 +1,5 @@
1
1
  module Epf
2
2
  module Rails
3
- VERSION = '1.0.0'
3
+ VERSION = '1.1.0'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,50 +1,46 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: epf-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
5
- prerelease:
4
+ version: 1.1.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - heartsentwined
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-07-08 00:00:00.000000000 Z
11
+ date: 2013-07-27 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: epf-source
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - '>='
20
18
  - !ruby/object:Gem::Version
21
19
  version: '0'
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - '>='
28
25
  - !ruby/object:Gem::Version
29
26
  version: '0'
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: rails
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ! '>='
31
+ - - '>='
36
32
  - !ruby/object:Gem::Version
37
33
  version: '0'
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ! '>='
38
+ - - '>='
44
39
  - !ruby/object:Gem::Version
45
40
  version: '0'
46
- description: ! " Epf is a robust and stable framework for syncing client state
47
- with a\n persistent backend such as a REST API or socket connection.\n"
41
+ description: |2
42
+ Epf is a robust and stable framework for syncing client state with a
43
+ persistent backend such as a REST API or socket connection.
48
44
  email:
49
45
  - heartsentwined.me@gmail.com
50
46
  executables: []
@@ -52,6 +48,7 @@ extensions: []
52
48
  extra_rdoc_files: []
53
49
  files:
54
50
  - .gitignore
51
+ - CHANGELOG.md
55
52
  - Gemfile
56
53
  - README.md
57
54
  - Rakefile
@@ -62,26 +59,25 @@ files:
62
59
  homepage: https://github.com/heartsentwined/epf-rails
63
60
  licenses:
64
61
  - MIT
62
+ metadata: {}
65
63
  post_install_message:
66
64
  rdoc_options: []
67
65
  require_paths:
68
66
  - lib
69
67
  required_ruby_version: !ruby/object:Gem::Requirement
70
- none: false
71
68
  requirements:
72
- - - ! '>='
69
+ - - '>='
73
70
  - !ruby/object:Gem::Version
74
71
  version: '0'
75
72
  required_rubygems_version: !ruby/object:Gem::Requirement
76
- none: false
77
73
  requirements:
78
- - - ! '>='
74
+ - - '>='
79
75
  - !ruby/object:Gem::Version
80
76
  version: '0'
81
77
  requirements: []
82
78
  rubyforge_project:
83
- rubygems_version: 1.8.25
79
+ rubygems_version: 2.0.3
84
80
  signing_key:
85
- specification_version: 3
81
+ specification_version: 4
86
82
  summary: Epf for Rails
87
83
  test_files: []