enju_inventory 0.1.11.pre4 → 0.1.11.pre5

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.
@@ -0,0 +1,15 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // the compiled file.
9
+ //
10
+ // WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
11
+ // GO AFTER THE REQUIRES BELOW.
12
+ //
13
+ //= require jquery
14
+ //= require jquery_ujs
15
+ //= require_tree .
@@ -0,0 +1,13 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the top of the
9
+ * compiled file, but it's generally better to create a new file per style scope.
10
+ *
11
+ *= require_self
12
+ *= require_tree .
13
+ */
@@ -0,0 +1,4 @@
1
+ module EnjuInventory
2
+ module ApplicationHelper
3
+ end
4
+ end
@@ -14,11 +14,11 @@ end
14
14
  #
15
15
  # Table name: inventories
16
16
  #
17
- # id :integer not null, primary key
17
+ # id :integer not null, primary key
18
18
  # item_id :integer
19
19
  # inventory_file_id :integer
20
20
  # note :text
21
- # created_at :datetime
22
- # updated_at :datetime
21
+ # created_at :datetime not null
22
+ # updated_at :datetime not null
23
23
  #
24
24
 
@@ -38,14 +38,14 @@ end
38
38
  #
39
39
  # Table name: inventory_files
40
40
  #
41
- # id :integer not null, primary key
41
+ # id :integer not null, primary key
42
42
  # filename :string(255)
43
43
  # content_type :string(255)
44
44
  # size :integer
45
45
  # user_id :integer
46
46
  # note :text
47
- # created_at :datetime not null
48
- # updated_at :datetime not null
47
+ # created_at :datetime not null
48
+ # updated_at :datetime not null
49
49
  # inventory_file_name :string(255)
50
50
  # inventory_content_type :string(255)
51
51
  # inventory_file_size :integer
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>EnjuInventory</title>
5
+ <%= stylesheet_link_tag "enju_inventory/application", :media => "all" %>
6
+ <%= javascript_include_tag "enju_inventory/application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -1,3 +1,3 @@
1
1
  module EnjuInventory
2
- VERSION = "0.1.11.pre4"
2
+ VERSION = "0.1.11.pre5"
3
3
  end
@@ -3,4 +3,3 @@
3
3
  # Add new mime types for use in respond_to blocks:
4
4
  # Mime::Type.register "text/richtext", :rtf
5
5
  # Mime::Type.register_alias "text/html", :iphone
6
- Mime::Type.register_alias "text/html", :mobile
Binary file
Binary file
@@ -16,11 +16,11 @@ inventory_00002:
16
16
  #
17
17
  # Table name: inventories
18
18
  #
19
- # id :integer not null, primary key
19
+ # id :integer not null, primary key
20
20
  # item_id :integer
21
21
  # inventory_file_id :integer
22
22
  # note :text
23
- # created_at :datetime
24
- # updated_at :datetime
23
+ # created_at :datetime not null
24
+ # updated_at :datetime not null
25
25
  #
26
26
 
@@ -23,14 +23,14 @@ inventory_file_00003:
23
23
  #
24
24
  # Table name: inventory_files
25
25
  #
26
- # id :integer not null, primary key
26
+ # id :integer not null, primary key
27
27
  # filename :string(255)
28
28
  # content_type :string(255)
29
29
  # size :integer
30
30
  # user_id :integer
31
31
  # note :text
32
- # created_at :datetime not null
33
- # updated_at :datetime not null
32
+ # created_at :datetime not null
33
+ # updated_at :datetime not null
34
34
  # inventory_file_name :string(255)
35
35
  # inventory_content_type :string(255)
36
36
  # inventory_file_size :integer
@@ -19,14 +19,14 @@ end
19
19
  #
20
20
  # Table name: inventory_files
21
21
  #
22
- # id :integer not null, primary key
22
+ # id :integer not null, primary key
23
23
  # filename :string(255)
24
24
  # content_type :string(255)
25
25
  # size :integer
26
26
  # user_id :integer
27
27
  # note :text
28
- # created_at :datetime not null
29
- # updated_at :datetime not null
28
+ # created_at :datetime not null
29
+ # updated_at :datetime not null
30
30
  # inventory_file_name :string(255)
31
31
  # inventory_content_type :string(255)
32
32
  # inventory_file_size :integer
@@ -10,11 +10,11 @@ end
10
10
  #
11
11
  # Table name: inventories
