graphaeljs-rails 0.1.0 → 0.1.1
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 +4 -4
- data/README.md +26 -0
- data/graphaeljs-rails.gemspec +1 -1
- data/lib/graphaeljs-rails.rb +1 -0
- data/lib/graphaeljs/rails/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 76f996ab9e71ca727ff6ba9cb996860092f73fa5
|
4
|
+
data.tar.gz: 185dcae8b0bd33b1d8857ef021302b1330c76297
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c35b41cd4285491e537d9985aabdd67c807852a1167acd9de00eeba7d481fc19f6db0b69d61c883b71d570c8dc689b674a8ae387975b619510ee0212d87eba30
|
7
|
+
data.tar.gz: 4301f09341f8fb48be0d926e43cbaea85b5ed8599df6ca55683e2f5463ae12dc4635f6bc35ec9739175506a888e3bb58ab0507df94a0349b9fbd4f01567c0179
|
data/README.md
CHANGED
@@ -1,3 +1,29 @@
|
|
1
1
|
# graphaeljs-rails
|
2
2
|
|
3
3
|
[g.Raphael](https://github.com/DmitryBaranovskiy/g.raphael) packaged for Rails assets pipeline
|
4
|
+
|
5
|
+
## Usage
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'graphaeljs-rails'
|
11
|
+
```
|
12
|
+
|
13
|
+
Add one of the following directive to your Javascript manifest file (application.js):
|
14
|
+
|
15
|
+
```js
|
16
|
+
//= require graphael-all
|
17
|
+
//= require graphael-bar
|
18
|
+
//= require graphael-dot
|
19
|
+
//= require graphael-line
|
20
|
+
//= require graphael-pie
|
21
|
+
```
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/graphaeljs-rails.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.email = ["vincent.pochet@gmail.com"]
|
11
11
|
spec.description = %q{gRaphael packaged for Rails assets pipeline}
|
12
12
|
spec.summary = %q{gRaphael packaged for Rails assets pipeline}
|
13
|
-
spec.homepage = ""
|
13
|
+
spec.homepage = "https://github.com/vincent-pochet/graphaeljs-rails"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
data/lib/graphaeljs-rails.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: graphaeljs-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vincent Pochet
|
@@ -78,7 +78,7 @@ files:
|
|
78
78
|
- vendor/assets/javascripts/graphael/line.js
|
79
79
|
- vendor/assets/javascripts/graphael/pie.js
|
80
80
|
- vendor/assets/javascripts/graphael/raphael.js
|
81
|
-
homepage:
|
81
|
+
homepage: https://github.com/vincent-pochet/graphaeljs-rails
|
82
82
|
licenses:
|
83
83
|
- MIT
|
84
84
|
metadata: {}
|