simple2ch 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: b663a06f9f68897e211557fe06733ab614ddecef
4
+ data.tar.gz: 118b81b4f320bb9748795054496920504261665c
5
+ SHA512:
6
+ metadata.gz: 48c4049e1ad20f60ee79ab99dad882f1dfdaaba759a400f945df35ba67b945385b288639d7e64b857126104faa30e3f49a62acd332ec7aa9a045d77d659e9eb1
7
+ data.tar.gz: 538ff4d1fb551b1af70d7ac1ab78a31e9f199e790cae587e23b1422536ad20f9738b59424de73fc55169dc89fd755cbafd38cdd9902c4aa312218a7f2cf8e28a
data/.gitignore ADDED
@@ -0,0 +1,123 @@
1
+ ### https://raw.github.com/github/gitignore/master/Global/vim.gitignore
2
+
3
+ [._]*.s[a-w][a-z]
4
+ [._]s[a-w][a-z]
5
+ *.un~
6
+ Session.vim
7
+ .netrwhist
8
+ *~
9
+
10
+
11
+ ### https://raw.github.com/github/gitignore/master/Global/osx.gitignore
12
+
13
+ .DS_Store
14
+ .AppleDouble
15
+ .LSOverride
16
+
17
+ # Icon must end with two \r
18
+ Icon
19
+
20
+
21
+ # Thumbnails
22
+ ._*
23
+
24
+ # Files that might appear on external disk
25
+ .Spotlight-V100
26
+ .Trashes
27
+
28
+ # Directories potentially created on remote AFP share
29
+ .AppleDB
30
+ .AppleDesktop
31
+ Network Trash Folder
32
+ Temporary Items
33
+ .apdisk
34
+
35
+
36
+ ### https://raw.github.com/github/gitignore/master/rails.gitignore
37
+
38
+ *.rbc
39
+ capybara-*.html
40
+ .rspec
41
+ /log
42
+ /tmp
43
+ /db/*.sqlite3
44
+ /public/system
45
+ /coverage/
46
+ /spec/tmp
47
+ **.orig
48
+ rerun.txt
49
+ pickle-email-*.html
50
+
51
+ config/initializers/secret_token.rb
52
+ config/secrets.yml
53
+
54
+ ## Environment normalisation:
55
+ /.bundle
56
+ /vendor/bundle
57
+
58
+ # these should all be checked in to normalise the environment:
59
+ # Gemfile.lock, .ruby-version, .ruby-gemset
60
+
61
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
62
+ .rvmrc
63
+
64
+
65
+ ### https://raw.github.com/github/gitignore/master/ruby.gitignore
66
+
67
+ *.gem
68
+ *.rbc
69
+ .bundle
70
+ .config
71
+ .yardoc
72
+ Gemfile.lock
73
+ InstalledFiles
74
+ _yardoc
75
+ coverage
76
+ #doc/
77
+ lib/bundler/man
78
+ pkg
79
+ rdoc
80
+ spec/reports
81
+ test/tmp
82
+ test/version_tmp
83
+ tmp
84
+ *.bundle
85
+ *.so
86
+ *.o
87
+ *.a
88
+ mkmf.log
89
+ /.config
90
+ /coverage/
91
+ /InstalledFiles
92
+ /pkg/
93
+ /spec/reports/
94
+ /test/tmp/
95
+ /test/version_tmp/
96
+ /tmp/
97
+
98
+ ## Specific to RubyMotion:
99
+ .dat*
100
+ .repl_history
101
+ build/
102
+
103
+ ## Documentation cache and generated files:
104
+ /.yardoc/
105
+ /_yardoc/
106
+ #/doc/
107
+ /rdoc/
108
+
109
+ ## Environment normalisation:
110
+ /.bundle/
111
+ /lib/bundler/man/
112
+
113
+ # for a library or gem, you might want to ignore these files since the code is
114
+ # intended to run in multiple environments; otherwise, check them in:
115
+ # Gemfile.lock
116
+ # .ruby-version
117
+ # .ruby-gemset
118
+
119
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
120
+ .rvmrc
121
+
122
+
123
+ .idea/*
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in ruby2ch.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 dogwood008
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Ruby2ch
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'simple2ch'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install simple2ch
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( https://github.com/dogwood008/simple2ch/fork )
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+