plasticine 1.1.1 → 1.2.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.
- checksums.yaml +4 -4
- data/app/assets/javascripts/plasticine/base.coffee +1 -0
- data/app/assets/javascripts/plasticine/column.coffee +46 -130
- data/app/assets/javascripts/plasticine/helpers.coffee +77 -0
- data/app/assets/javascripts/plasticine/index.js +2 -0
- data/app/assets/javascripts/plasticine/line.coffee +143 -0
- data/app/assets/stylesheets/plasticine/column.scss +1 -1
- data/app/assets/stylesheets/plasticine/index.css +1 -0
- data/app/assets/stylesheets/plasticine/line.scss +67 -0
- data/config/locales/en.yml +0 -0
- data/config/locales/fr.yml +0 -0
- data/config/routes.rb +0 -0
- data/lib/plasticine/builder/line.rb +77 -0
- data/lib/plasticine/builder.rb +1 -0
- data/lib/plasticine/helpers.rb +18 -1
- data/plasticine.gemspec +1 -1
- data/spec/controllers/application_controller_spec.rb +0 -0
- data/spec/dummy/app/models/anonymou.rb +0 -0
- data/spec/plasticine/base_spec.rb +0 -0
- data/spec/support/views_helper.rb +0 -0
- data/vendor/assets/javascripts/d3.js +2 -6
- metadata +7 -3
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: plasticine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sebastien Rosa
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-02-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -95,10 +95,13 @@ files:
|
|
95
95
|
- Rakefile
|
96
96
|
- app/assets/javascripts/plasticine/base.coffee
|
97
97
|
- app/assets/javascripts/plasticine/column.coffee
|
98
|
+
- app/assets/javascripts/plasticine/helpers.coffee
|
98
99
|
- app/assets/javascripts/plasticine/index.js
|
100
|
+
- app/assets/javascripts/plasticine/line.coffee
|
99
101
|
- app/assets/stylesheets/plasticine/base.scss
|
100
102
|
- app/assets/stylesheets/plasticine/column.scss
|
101
103
|
- app/assets/stylesheets/plasticine/index.css
|
104
|
+
- app/assets/stylesheets/plasticine/line.scss
|
102
105
|
- app/controllers/plasticine_controller.rb
|
103
106
|
- config/locales/en.yml
|
104
107
|
- config/locales/fr.yml
|
@@ -109,6 +112,7 @@ files:
|
|
109
112
|
- lib/plasticine/builder.rb
|
110
113
|
- lib/plasticine/builder/base.rb
|
111
114
|
- lib/plasticine/builder/column.rb
|
115
|
+
- lib/plasticine/builder/line.rb
|
112
116
|
- lib/plasticine/engine.rb
|
113
117
|
- lib/plasticine/helpers.rb
|
114
118
|
- lib/plasticine/railtie.rb
|
@@ -159,7 +163,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
159
163
|
version: '0'
|
160
164
|
requirements: []
|
161
165
|
rubyforge_project:
|
162
|
-
rubygems_version: 2.7.
|
166
|
+
rubygems_version: 2.7.6
|
163
167
|
signing_key:
|
164
168
|
specification_version: 4
|
165
169
|
summary: Data visualization toolkit for Rails App using D3.js
|