casino 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -17,6 +17,8 @@
17
17
 
18
18
  /coverage
19
19
 
20
+ /pkg
21
+
20
22
  # Dummy application crap
21
23
  /spec/dummy/log/*.log
22
24
  /spec/dummy/tmp
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- casino (0.0.1)
4
+ casino (0.0.2)
5
5
  casino_core (~> 1.0)
6
6
  jquery-rails (~> 2.1)
7
7
  rails (~> 3.2.9)
@@ -9,12 +9,12 @@ PATH
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- actionmailer (3.2.9)
13
- actionpack (= 3.2.9)
12
+ actionmailer (3.2.11)
13
+ actionpack (= 3.2.11)
14
14
  mail (~> 2.4.4)
15
- actionpack (3.2.9)
16
- activemodel (= 3.2.9)
17
- activesupport (= 3.2.9)
15
+ actionpack (3.2.11)
16
+ activemodel (= 3.2.11)
17
+ activesupport (= 3.2.11)
18
18
  builder (~> 3.0.0)
19
19
  erubis (~> 2.7.0)
20
20
  journey (~> 1.0.4)
@@ -22,18 +22,18 @@ GEM
22
22
  rack-cache (~> 1.2)
23
23
  rack-test (~> 0.6.1)
24
24
  sprockets (~> 2.2.1)
25
- activemodel (3.2.9)
26
- activesupport (= 3.2.9)
25
+ activemodel (3.2.11)
26
+ activesupport (= 3.2.11)
27
27
  builder (~> 3.0.0)
28
- activerecord (3.2.9)
29
- activemodel (= 3.2.9)
30
- activesupport (= 3.2.9)
28
+ activerecord (3.2.11)
29
+ activemodel (= 3.2.11)
30
+ activesupport (= 3.2.11)
31
31
  arel (~> 3.0.2)
32
32
  tzinfo (~> 0.3.29)
33
- activeresource (3.2.9)
34
- activemodel (= 3.2.9)
35
- activesupport (= 3.2.9)
36
- activesupport (3.2.9)
33
+ activeresource (3.2.11)
34
+ activemodel (= 3.2.11)
35
+ activesupport (= 3.2.11)
36
+ activesupport (3.2.11)
37
37
  i18n (~> 0.6)
38
38
  multi_json (~> 1.0)
39
39
  addressable (2.3.2)
@@ -59,24 +59,24 @@ GEM
59
59
  mime-types (1.19)
60
60
  multi_json (1.5.0)
61
61
  polyglot (0.3.3)
62
- rack (1.4.1)
62
+ rack (1.4.4)
63
63
  rack-cache (1.2)
64
64
  rack (>= 0.4)
65
- rack-ssl (1.3.2)
65
+ rack-ssl (1.3.3)
66
66
  rack
67
67
  rack-test (0.6.2)
68
68
  rack (>= 1.0)
69
- rails (3.2.9)
70
- actionmailer (= 3.2.9)
71
- actionpack (= 3.2.9)
72
- activerecord (= 3.2.9)
73
- activeresource (= 3.2.9)
74
- activesupport (= 3.2.9)
69
+ rails (3.2.11)
70
+ actionmailer (= 3.2.11)
71
+ actionpack (= 3.2.11)
72
+ activerecord (= 3.2.11)
73
+ activeresource (= 3.2.11)
74
+ activesupport (= 3.2.11)
75
75
  bundler (~> 1.0)
76
- railties (= 3.2.9)
77
- railties (3.2.9)
78
- actionpack (= 3.2.9)
79
- activesupport (= 3.2.9)
76
+ railties (= 3.2.11)
77
+ railties (3.2.11)
78
+ actionpack (= 3.2.11)
79
+ activesupport (= 3.2.11)
80
80
  rack-ssl (~> 1.3.2)
81
81
  rake (>= 0.8.7)
82
82
  rdoc (~> 3.4)
@@ -109,7 +109,7 @@ GEM
109
109
  rack (~> 1.0)
110
110
  tilt (~> 1.1, != 1.3.0)
111
111
  sqlite3 (1.3.6)
112
- thor (0.16.0)
112
+ thor (0.17.0)
113
113
  tilt (1.3.3)
114
114
  treetop (1.4.12)
115
115
  polyglot
data/README.md CHANGED
@@ -24,7 +24,7 @@ Make sure you installed Ruby on Rails 3.2.x!
24
24
 
25
25
  Edit your application's Gemfile and add these lines if missing:
26
26
 
27
- gem 'sqlite3', '~> 1.3'
27
+ gem 'sqlite3', '~> 1.3', :group => :development
28
28
  gem 'casino'
29
29
 
30
30
  Run `bundle install` afterwards.
@@ -35,10 +35,10 @@ Run `bundle install` afterwards.
35
35
 
36
36
  ### 4. Edit the configuration
37
37
 
38
- mate config/cas.yml
39
- mate config/database.yml
38
+ vim config/cas.yml
39
+ vim config/database.yml
40
40
 
41
- Information about configuration can be found in our Wiki: [Configuration](https://github.com/pencil/CASino/wiki/Configuration)
41
+ Information about configuration can be found in our Wiki: [Configuration](https://github.com/rbCAS/CASino/wiki/Configuration)
42
42
 
43
43
  ### 5. Load the database
44
44
 
@@ -50,7 +50,7 @@ Configure a cronjob to do a `rake casino_core:cleanup:all > /dev/null` every 5 m
50
50
 
51
51
  ### 7. Customize it!
52
52
 
53
- Learn how to customize your CASino installation: [Customization](https://github.com/pencil/CASino/wiki/Customization)
53
+ Learn how to customize your CASino installation: [Customization](https://github.com/rbCAS/CASino/wiki/Customization)
54
54
 
55
55
  ### 8. Ship it!
56
56
 
@@ -1,3 +1,3 @@
1
1
  module CASino
2
- VERSION = '0.0.1'
2
+ VERSION = '0.0.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: casino
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
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: 2013-01-02 00:00:00.000000000 Z
12
+ date: 2013-02-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -169,8 +169,6 @@ files:
169
169
  - app/helpers/application_helper.rb
170
170
  - app/helpers/casino/sessions_helper.rb
171
171
  - app/helpers/service_tickets_helper.rb
172
- - app/mailers/.gitkeep
173
- - app/models/.gitkeep
174
172
  - app/views/casino/service_tickets/validate.text.erb
175
173
  - app/views/casino/sessions/index.html.erb
176
174
  - app/views/casino/sessions/logout.html.erb
@@ -184,8 +182,6 @@ files:
184
182
  - config/initializers/yaml.rb
185
183
  - config/locales/en.yml
186
184
  - config/routes.rb
187
- - db/seeds.rb
188
- - doc/README_FOR_APP
189
185
  - lib/assets/.gitkeep
190
186
  - lib/casino.rb
191
187
  - lib/casino/engine.rb
@@ -209,7 +205,6 @@ files:
209
205
  - lib/tasks/.gitkeep
210
206
  - lib/tasks/login_tickets.rake
211
207
  - lib/tasks/service_tickets.rake
212
- - log/.gitkeep
213
208
  - public/404.html
214
209
  - public/422.html
215
210
  - public/500.html
@@ -267,7 +262,6 @@ files:
267
262
  - spec/support/sign_in.rb
268
263
  - vendor/assets/javascripts/.gitkeep
269
264
  - vendor/assets/stylesheets/.gitkeep
270
- - vendor/plugins/.gitkeep
271
265
  homepage: http://rbcas.org/
272
266
  licenses:
273
267
  - MIT
@@ -283,7 +277,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
283
277
  version: '0'
284
278
  segments:
285
279
  - 0
286
- hash: -4191138567824219938
280
+ hash: 2327405662776558118
287
281
  required_rubygems_version: !ruby/object:Gem::Requirement
288
282
  none: false
289
283
  requirements:
@@ -292,7 +286,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
292
286
  version: '0'
293
287
  segments:
294
288
  - 0
295
- hash: -4191138567824219938
289
+ hash: 2327405662776558118
296
290
  requirements: []
297
291
  rubyforge_project:
298
292
  rubygems_version: 1.8.24
data/app/mailers/.gitkeep DELETED
File without changes
data/app/models/.gitkeep DELETED
File without changes
data/db/seeds.rb DELETED
@@ -1,7 +0,0 @@
1
- # This file should contain all the record creation needed to seed the database with its default values.
2
- # The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
3
- #
4
- # Examples:
5
- #
6
- # cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
7
- # Mayor.create(name: 'Emanuel', city: cities.first)
data/doc/README_FOR_APP DELETED
@@ -1,2 +0,0 @@
1
- Use this README file to introduce your application and point to useful places in the API for learning more.
2
- Run "rake doc:app" to generate API documentation for your models, controllers, helpers, and libraries.
data/log/.gitkeep DELETED
File without changes
File without changes