rgraph-rails 1.0.2 → 1.0.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 +13 -5
- data/.travis.yml +8 -2
- data/README.md +8 -4
- data/lib/rgraph-rails/version.rb +1 -1
- data/rgraph-rails.gemspec +1 -1
- metadata +18 -19
checksums.yaml
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
|
|
2
|
+
!binary "U0hBMQ==":
|
|
3
|
+
metadata.gz: !binary |-
|
|
4
|
+
NTZlMjliMTg5MjJmYTJhMDU0MWE0ODYzZDZkMWI2MTkyOGRmNDc4OA==
|
|
5
|
+
data.tar.gz: !binary |-
|
|
6
|
+
NmFhMGIyYjg0YThkMjllYjUxOWQ5NTE1ZDA1NWM4MDYyY2Y1ZmI4Nw==
|
|
5
7
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
|
|
8
|
+
metadata.gz: !binary |-
|
|
9
|
+
ZjBkNWI1NmEzYjc5MGZmZmZiYzM3MDY0NTM3YWJkMDgzOGQ1MTQ1Y2U2Njkx
|
|
10
|
+
YWM0YjA2MzUyMTJmNWY3ZDllYmMwOTViNmNmMDRjMzRhYjE2NTkyMGQ2OTg5
|
|
11
|
+
N2RmOTg4ZjBjMDlhYTZjNWM4MTU2MDEzMDE1MzM5NGFlOThmNmE=
|
|
12
|
+
data.tar.gz: !binary |-
|
|
13
|
+
YzY4MjYyNjE0NmVlN2E4YWJhZTA2YTFjZmQxNjI1OTdkMjI0ZDA0MWNlMzA5
|
|
14
|
+
MDQ3NzgwZmI3Y2VlZWY2NzEwMmJkZTQ2NGEwODE2Y2JjNjIwN2UzYjI0YWUz
|
|
15
|
+
YzkyN2RlMWUyN2E2OWVmZTU3MTc3ZjQzMTQ0NDAwN2I4OTgwZTQ=
|
data/.travis.yml
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
language: ruby
|
|
2
2
|
rvm:
|
|
3
|
-
|
|
4
|
-
before_install: gem install bundler -v 1.10.6
|
|
3
|
+
- 2.2.1
|
|
4
|
+
before_install: gem install bundler -v 1.10.6
|
|
5
|
+
deploy:
|
|
6
|
+
provider: rubygems
|
|
7
|
+
api_key:
|
|
8
|
+
secure: afUjE//0Dbsz5hq99BS5MAq4mS5m+ZQws9nsUTUXr9I1UQud0sng4/0KsCZJkmJeGmmagWPAOJ4uZF5gnl0STmnYVRavLYwjIZ8pesTeh+wofGIXwhuE2T3JzGLlX9NADNk0tm67wWMztTOiZUMtWHjrfApahoH3NO8EblwBd0PrwghNIP3bq8xS5X5FOi02Om+SxD3Px/JFiLHePejiLc4T1Uw2rX2fy3buy0XKz08tLZ0tKVs16vASR8AfsiW2vDLdJ655bv0x4JaDROyIRn+hPr+5xt2OO+HLLK/kEfQDINXrsUve7BOW0zxGEUnjIwDMtBgfkUvPG1yz7yVOQvz585TQ7w/pxRCZ0JfLxv+DVaCVwk9EyAKFFo6oM+i1cWThQiaxy0TPyZV8a/ffhuTcbMzdJbTKeTXmGooY2DuDIEmZ4ldVltVkoy+3mzMTnHyLn4t69M2jEw27Frn/gE/lwMIbgPHaXDkFGqQDT8NYqT3P9KzigRPlq6wrmoCpo8wwwCqENk7iwE0JPtrhgQA4UcmJN1bhwpjIv7S8URj2Ltn/NBxDsxPtLCs6EFUgJ2KRAuK7MGGfGQgJmO0yF6n+OvCji+eFcw+FwKBDspAqo8Y4jBBfrvajSt23KUp6kaw41UGdoTzRqdPXA9RMV16aVBBrk7SLXYm19Zl0+1I=
|
|
9
|
+
on:
|
|
10
|
+
tags: true
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# rgraph-rails
|
|
2
2
|
|
|
3
|
-
[](https://travis-ci.org/thisisbd/rgraph-rails)
|
|
4
4
|
[](https://badge.fury.io/rb/rgraph-rails)
|
|
5
5
|
|
|
6
6
|
Use the [rgraph](http://www.rgraph.net/) chart/graph library with the Rails asset pipeline.
|
|
@@ -10,7 +10,7 @@ Use the [rgraph](http://www.rgraph.net/) chart/graph library with the Rails asse
|
|
|
10
10
|
Add this line to your application's Gemfile:
|
|
11
11
|
|
|
12
12
|
```ruby
|
|
13
|
-
gem 'rgraph-rails', '
|
|
13
|
+
gem 'rgraph-rails', '~> 1.0'
|
|
14
14
|
```
|
|
15
15
|
|
|
16
16
|
And then execute:
|
|
@@ -58,13 +58,17 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
|
|
58
58
|
|
|
59
59
|
To install this gem onto your local machine, run `bundle exec rake install`.
|
|
60
60
|
|
|
61
|
+
## Deployment
|
|
62
|
+
|
|
63
|
+
Automatically on tagged release. Reading: https://docs.travis-ci.com/user/deployment/rubygems/
|
|
64
|
+
|
|
61
65
|
## Issues
|
|
62
66
|
|
|
63
|
-
If your query concerns the library itself, see the [official support forum](http://www.rgraph.net/support). If it is about this gem in particular, [raise an issue](https://github.com/
|
|
67
|
+
If your query concerns the library itself, see the [official support forum](http://www.rgraph.net/support). If it is about this gem in particular, [raise an issue](https://github.com/thisisbd/rgraph-rails/issues).
|
|
64
68
|
|
|
65
69
|
## Contributing
|
|
66
70
|
|
|
67
|
-
Bug reports and pull requests are welcome. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](https://github.com/
|
|
71
|
+
Bug reports and pull requests are welcome. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](https://github.com/thisisbd/rgraph-rails/blob/master/CODE_OF_CONDUCT.md) code of conduct.
|
|
68
72
|
|
|
69
73
|
## License
|
|
70
74
|
|
data/lib/rgraph-rails/version.rb
CHANGED
data/rgraph-rails.gemspec
CHANGED
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
|
|
|
12
12
|
|
|
13
13
|
spec.summary = %q{ The rgraph (http://www.rgraph.net/) interactive chart/graph library with the Rails asset pipeline. }
|
|
14
14
|
spec.description = %q{ The rgraph (http://www.rgraph.net/) interactive chart/graph library with the Rails asset pipeline. }
|
|
15
|
-
spec.homepage = "https://github.com/
|
|
15
|
+
spec.homepage = "https://github.com/thisisbd/rgraph-rails"
|
|
16
16
|
|
|
17
17
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
18
18
|
spec.bindir = "exe"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rgraph-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daniel Griffin
|
|
@@ -14,69 +14,69 @@ dependencies:
|
|
|
14
14
|
name: railties
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- -
|
|
17
|
+
- - ~>
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: '4.2'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- -
|
|
24
|
+
- - ~>
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '4.2'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: bundler
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- -
|
|
31
|
+
- - ~>
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
33
|
version: '1.10'
|
|
34
34
|
type: :development
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
|
-
- -
|
|
38
|
+
- - ~>
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '1.10'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: rake
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
|
-
- -
|
|
45
|
+
- - ~>
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
47
|
version: '10.0'
|
|
48
48
|
type: :development
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
|
-
- -
|
|
52
|
+
- - ~>
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '10.0'
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
56
|
name: rspec
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
|
58
58
|
requirements:
|
|
59
|
-
- -
|
|
59
|
+
- - ~>
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
61
|
version: '3.3'
|
|
62
62
|
type: :development
|
|
63
63
|
prerelease: false
|
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
65
|
requirements:
|
|
66
|
-
- -
|
|
66
|
+
- - ~>
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '3.3'
|
|
69
|
-
description:
|
|
70
|
-
with the Rails asset pipeline.
|
|
69
|
+
description: ! ' The rgraph (http://www.rgraph.net/) interactive chart/graph library
|
|
70
|
+
with the Rails asset pipeline. '
|
|
71
71
|
email:
|
|
72
72
|
- danielseangriffin@gmail.com
|
|
73
73
|
executables: []
|
|
74
74
|
extensions: []
|
|
75
75
|
extra_rdoc_files: []
|
|
76
76
|
files:
|
|
77
|
-
-
|
|
78
|
-
-
|
|
79
|
-
-
|
|
77
|
+
- .gitignore
|
|
78
|
+
- .rspec
|
|
79
|
+
- .travis.yml
|
|
80
80
|
- CODE_OF_CONDUCT.md
|
|
81
81
|
- Gemfile
|
|
82
82
|
- README.md
|
|
@@ -146,7 +146,7 @@ files:
|
|
|
146
146
|
- vendor/assets/stylesheets/ModalDialog.css
|
|
147
147
|
- vendor/assets/stylesheets/animations.css
|
|
148
148
|
- vendor/assets/stylesheets/website.css
|
|
149
|
-
homepage: https://github.com/
|
|
149
|
+
homepage: https://github.com/thisisbd/rgraph-rails
|
|
150
150
|
licenses:
|
|
151
151
|
- GPL
|
|
152
152
|
metadata: {}
|
|
@@ -156,20 +156,19 @@ require_paths:
|
|
|
156
156
|
- lib
|
|
157
157
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
158
158
|
requirements:
|
|
159
|
-
- -
|
|
159
|
+
- - ! '>='
|
|
160
160
|
- !ruby/object:Gem::Version
|
|
161
161
|
version: '0'
|
|
162
162
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
163
163
|
requirements:
|
|
164
|
-
- -
|
|
164
|
+
- - ! '>='
|
|
165
165
|
- !ruby/object:Gem::Version
|
|
166
166
|
version: '0'
|
|
167
167
|
requirements: []
|
|
168
168
|
rubyforge_project:
|
|
169
|
-
rubygems_version: 2.4.
|
|
169
|
+
rubygems_version: 2.4.5
|
|
170
170
|
signing_key:
|
|
171
171
|
specification_version: 4
|
|
172
172
|
summary: The rgraph (http://www.rgraph.net/) interactive chart/graph library with
|
|
173
173
|
the Rails asset pipeline.
|
|
174
174
|
test_files: []
|
|
175
|
-
has_rdoc:
|