12
12
  #
13
- # id :integer not null, primary key
13
+ # id :integer not null, primary key
14
14
  # item_id :integer
15
15
  # inventory_file_id :integer
16
16
  # note :text
17
- # created_at :datetime
18
- # updated_at :datetime
17
+ # created_at :datetime not null
18
+ # updated_at :datetime not null
19
19
  #
20
20
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: enju_inventory
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.11.pre4
4
+ version: 0.1.11.pre5
5
5
  prerelease: 7
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-10-23 00:00:00.000000000 Z
12
+ date: 2012-12-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -34,7 +34,7 @@ dependencies:
34
34
  requirements:
35
35
  - - ~>
36
36
  - !ruby/object:Gem::Version
37
- version: '3.1'
37
+ version: '3.3'
38
38
  type: :runtime
39
39
  prerelease: false
40
40
  version_requirements: !ruby/object:Gem::Requirement
@@ -42,7 +42,7 @@ dependencies:
42
42
  requirements:
43
43
  - - ~>
44
44
  - !ruby/object:Gem::Version
45
- version: '3.1'
45
+ version: '3.3'
46
46
  - !ruby/object:Gem::Dependency
47
47
  name: inherited_resources
48
48
  requirement: !ruby/object:Gem::Requirement
@@ -66,7 +66,7 @@ dependencies:
66
66
  requirements:
67
67
  - - ~>
68
68
  - !ruby/object:Gem::Version
69
- version: 0.1.0.pre8
69
+ version: 0.1.0.pre13
70
70
  type: :runtime
71
71
  prerelease: false
72
72
  version_requirements: !ruby/object:Gem::Requirement
@@ -74,7 +74,7 @@ dependencies:
74
74
  requirements:
75
75
  - - ~>
76
76
  - !ruby/object:Gem::Version
77
- version: 0.1.0.pre8
77
+ version: 0.1.0.pre13
78
78
  - !ruby/object:Gem::Dependency
79
79
  name: sqlite3
80
80
  requirement: !ruby/object:Gem::Requirement
@@ -146,8 +146,11 @@ executables: []
146
146
  extensions: []
147
147
  extra_rdoc_files: []
148
148
  files:
149
+ - app/assets/javascripts/enju_inventory/application.js
150
+ - app/assets/stylesheets/enju_inventory/application.css
149
151
  - app/controllers/inventories_controller.rb
150
152
  - app/controllers/inventory_files_controller.rb
153
+ - app/helpers/enju_inventory/application_helper.rb
151
154
  - app/models/inventory.rb
152
155
  - app/models/inventory_file.rb
153
156
  - app/models/setting.rb
@@ -159,6 +162,7 @@ files:
159
162
  - app/views/inventory_files/index.html.erb
160
163
  - app/views/inventory_files/new.html.erb
161
164
  - app/views/inventory_files/show.html.erb
165
+ - app/views/layouts/enju_inventory/application.html.erb
162
166
  - config/locales/translation_en.yml
163
167
  - config/locales/translation_ja.yml
164
168
  - config/routes.rb
@@ -210,6 +214,7 @@ files:
210
214
  - spec/dummy/config/locales/en.yml
211
215
  - spec/dummy/config/routes.rb
212
216
  - spec/dummy/config.ru
217
+ - spec/dummy/db/development.sqlite3
213
218
  - spec/dummy/db/migrate/006_create_items.rb
214
219
  - spec/dummy/db/migrate/20111201121844_create_roles.rb
215
220
  - spec/dummy/db/migrate/20111201155456_create_users.rb
@@ -248,6 +253,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
248
253
  - - ! '>='
249
254
  - !ruby/object:Gem::Version
250
255
  version: '0'
256
+ segments:
257
+ - 0
258
+ hash: -181858464885887696
251
259
  required_rubygems_version: !ruby/object:Gem::Requirement
252
260
  none: false
253
261
  requirements:
@@ -297,6 +305,7 @@ test_files:
297
305
  - spec/dummy/config/locales/en.yml
298
306
  - spec/dummy/config/routes.rb
299
307
  - spec/dummy/config.ru
308
+ - spec/dummy/db/development.sqlite3
300
309
  - spec/dummy/db/migrate/006_create_items.rb
301
310
  - spec/dummy/db/migrate/20111201121844_create_roles.rb
302
311
  - spec/dummy/db/migrate/20111201155456_create_users.rb