a4nt 0.0.1 → 0.0.2
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.
- data/README.md +19 -0
- data/lib/a4nt/version.rb +1 -1
- metadata +6 -5
- data/README.rdoc +0 -3
data/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# A4nt
|
|
2
|
+
|
|
3
|
+
## Installation
|
|
4
|
+
|
|
5
|
+
Add this line to your application's Gemfile:
|
|
6
|
+
|
|
7
|
+
gem 'a4nt'
|
|
8
|
+
|
|
9
|
+
And then execute:
|
|
10
|
+
|
|
11
|
+
bundle install
|
|
12
|
+
rake a4nt:install:migrations
|
|
13
|
+
rake db:migrate
|
|
14
|
+
|
|
15
|
+
And it needs to be mounted in config/routes.rb file:
|
|
16
|
+
|
|
17
|
+
mount A4nt::Engine, at: '/a4nt'
|
|
18
|
+
# /a4nt is a example
|
|
19
|
+
|
data/lib/a4nt/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: a4nt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -43,7 +43,8 @@ dependencies:
|
|
|
43
43
|
- - ! '>='
|
|
44
44
|
- !ruby/object:Gem::Version
|
|
45
45
|
version: '0'
|
|
46
|
-
description:
|
|
46
|
+
description: Rails Engine managing simple announcements. A4nt is mountable Engine
|
|
47
|
+
for Ruby on Rails.
|
|
47
48
|
email:
|
|
48
49
|
- takayuki.1229@gmail.com
|
|
49
50
|
executables: []
|
|
@@ -74,7 +75,7 @@ files:
|
|
|
74
75
|
- lib/tasks/a4nt_tasks.rake
|
|
75
76
|
- MIT-LICENSE
|
|
76
77
|
- Rakefile
|
|
77
|
-
- README.
|
|
78
|
+
- README.md
|
|
78
79
|
- test/a4nt_test.rb
|
|
79
80
|
- test/dummy/app/assets/javascripts/application.js
|
|
80
81
|
- test/dummy/app/assets/stylesheets/application.css
|
|
@@ -141,7 +142,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
141
142
|
version: '0'
|
|
142
143
|
segments:
|
|
143
144
|
- 0
|
|
144
|
-
hash:
|
|
145
|
+
hash: 1385040262939529810
|
|
145
146
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
146
147
|
none: false
|
|
147
148
|
requirements:
|
|
@@ -150,7 +151,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
150
151
|
version: '0'
|
|
151
152
|
segments:
|
|
152
153
|
- 0
|
|
153
|
-
hash:
|
|
154
|
+
hash: 1385040262939529810
|
|
154
155
|
requirements: []
|
|
155
156
|
rubyforge_project:
|
|
156
157
|
rubygems_version: 1.8.23
|
data/README.rdoc
DELETED