amcharts-rails 2.7.7.1.0a
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +8 -0
- data/Gemfile +17 -0
- data/Gemfile.lock +97 -0
- data/MIT-LICENSE +20 -0
- data/README.md +4 -0
- data/README.rdoc +3 -0
- data/Rakefile +38 -0
- data/amcharts-rails.gemspec +22 -0
- data/lib/amcharts-rails.rb +6 -0
- data/lib/amcharts-rails/version.rb +3 -0
- data/lib/tasks/amcharts-rails_tasks.rake +4 -0
- data/test/amcharts-rails_test.rb +7 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/mailers/.gitkeep +0 -0
- data/test/dummy/app/models/.gitkeep +0 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +58 -0
- data/test/dummy/lib/assets/.gitkeep +0 -0
- data/test/dummy/log/.gitkeep +0 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/test_helper.rb +15 -0
- data/vendor/assets/images/amcharts/bg.gif +0 -0
- data/vendor/assets/images/amcharts/dragIcon.gif +0 -0
- data/vendor/assets/images/amcharts/dragIconH.gif +0 -0
- data/vendor/assets/images/amcharts/lens.png +0 -0
- data/vendor/assets/images/amcharts/logo.gif +0 -0
- data/vendor/assets/javascripts/amcharts/amcharts.js +362 -0
- data/vendor/assets/javascripts/amcharts/index.js +2 -0
- metadata +166 -0
metadata
ADDED
@@ -0,0 +1,166 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: amcharts-rails
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.7.7.1.0a
|
5
|
+
prerelease: 9
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Mike MacDonald
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-09-30 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rails
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '3.1'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '3.1'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: sqlite3
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
type: :development
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
description: ''
|
47
|
+
email:
|
48
|
+
- crazymykl@gmail.com
|
49
|
+
executables: []
|
50
|
+
extensions: []
|
51
|
+
extra_rdoc_files: []
|
52
|
+
files:
|
53
|
+
- .gitignore
|
54
|
+
- Gemfile
|
55
|
+
- Gemfile.lock
|
56
|
+
- MIT-LICENSE
|
57
|
+
- README.md
|
58
|
+
- README.rdoc
|
59
|
+
- Rakefile
|
60
|
+
- amcharts-rails.gemspec
|
61
|
+
- lib/amcharts-rails.rb
|
62
|
+
- lib/amcharts-rails/version.rb
|
63
|
+
- lib/tasks/amcharts-rails_tasks.rake
|
64
|
+
- test/amcharts-rails_test.rb
|
65
|
+
- test/dummy/README.rdoc
|
66
|
+
- test/dummy/Rakefile
|
67
|
+
- test/dummy/app/assets/javascripts/application.js
|
68
|
+
- test/dummy/app/assets/stylesheets/application.css
|
69
|
+
- test/dummy/app/controllers/application_controller.rb
|
70
|
+
- test/dummy/app/helpers/application_helper.rb
|
71
|
+
- test/dummy/app/mailers/.gitkeep
|
72
|
+
- test/dummy/app/models/.gitkeep
|
73
|
+
- test/dummy/app/views/layouts/application.html.erb
|
74
|
+
- test/dummy/config.ru
|
75
|
+
- test/dummy/config/application.rb
|
76
|
+
- test/dummy/config/boot.rb
|
77
|
+
- test/dummy/config/database.yml
|
78
|
+
- test/dummy/config/environment.rb
|
79
|
+
- test/dummy/config/environments/development.rb
|
80
|
+
- test/dummy/config/environments/production.rb
|
81
|
+
- test/dummy/config/environments/test.rb
|
82
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
83
|
+
- test/dummy/config/initializers/inflections.rb
|
84
|
+
- test/dummy/config/initializers/mime_types.rb
|
85
|
+
- test/dummy/config/initializers/secret_token.rb
|
86
|
+
- test/dummy/config/initializers/session_store.rb
|
87
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
88
|
+
- test/dummy/config/locales/en.yml
|
89
|
+
- test/dummy/config/routes.rb
|
90
|
+
- test/dummy/lib/assets/.gitkeep
|
91
|
+
- test/dummy/log/.gitkeep
|
92
|
+
- test/dummy/public/404.html
|
93
|
+
- test/dummy/public/422.html
|
94
|
+
- test/dummy/public/500.html
|
95
|
+
- test/dummy/public/favicon.ico
|
96
|
+
- test/dummy/script/rails
|
97
|
+
- test/test_helper.rb
|
98
|
+
- vendor/assets/images/amcharts/bg.gif
|
99
|
+
- vendor/assets/images/amcharts/dragIcon.gif
|
100
|
+
- vendor/assets/images/amcharts/dragIconH.gif
|
101
|
+
- vendor/assets/images/amcharts/lens.png
|
102
|
+
- vendor/assets/images/amcharts/logo.gif
|
103
|
+
- vendor/assets/javascripts/amcharts/amcharts.js
|
104
|
+
- vendor/assets/javascripts/amcharts/index.js
|
105
|
+
- test/dummy/log/test.log
|
106
|
+
- test/dummy/db/test.sqlite3
|
107
|
+
homepage: https://github.com/crazymykl/amcharts-rails
|
108
|
+
licenses: []
|
109
|
+
post_install_message:
|
110
|
+
rdoc_options: []
|
111
|
+
require_paths:
|
112
|
+
- lib
|
113
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
114
|
+
none: false
|
115
|
+
requirements:
|
116
|
+
- - ! '>='
|
117
|
+
- !ruby/object:Gem::Version
|
118
|
+
version: '0'
|
119
|
+
segments:
|
120
|
+
- 0
|
121
|
+
hash: -1291395670949945482
|
122
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
123
|
+
none: false
|
124
|
+
requirements:
|
125
|
+
- - ! '>'
|
126
|
+
- !ruby/object:Gem::Version
|
127
|
+
version: 1.3.1
|
128
|
+
requirements: []
|
129
|
+
rubyforge_project:
|
130
|
+
rubygems_version: 1.8.24
|
131
|
+
signing_key:
|
132
|
+
specification_version: 3
|
133
|
+
summary: Integrates amCharts javascript charts with rails.
|
134
|
+
test_files:
|
135
|
+
- test/amcharts-rails_test.rb
|
136
|
+
- test/test_helper.rb
|
137
|
+
- test/dummy/README.rdoc
|
138
|
+
- test/dummy/config/boot.rb
|
139
|
+
- test/dummy/config/database.yml
|
140
|
+
- test/dummy/config/environment.rb
|
141
|
+
- test/dummy/config/environments/development.rb
|
142
|
+
- test/dummy/config/environments/production.rb
|
143
|
+
- test/dummy/config/environments/test.rb
|
144
|
+
- test/dummy/config/application.rb
|
145
|
+
- test/dummy/config/locales/en.yml
|
146
|
+
- test/dummy/config/initializers/secret_token.rb
|
147
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
148
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
149
|
+
- test/dummy/config/initializers/session_store.rb
|
150
|
+
- test/dummy/config/initializers/mime_types.rb
|
151
|
+
- test/dummy/config/initializers/inflections.rb
|
152
|
+
- test/dummy/config/routes.rb
|
153
|
+
- test/dummy/log/test.log
|
154
|
+
- test/dummy/db/test.sqlite3
|
155
|
+
- test/dummy/Rakefile
|
156
|
+
- test/dummy/config.ru
|
157
|
+
- test/dummy/public/500.html
|
158
|
+
- test/dummy/public/favicon.ico
|
159
|
+
- test/dummy/public/422.html
|
160
|
+
- test/dummy/public/404.html
|
161
|
+
- test/dummy/app/views/layouts/application.html.erb
|
162
|
+
- test/dummy/app/controllers/application_controller.rb
|
163
|
+
- test/dummy/app/helpers/application_helper.rb
|
164
|
+
- test/dummy/app/assets/stylesheets/application.css
|
165
|
+
- test/dummy/app/assets/javascripts/application.js
|
166
|
+
- test/dummy/script/rails
|