accountant_clerk 0.4 → 0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/accountant_clerk.gemspec +2 -2
- data/app/assets/javascripts/accountant_office.js.rb +4 -0
- data/app/assets/stylesheets/{accountant_clerk.css → accountant_office.css} +1 -2
- data/app/controllers/{accountant_controller.rb → manage_controller_decorator.rb} +1 -1
- data/app/views/{accountant → manage}/report.html.haml +1 -1
- data/config/routes.rb +2 -2
- data/lib/accountant_clerk/engine.rb +3 -4
- data/lib/accountant_clerk.rb +12 -0
- metadata +8 -9
- data/app/assets/javascripts/accountant_clerk.js +0 -0
- data/app/models/array_decorator.rb +0 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 58fddb8a54c304129e479fa6e8a486f444308b8e
|
4
|
+
data.tar.gz: d119808f6a3941f412d756918c545a2a0d9a42c8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 826bb581c3340527b53e956373919b82d01c9ce7114dcc41d7886f100722a03593b2a52451ba5bb11a26ca0fabd2c3dfe09e2dc895fe5ae3b631aba045a862dd
|
7
|
+
data.tar.gz: fe973490a1d248f2051c4d696192ef3c91612ac6e47b6e7ac7ebcec6cf8ebbfcc02f3c587a5375b4b35bec6ec5a6eeaddac89729e97267eeb49df83bc792ea11
|
data/accountant_clerk.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
Gem::Specification.new do |s|
|
3
3
|
s.platform = Gem::Platform::RUBY
|
4
4
|
s.name = 'accountant_clerk'
|
5
|
-
s.version = '0.
|
5
|
+
s.version = '0.5'
|
6
6
|
s.summary = 'Simple reports that are not so simple anymore'
|
7
7
|
s.required_ruby_version = '>= 1.9.3'
|
8
8
|
|
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
|
|
15
15
|
s.require_path = 'lib'
|
16
16
|
s.requirements << 'none'
|
17
17
|
|
18
|
-
s.add_runtime_dependency 'office_clerk', '~> 0.
|
18
|
+
s.add_runtime_dependency 'office_clerk', '~> 0.4'
|
19
19
|
s.add_runtime_dependency 'flot-rails', '~> 0.0.6'
|
20
20
|
end
|
21
21
|
|
@@ -13,7 +13,7 @@
|
|
13
13
|
});
|
14
14
|
#legend
|
15
15
|
.col-md-3
|
16
|
-
= search_form_for @search , :url =>
|
16
|
+
= search_form_for @search , :url => manage_reports_url , :html => { :class => "well well-small" } do |f|
|
17
17
|
.form-group.row
|
18
18
|
= f.label :type
|
19
19
|
%br/
|
data/config/routes.rb
CHANGED
@@ -16,10 +16,9 @@ module AccountantClerk
|
|
16
16
|
Dir.glob(File.join(File.dirname(__FILE__), "../../app/helpers**/*.rb")) do |c|
|
17
17
|
Rails.application.config.cache_classes ? require(c) : load(c)
|
18
18
|
end
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
end
|
19
|
+
end
|
20
|
+
initializer "office.assets.precompile", :group => :all do |app|
|
21
|
+
app.config.assets.precompile += ["office_*"]
|
23
22
|
end
|
24
23
|
|
25
24
|
config.to_prepare &method(:activate).to_proc
|
data/lib/accountant_clerk.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: accountant_clerk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '0.
|
4
|
+
version: '0.5'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Torsten Ruger
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-11-
|
11
|
+
date: 2014-11-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: office_clerk
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
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
|
-
version: '0.
|
26
|
+
version: '0.4'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: flot-rails
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -48,14 +48,13 @@ files:
|
|
48
48
|
- LICENSE
|
49
49
|
- README.md
|
50
50
|
- accountant_clerk.gemspec
|
51
|
-
- app/assets/javascripts/
|
51
|
+
- app/assets/javascripts/accountant_office.js.rb
|
52
52
|
- app/assets/javascripts/flotomatic.js
|
53
|
-
- app/assets/stylesheets/
|
53
|
+
- app/assets/stylesheets/accountant_office.css
|
54
54
|
- app/assets/stylesheets/flotomatic.css
|
55
|
-
- app/controllers/
|
55
|
+
- app/controllers/manage_controller_decorator.rb
|
56
56
|
- app/helpers/reports_helper.rb
|
57
|
-
- app/
|
58
|
-
- app/views/accountant/report.html.haml
|
57
|
+
- app/views/manage/report.html.haml
|
59
58
|
- config/locales/en.yml
|
60
59
|
- config/routes.rb
|
61
60
|
- lib/accountant_clerk.rb
|
File without changes
|