cloudstrg 0.0.1

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.
Files changed (56) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +38 -0
  4. data/lib/cloudstrg/cloudstrg.rb +122 -0
  5. data/lib/cloudstrg/cloudstrg.rb~ +122 -0
  6. data/lib/cloudstrg/version.rb +3 -0
  7. data/lib/cloudstrg.rb +2 -0
  8. data/lib/generators/cloudstrg_generator.rb +19 -0
  9. data/lib/generators/cloudstrg_generator.rb~ +19 -0
  10. data/lib/tasks/cloudstrg_tasks.rake +4 -0
  11. data/lib/templates/cloudstrgdata.rb~ +3 -0
  12. data/lib/templates/cloudstrglist.rb +3 -0
  13. data/lib/templates/cloudstrglist.rb~ +3 -0
  14. data/lib/templates/cloudstrguser.rb +3 -0
  15. data/lib/templates/cloudstrguser.rb~ +0 -0
  16. data/lib/templates/create_cloudstrgdata.rb~ +0 -0
  17. data/lib/templates/create_cloudstrglist.rb~ +13 -0
  18. data/lib/templates/create_cloudstrglists.rb +13 -0
  19. data/lib/templates/create_cloudstrgusers.rb +13 -0
  20. data/lib/templates/create_cloudstrgusers.rb~ +0 -0
  21. data/test/cloudstrg_test.rb +7 -0
  22. data/test/dummy/README.rdoc +261 -0
  23. data/test/dummy/Rakefile +7 -0
  24. data/test/dummy/app/assets/javascripts/application.js +15 -0
  25. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  26. data/test/dummy/app/controllers/application_controller.rb +3 -0
  27. data/test/dummy/app/helpers/application_helper.rb +2 -0
  28. data/test/dummy/app/models/cloudstrglist.rb +3 -0
  29. data/test/dummy/app/models/cloudstrglist.rb~ +3 -0
  30. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  31. data/test/dummy/config/application.rb +59 -0
  32. data/test/dummy/config/boot.rb +10 -0
  33. data/test/dummy/config/database.yml +25 -0
  34. data/test/dummy/config/environment.rb +5 -0
  35. data/test/dummy/config/environments/development.rb +37 -0
  36. data/test/dummy/config/environments/production.rb +67 -0
  37. data/test/dummy/config/environments/test.rb +37 -0
  38. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  39. data/test/dummy/config/initializers/inflections.rb +15 -0
  40. data/test/dummy/config/initializers/mime_types.rb +5 -0
  41. data/test/dummy/config/initializers/secret_token.rb +7 -0
  42. data/test/dummy/config/initializers/session_store.rb +8 -0
  43. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  44. data/test/dummy/config/locales/en.yml +5 -0
  45. data/test/dummy/config/routes.rb +58 -0
  46. data/test/dummy/config.ru +4 -0
  47. data/test/dummy/db/migrate/20120928105006_create_cloudstrglist.rb +13 -0
  48. data/test/dummy/db/migrate/20120928111625_create_cloudstrglists.rb +13 -0
  49. data/test/dummy/db/schema.rb +28 -0
  50. data/test/dummy/public/404.html +26 -0
  51. data/test/dummy/public/422.html +26 -0
  52. data/test/dummy/public/500.html +25 -0
  53. data/test/dummy/public/favicon.ico +0 -0
  54. data/test/dummy/script/rails +6 -0
  55. data/test/test_helper.rb +15 -0
  56. metadata +167 -0
