fixie-rails 0.0.1 → 1.0.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/README.md +4 -0
- data/lib/fixie-rails/version.rb +1 -1
- metadata +39 -22
data/README.md
CHANGED
|
@@ -6,6 +6,10 @@ To learn more, check out [fixiejs.com](http://www.fixiejs.com "fixiejs")
|
|
|
6
6
|
|
|
7
7
|
# Installation
|
|
8
8
|
|
|
9
|
+
Add the following to your Gemfile and run `bundle update`:
|
|
10
|
+
|
|
11
|
+
gem 'fixie-rails', '~> 1.0'
|
|
12
|
+
|
|
9
13
|
For Rails 3.1 and greater, the fixie.js will be added to the asset pipeline and available for you to use. Add the following line to the app/assets/javascripts/application.js file.
|
|
10
14
|
|
|
11
15
|
//= require fixie
|
data/lib/fixie-rails/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,50 +1,67 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fixie-rails
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
prerelease: false
|
|
5
|
+
segments:
|
|
6
|
+
- 1
|
|
7
|
+
- 0
|
|
8
|
+
- 0
|
|
9
|
+
version: 1.0.0
|
|
6
10
|
platform: ruby
|
|
7
|
-
authors:
|
|
11
|
+
authors:
|
|
8
12
|
- Christopher Sexton
|
|
9
13
|
autorequire:
|
|
10
14
|
bindir: bin
|
|
11
15
|
cert_chain: []
|
|
12
|
-
|
|
16
|
+
|
|
17
|
+
date: 2012-05-05 00:00:00 -04:00
|
|
18
|
+
default_executable:
|
|
13
19
|
dependencies: []
|
|
20
|
+
|
|
14
21
|
description: Ryhan Hassan's awesome Fixie.js packaged up for the rails asset pipeline
|
|
15
|
-
email:
|
|
22
|
+
email:
|
|
16
23
|
- github@codeography.com
|
|
17
24
|
executables: []
|
|
25
|
+
|
|
18
26
|
extensions: []
|
|
27
|
+
|
|
19
28
|
extra_rdoc_files: []
|
|
20
|
-
|
|
29
|
+
|
|
30
|
+
files:
|
|
21
31
|
- vendor/assets/javascripts/fixie.js
|
|
22
32
|
- lib/fixie-rails/engine.rb
|
|
23
33
|
- lib/fixie-rails/version.rb
|
|
24
34
|
- lib/fixie-rails.rb
|
|
25
35
|
- README.md
|
|
36
|
+
has_rdoc: true
|
|
26
37
|
homepage: http://fixiejs.com/
|
|
27
38
|
licenses: []
|
|
39
|
+
|
|
28
40
|
post_install_message:
|
|
29
41
|
rdoc_options: []
|
|
30
|
-
|
|
42
|
+
|
|
43
|
+
require_paths:
|
|
31
44
|
- lib
|
|
32
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
requirements:
|
|
41
|
-
- -
|
|
42
|
-
- !ruby/object:Gem::Version
|
|
43
|
-
|
|
45
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
46
|
+
requirements:
|
|
47
|
+
- - ">="
|
|
48
|
+
- !ruby/object:Gem::Version
|
|
49
|
+
segments:
|
|
50
|
+
- 0
|
|
51
|
+
version: "0"
|
|
52
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
53
|
+
requirements:
|
|
54
|
+
- - ">="
|
|
55
|
+
- !ruby/object:Gem::Version
|
|
56
|
+
segments:
|
|
57
|
+
- 0
|
|
58
|
+
version: "0"
|
|
44
59
|
requirements: []
|
|
60
|
+
|
|
45
61
|
rubyforge_project: fixie-rails
|
|
46
|
-
rubygems_version: 1.
|
|
62
|
+
rubygems_version: 1.3.6
|
|
47
63
|
signing_key:
|
|
48
64
|
specification_version: 3
|
|
49
65
|
summary: Fixie.js for Rails Asset Pipeline
|
|
50
66
|
test_files: []
|
|
67
|
+
|