rails_manage 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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: dbe24633922efadf377fe6999108b13280a02b95
4
+ data.tar.gz: e02639c79ffa8c884ff28a72eafa10c89ea9f940
5
+ SHA512:
6
+ metadata.gz: e907a3a47d20f48d5271d4a795cc37da49552d4b2a7dcba40f5df0fdfa18693da6c4c15d01aae43fabf10ea0d9f0048661355443aa3fb8cb29fc546e89c51cd2
7
+ data.tar.gz: 898592a495ef0529e5e6cf0789ba0dcedd65ee0a7059e15f9aa1117ad3f9684337a6583473ea07e6ac011e73e1ae6198b4347c04881701d63d98bb5f6dd1b3ce
data/.gitignore ADDED
@@ -0,0 +1,45 @@
1
+ <<<<<<< HEAD
2
+ *.gem
3
+ *.rbc
4
+ .bundle
5
+ .config
6
+ coverage
7
+ InstalledFiles
8
+ lib/bundler/man
9
+ pkg
10
+ rdoc
11
+ spec/reports
12
+ test/tmp
13
+ test/version_tmp
14
+ tmp
15
+
16
+ # YARD artifacts
17
+ .yardoc
18
+ _yardoc
19
+ doc/
20
+ =======
21
+ *.rbc
22
+ capybara-*.html
23
+ .rspec
24
+ /log
25
+ /tmp
26
+ /db/*.sqlite3
27
+ /public/system
28
+ /coverage/
29
+ /spec/tmp
30
+ **.orig
31
+ rerun.txt
32
+ pickle-email-*.html
33
+ config/initializers/secret_token.rb
34
+ config/secrets.yml
35
+
36
+ ## Environment normalisation:
37
+ /.bundle
38
+ /vendor/bundle
39
+
40
+ # these should all be checked in to normalise the environment:
41
+ # Gemfile.lock, .ruby-version, .ruby-gemset
42
+
43
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
44
+ .rvmrc
45
+ >>>>>>> adff340e9f7485dcf50529fbe07eb3ab8b6f5f70
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2014 艾小童
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,3 @@
1
+ rails_manage
2
+
3
+ rails content manage
@@ -0,0 +1,3 @@
1
+ module RailsManage #:nodoc:
2
+ VERSION = '0.0.1'
3
+ end
File without changes
@@ -0,0 +1,23 @@
1
+ $LOAD_PATH.push File.expand_path("../lib", __FILE__)
2
+ require 'rails_manage/version'
3
+
4
+ Gem::Specification.new do |s|
5
+ s.name = "rails_manage"
6
+ s.version = RailsManage::VERSION
7
+ s.platform = Gem::Platform::RUBY
8
+ s.author = ["Lijia.Tong"]
9
+ s.email = ["user_tony@163.com"]
10
+ s.homepage = "https://github.com/user_tony/rails_manage"
11
+ s.summary = ""
12
+ s.description = ""
13
+ s.license = "MIT"
14
+
15
+ s.files = `git ls-files`.split("\n")
16
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
17
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
18
+ s.require_paths = ["lib"]
19
+
20
+ s.required_ruby_version = "~> 2.0"
21
+
22
+ s.add_dependency 'rails'
23
+ end
metadata ADDED
@@ -0,0 +1,65 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rails_manage
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Lijia.Tong
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-06-10 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ description: ''
28
+ email:
29
+ - user_tony@163.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - ".gitignore"
35
+ - Gemfile
36
+ - LICENSE
37
+ - README.md
38
+ - lib/rails_manage.rb
39
+ - lib/rails_manage/version.rb
40
+ - rails_manage.gemspec
41
+ homepage: https://github.com/user_tony/rails_manage
42
+ licenses:
43
+ - MIT
44
+ metadata: {}
45
+ post_install_message:
46
+ rdoc_options: []
47
+ require_paths:
48
+ - lib
49
+ required_ruby_version: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '2.0'
54
+ required_rubygems_version: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ version: '0'
59
+ requirements: []
60
+ rubyforge_project:
61
+ rubygems_version: 2.0.3
62
+ signing_key:
63
+ specification_version: 4
64
+ summary: ''
65
+ test_files: []