@@ -0,0 +1,58 @@
1
+ Dummy::Application.routes.draw do
2
+ # The priority is based upon order of creation:
3
+ # first created -> highest priority.
4
+
5
+ # Sample of regular route:
6
+ # match 'products/:id' => 'catalog#view'
7
+ # Keep in mind you can assign values other than :controller and :action
8
+
9
+ # Sample of named route:
10
+ # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
11
+ # This route can be invoked with purchase_url(:id => product.id)
12
+
13
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
14
+ # resources :products
15
+
16
+ # Sample resource route with options:
17
+ # resources :products do
18
+ # member do
19
+ # get 'short'
20
+ # post 'toggle'
21
+ # end
22
+ #
23
+ # collection do
24
+ # get 'sold'
25
+ # end
26
+ # end
27
+
28
+ # Sample resource route with sub-resources:
29
+ # resources :products do
30
+ # resources :comments, :sales
31
+ # resource :seller
32
+ # end
33
+
34
+ # Sample resource route with more complex sub-resources
35
+ # resources :products do
36
+ # resources :comments
37
+ # resources :sales do
38
+ # get 'recent', :on => :collection
39
+ # end
40
+ # end
41
+
42
+ # Sample resource route within a namespace:
43
+ # namespace :admin do
44
+ # # Directs /admin/products/* to Admin::ProductsController
45
+ # # (app/controllers/admin/products_controller.rb)
46
+ # resources :products
47
+ # end
48
+
49
+ # You can have the root of your site routed with "root"
50
+ # just remember to delete public/index.html.
51
+ # root :to => 'welcome#index'
52
+
53
+ # See how all your routes lay out with "rake routes"
54
+
55
+ # This is a legacy wild controller route that's not recommended for RESTful applications.
56
+ # Note: This route will make all actions in every controller accessible via GET requests.
57
+ # match ':controller(/:action(/:id))(.:format)'
58
+ end
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
@@ -0,0 +1,13 @@
1
+ class CreateCloudstrglist < ActiveRecord::Migration
2
+ def up
3
+ create_table :cloudstrglist do |t|
4
+ t.string :plugin_name
5
+
6
+ t.timestamps
7
+ end
8
+ end
9
+
10
+ def down
11
+ drop_table :cloudstrglist
12
+ end
13
+ end
@@ -0,0 +1,13 @@
1
+ class CreateCloudstrglists < ActiveRecord::Migration
2
+ def up
3
+ create_table :cloudstrglists do |t|
4
+ t.string :plugin_name
5
+
6
+ t.timestamps
7
+ end
8
+ end
9
+
10
+ def down
11
+ drop_table :cloudstrglists
12
+ end
13
+ end
@@ -0,0 +1,28 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 20120928111625) do
15
+
16
+ create_table "cloudstrglist", :force => true do |t|
17
+ t.string "plugin_name"
18
+ t.datetime "created_at", :null => false
19
+ t.datetime "updated_at", :null => false
20
+ end
21
+
22
+ create_table "cloudstrglists", :force => true do |t|
23
+ t.string "plugin_name"
24
+ t.datetime "created_at", :null => false
25
+ t.datetime "updated_at", :null => false
26
+ end
27
+
28
+ end
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,15 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
11
+
12
+ # Load fixtures from the engine
13
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
15
+ end
metadata ADDED
@@ -0,0 +1,167 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cloudstrg
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Raul Roman-Lopez
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-10-04 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.2.8
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.2.8
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: Base API for cloud storage drivers.
47
+ email:
48
+ - rroman@libresoft.es
49
+ executables: []
50
+ extensions: []
51
+ extra_rdoc_files: []
52
+ files:
53
+ - lib/cloudstrg/version.rb
54
+ - lib/cloudstrg/cloudstrg.rb~
55
+ - lib/cloudstrg/cloudstrg.rb
56
+ - lib/tasks/cloudstrg_tasks.rake
57
+ - lib/generators/cloudstrg_generator.rb
58
+ - lib/generators/cloudstrg_generator.rb~
59
+ - lib/templates/create_cloudstrgdata.rb~
60
+ - lib/templates/cloudstrguser.rb~
61
+ - lib/templates/create_cloudstrgusers.rb~
62
+ - lib/templates/cloudstrguser.rb
63
+ - lib/templates/cloudstrglist.rb~
64
+ - lib/templates/cloudstrgdata.rb~
65
+ - lib/templates/cloudstrglist.rb
66
+ - lib/templates/create_cloudstrglist.rb~
67
+ - lib/templates/create_cloudstrglists.rb
68
+ - lib/templates/create_cloudstrgusers.rb
69
+ - lib/cloudstrg.rb
70
+ - MIT-LICENSE
71
+ - Rakefile
72
+ - README.rdoc
73
+ - test/test_helper.rb
74
+ - test/dummy/script/rails
75
+ - test/dummy/config.ru
76
+ - test/dummy/app/helpers/application_helper.rb
77
+ - test/dummy/app/models/cloudstrglist.rb~
78
+ - test/dummy/app/models/cloudstrglist.rb
79
+ - test/dummy/app/assets/stylesheets/application.css
80
+ - test/dummy/app/assets/javascripts/application.js
81
+ - test/dummy/app/views/layouts/application.html.erb
82
+ - test/dummy/app/controllers/application_controller.rb
83
+ - test/dummy/public/500.html
84
+ - test/dummy/public/404.html
85
+ - test/dummy/public/422.html
86
+ - test/dummy/public/favicon.ico
87
+ - test/dummy/db/schema.rb
88
+ - test/dummy/db/migrate/20120928111625_create_cloudstrglists.rb
89
+ - test/dummy/db/migrate/20120928105006_create_cloudstrglist.rb
90
+ - test/dummy/config/boot.rb
91
+ - test/dummy/config/routes.rb
92
+ - test/dummy/config/database.yml
93
+ - test/dummy/config/application.rb
94
+ - test/dummy/config/initializers/secret_token.rb
95
+ - test/dummy/config/initializers/session_store.rb
96
+ - test/dummy/config/initializers/backtrace_silencers.rb
97
+ - test/dummy/config/initializers/mime_types.rb
98
+ - test/dummy/config/initializers/wrap_parameters.rb
99
+ - test/dummy/config/initializers/inflections.rb
100
+ - test/dummy/config/environment.rb
101
+ - test/dummy/config/locales/en.yml
102
+ - test/dummy/config/environments/development.rb
103
+ - test/dummy/config/environments/production.rb
104
+ - test/dummy/config/environments/test.rb
105
+ - test/dummy/Rakefile
106
+ - test/dummy/README.rdoc
107
+ - test/cloudstrg_test.rb
108
+ homepage: http://git.libresoft.es/cloudstrg/
109
+ licenses: []
110
+ post_install_message:
111
+ rdoc_options: []
112
+ require_paths:
113
+ - lib
114
+ required_ruby_version: !ruby/object:Gem::Requirement
115
+ none: false
116
+ requirements:
117
+ - - ! '>='
118
+ - !ruby/object:Gem::Version
119
+ version: '0'
120
+ required_rubygems_version: !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ! '>='
124
+ - !ruby/object:Gem::Version
125
+ version: '0'
126
+ requirements: []
127
+ rubyforge_project:
128
+ rubygems_version: 1.8.24
129
+ signing_key:
130
+ specification_version: 3
131
+ summary: Base API for cloud storage drivers
132
+ test_files:
133
+ - test/test_helper.rb
134
+ - test/dummy/script/rails
135
+ - test/dummy/config.ru
136
+ - test/dummy/app/helpers/application_helper.rb
137
+ - test/dummy/app/models/cloudstrglist.rb~
138
+ - test/dummy/app/models/cloudstrglist.rb
139
+ - test/dummy/app/assets/stylesheets/application.css
140
+ - test/dummy/app/assets/javascripts/application.js
141
+ - test/dummy/app/views/layouts/application.html.erb
142
+ - test/dummy/app/controllers/application_controller.rb
143
+ - test/dummy/public/500.html
144
+ - test/dummy/public/404.html
145
+ - test/dummy/public/422.html
146
+ - test/dummy/public/favicon.ico
147
+ - test/dummy/db/schema.rb
148
+ - test/dummy/db/migrate/20120928111625_create_cloudstrglists.rb
149
+ - test/dummy/db/migrate/20120928105006_create_cloudstrglist.rb
150
+ - test/dummy/config/boot.rb
151
+ - test/dummy/config/routes.rb
152
+ - test/dummy/config/database.yml
153
+ - test/dummy/config/application.rb
154
+ - test/dummy/config/initializers/secret_token.rb
155
+ - test/dummy/config/initializers/session_store.rb
156
+ - test/dummy/config/initializers/backtrace_silencers.rb
157
+ - test/dummy/config/initializers/mime_types.rb
158
+ - test/dummy/config/initializers/wrap_parameters.rb
159
+ - test/dummy/config/initializers/inflections.rb
160
+ - test/dummy/config/environment.rb
161
+ - test/dummy/config/locales/en.yml
162
+ - test/dummy/config/environments/development.rb
163
+ - test/dummy/config/environments/production.rb
164
+ - test/dummy/config/environments/test.rb
165
+ - test/dummy/Rakefile
166
+ - test/dummy/README.rdoc
167
+ - test/cloudstrg_test.rb