rtrain 0.2.7 → 0.2.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a46b9fe771c160897d3d1a750ffaf4baa6108299
4
- data.tar.gz: 3f3753972aac6c07e67a8c6557aa2bd3e5629a4e
3
+ metadata.gz: 364dafaca1fdd1fd8b81cccfe6369d653ae6e789
4
+ data.tar.gz: 07c58e44dd232165672278597f7d391684cb72dc
5
5
  SHA512:
6
- metadata.gz: 4d7c1eb4a849da271c08cdf8c2a09cc7dd2f1a1ee732996f0d68cee92223da625ca0f6163ec7945fa8c14ff077b48f4f3c2bec8c4cbe14661afb4a86c6b82055
7
- data.tar.gz: c6f8275150d43904ea8707ff48ecac7060958a03af839ab9778afb6fb76ec6155896a95549a73c2de34b1ef6d8c74c12ac47d5c727f0549c32f9c8382a7c7526
6
+ metadata.gz: 294c6dd1f35374842cc0eff612f4b33d5bdadfa713dc12b32d4d3ceda9b3dd7494e9921936ea29de91e3c479f3fd6e04bad26335b18b0959e58e0c761c1d6543
7
+ data.tar.gz: 06d92633478077a723205f9a710c72a4762fc04aec60e0061b0f60045f37b722a358677ada4055fc3d2e654caf398a373768afa1396b1e273caf36203342140a
data/README.md CHANGED
@@ -11,7 +11,7 @@ _It is HIGHLY recommended that developers using RTrain execute these generator c
11
11
 
12
12
  **Put this in your Gemfile**
13
13
  ```
14
- gem 'rtrain', '~> 0.2.6'
14
+ gem 'rtrain', '~> 0.2.7'
15
15
  ```
16
16
  Then `bundle install`
17
17
 
@@ -20,7 +20,7 @@ Then `bundle install`
20
20
  ```
21
21
  rails generate rtrain:install --copy_css
22
22
  ```
23
- (http://i.imgur.com/xzbeMWC.png)
23
+ ![alt text](http://i.imgur.com/xzbeMWC.png)
24
24
  _Oooooooooooooo!_
25
25
 
26
26
  Turns your basic scaffold into something that's at least tolerable to look at!
@@ -29,20 +29,20 @@ Turns your basic scaffold into something that's at least tolerable to look at!
29
29
  ```
30
30
  rails generate rtrain:install --copy_css
31
31
  ```
32
- (http://i.imgur.com/hywhd0t.png)
32
+ ![alt text](http://i.imgur.com/hywhd0t.png)
33
33
 
34
34
  **Add a home page controller and view, and set it as the root**
35
35
  ```
36
36
  rails generate rtrain:install --add_homepage
37
37
  ```
38
- (http://i.imgur.com/LuNqg3O.png)
38
+ ![alt text](http://i.imgur.com/LuNqg3O.png)
39
39
 
40
40
  **Add User Authentication Sessions (email & password login)
41
41
 
42
42
  ```
43
43
  rails generate rtrain:install --add_user_sessions
44
44
  ```
45
- (http://i.imgur.com/oyNYFbz.png)
45
+ ![alt text](http://i.imgur.com/oyNYFbz.png)
46
46
 
47
47
  Special thanks to Justin Weiss for the template -
48
48
  http://www.justinweiss.com/articles/how-rails-sessions-work/
@@ -52,7 +52,7 @@ http://www.justinweiss.com/articles/how-rails-sessions-work/
52
52
  ```
53
53
  rails generate rtrain:install --ajaxify
54
54
  ```
55
- (http://i.imgur.com/Zm2iP6W.png)
55
+ ![alt text](http://i.imgur.com/Zm2iP6W.png)
56
56
 
57
57
  Special thanks to Rich on Rails for the template -
58
58
  https://richonrails.com/articles/basic-ajax-in-ruby-on-rails
@@ -4,13 +4,13 @@ $LOAD_PATH.push File.expand_path("../lib", __FILE__)
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = 'rtrain'
7
- s.version = '0.2.7'
8
- s.date = '2016-06-03'
7
+ s.version = '0.2.8'
8
+ s.date = '2016-06-05'
9
9
  s.summary = "Nicer Scaffolds,nav bar, static homepage for Rails, and more"
10
10
  s.description = "Rails UI Booster - More info @ https://github.com/lynnd335/rtrain"
11
11
  s.authors = ["Dan Lynn"]
12
12
  s.email = 'lynnd335@gmail.com'
13
- s.files = Dir['**/*']
13
+ s.files = `git ls-files`.split($/)
14
14
  s.homepage = 'http://rubygems.org/gems/rtrain'
15
15
  s.license = 'MIT'
16
16
  s.add_runtime_dependency 'authlogic', '~> 3.4', '>= 3.4.6'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rtrain
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.7
4
+ version: 0.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Lynn
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-06-03 00:00:00.000000000 Z
11
+ date: 2016-06-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: authlogic
@@ -87,32 +87,6 @@ files:
87
87
  - lib/generators/user_sessions/new.html.erb
88
88
  - lib/generators/users/new.html.erb
89
89
  - lib/rtrain.rb
90
- - rtrain-0.0.1.gem
91
- - rtrain-0.0.2.gem
92
- - rtrain-0.0.3.gem
93
- - rtrain-0.0.4.gem
94
- - rtrain-0.0.5.gem
95
- - rtrain-0.0.6.gem
96
- - rtrain-0.0.7.gem
97
- - rtrain-0.0.8.gem
98
- - rtrain-0.0.9.gem
99
- - rtrain-0.1.0.gem
100
- - rtrain-0.1.1.gem
101
- - rtrain-0.1.2.gem
102
- - rtrain-0.1.3.gem
103
- - rtrain-0.1.4.gem
104
- - rtrain-0.1.5.gem
105
- - rtrain-0.1.6.gem
106
- - rtrain-0.1.7.gem
107
- - rtrain-0.1.8.gem
108
- - rtrain-0.1.9.gem
109
- - rtrain-0.2.0.gem
110
- - rtrain-0.2.1.gem
111
- - rtrain-0.2.2.gem
112
- - rtrain-0.2.3.gem
113
- - rtrain-0.2.4.gem
114
- - rtrain-0.2.5.gem
115
- - rtrain-0.2.6.gem
116
90
  - rtrain.gemspec
117
91
  homepage: http://rubygems.org/gems/rtrain
118
92
  licenses:
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file